A lot of the features you mention were already there in XMPP 20 years ago. I've lost track of the standard a long time ago but I assume the rest have been added through extensions.
I think the issue is that people are adjusting what they see on screen instead of adjusting their environment (i.e. room lighting), even when they are totally able to do it.
A dark mode could make it bearable to work in poor light conditions but won't improve on the fact that it's already a non-optimal environment.
I wish my son would just turn the lights on in his room when he's gaming. He's just sitting there in the dark.
Mind you, I do the same when watching TV. Some shows and movies these days are so dark you simply have to turn off the lights and close the curtains to see what's going on.
I think this piece shows the range of his musical expressiveness, apart from his virtuosity or synth programming skills. Just a piano passed through a flanger effect with some ambient sounds.
The electronic bleeps in that track are recorded from a handheld electronic game (Bambino UFO Master Blaster [1]). Talk about giving a whole new meaning to those sounds.
That title and that album cover: a woman wearing bikini and low-light glasses for snow, with the sun on the back and broken floating ice. A prediction of climate change from 1980?
If the myths hold truths, the oil companies knew this was an issue in the '70s. By the late 80s the predictions had reached artists and musicians in the UK (how I know this is too convoluted and flakey for this thread). I was taught about climate change (the "greenhouse effect") as a young teen, early 90s. It's been canon for me since then. I have no problem believing that forward looking adults were talking about it, making art and activism in 1980.
Wow, I thought it was written for the film until now! How embarrassing… Not only for the song suiting, but the title too. As it’s a bleak post-ecological society.
There is a story about how Ridley Scott wanted to use this specific piece and a couple more by Vangelis in Blade Runner, and Vangelis told him: why reuse my old pieces, I can make a new score for this film specifically.
I think it was a piece of music from another film, also by 20th Century Fox, that they used as a temp track, and Scott liked it so much he made it happen. Goldsmith was not best pleased.
It'll probably be the music for the opening titles, because when I bought the album in the 80s I was suprised (disappointed actually) that piece wasn't on it, and leaving off the opening titles is a real omission in a movie soundtrack.
Well, I chose red and white because those were the colors used to score in Mastermind :) But yeah, I suppose green/amber are better, and consistent with the color coding of the characters in the grid.
> allowing a nonexistent word once per game
That's a good suggestion, I guess I can introduce easy/hard modes and implement this in the easy mode. Thanks!
Spaces work well for indentation. You could argue here that typing one character (tab) is more efficient and maintainable than writing N (also semantically more powerful).
The real problem comes when people start aligning things on the middle of the line.
As long as source code resides in plaintext files, writing in columns (i.e. vertically aligning blocks of text) seems like an excessive endeavor with little gain.
We are not typesetting; formatting resources should be kept to a minimum to make the code easy to handle in plaintext. Fortunately, code is restricted enough that we can do pretty well without those.
You don't write spaces to align text in Word: it's a nightmare to maintain and the software provides better tools for that purpose. Why do we still write code as if we were using a typewriter?
You may think you are improving readability by aligning columns of text, but then, the impossibility of standardizing such baroque formatting rules goes against that. Furthermore, you are preventing people from using a variable-width font, which is actually better for readability.
Visual Studio (not Code) handles it quite nicely. If you hit tab and it replaces it with 4 spaces, then you backspace, it removes the 4 spaces as if they were a tab. So it saves with spaces, but treats them like tabs.
I've been switching over to tabs to mark indentation levels and spaces for alignment after that. I used to use all spaces. Disagree completely on the proportional fonts, but maybe I just haven't tried one. Code presentation is important to me, since it makes it really easy to grok the structure of what's going on and to find some simple errors if you align certain things together.