When I first learnt to program the thing that I really enjoyed was learning to make a terminal app that took in the users input and used it as a conditional. I’d make all these little toy apps where my family had to type in the right word to continue. Eg “Who is the leader of the autobots?” => “Well done. Transform and roll out!!” It strikes me we could encourage better discourse with one word locked comments that th…
I've been considering doing something similar, except with plain CSS: a.paper ~ a.comments { display: none; } a.paper:visited ~ a.comments { display: inline; }
The closest you’ll be able to get is a JavaScript click handler on .paper revealing .comments. If you do such a thing, you should probably only hide the comments with JavaScript in the first place, so that users with JavaScript disabled can still see them.