[jgmac1106][Marco] I am teaching my first blind student to code. Any tips welcome. Decided to use plain text editor. Building her templates with just header and paragraph tags
[Marco]- which fields of coding are you interested in the most or at all? (Front End and Back End are both pretty wide fields… could be anything, and then start from there)
[jgmac1106]Thx [Marco] I am redoing my hello tutorials to be plain text. She wants to build a website to encourage restaurants to make menus more accessible
[dmitshur]My personal website is open source, and all the static data is embedded. It's possible for anyone to download and run it easily. However, some of the pages rely on some dynamic data to be available, and they currently fail in ways that aren't pretty, because they assume that data must be there (and it is there in the real production environment).
[dmitshur]I considered hard-coding some of the critical dynamic data into code (e.g., https://github.com/shurcooL/home/commit/d75345bcf8b252251d3cbd8333f9cdffb87e2fb2) but found that approach doesn't scale. I can hard-code some data, but I later found there's more that also needs to be hard-coded... it also separates some data between 2 places (code, database). It doesn't feel right.
[dmitshur]Another idea I had was to do some sort of federation... when run with default flags, it would assume there is no local database, and instead connect to the upstream server on the internet and use its APIs instead.
[dmitshur]Has anyone with an open source website tackled this problem (making it possible/friendly for someone else to download and run a local instance of it)?
j12t_, jgmac1106, [asuh], [jgmac1106], [kevinmarks] and KartikPrabhu joined the channel