Hacker Newsnew | past | comments | ask | show | jobs | submit | gsoto's commentslogin

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.


Or adjusting the brightness of their screen.


Just sharing one of my favorite pieces of him:

"Memories of Green" (from the album "See You Later") https://www.youtube.com/watch?v=pW9D6agp794

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.

[1] https://www.youtube.com/watch?v=-sEOW8wAqG0


》"Memories of Green" (from the album "See You Later") https://www.youtube.com/watch?v=pW9D6agp794

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.


"Climate Change" was one of the topics discussed at "Rio Summit" in 92 [1].

[1]: https://en.wikipedia.org/wiki/Earth_Summit


I recall an early 80's Justice League episode which centered global warming.


"Memories of Green" was also used to great effect in Blade Runner. I love how well it works there. It's so sad and evocative.


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.

And so he did, in some short timeframe.


I think Scott did this to Jerry Goldsmith for ALIEN as well, except Jerry wasn't happy about reusing music.


Don’t you have to ask the composer for permi$$ion anyway? Or do things work differently in Hollywood?


In the end, it's whoever pays for the rights.

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.


not if you are stanley kubrick ;) (2001)


Wasn't there going to be an original score and then Kubrick decided that he liked his mockups better?


I couldn't play that video for some reason (says it's unavailable), so here's another link to (I think) the same song: https://www.youtube.com/watch?v=u1KfOMkyU_w


Here's a direct link to it on Spotify as well: https://open.spotify.com/track/0rHCW5eZ35QmQNVYyozAnZ?si=384...


It is the same song. Thanks :)


>"Memories of Green"

Memories of Green and his work on Blade Runner in general are on my list of best music. Beautiful work.


PowerToys[0] has a utility for that. It stays in the corner of the taskbar.

[0] https://github.com/microsoft/PowerToys


This is good for users who don't have admin rights but want to keep online for employee monitoring purposes.


I would say something like "keep guessing" instead of "retry" but good suggestion.


Very cool. And way more challenging.

A way to make this a bit easier would be allowing a nonexistent word once per game or something like that.

> the red tile indicates the number of correct characters in the correct position

I suggest using another color for that, as red is associated with error most of the time. Why not using the green/yellow for the numbers too?


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.


I think the solution is to rely on hanging indents rather than trying to align with the column of the previous opening parenthesis, bracket, etc.

So instead of this:

  def some_method(param1
                  param2):
      statement1
you do this:

  def some_method(
          param1,
          param2):
      statement1
Hanging indents work regardless of whether you use tabs or spaces for indentation.


My IDE types 4 spaces when I hit tab shrug


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.


I believe you'd like elastic tabstops: http://nickgravgaard.com/elastic-tabstops/


I love them! It's a shame they didn't really catch on.


So you’re against any indentation? I don’t think you’ll find many programmers at all who agree with that statement.


Indentation is OK, sure. I was talking about aligning stuff on the middle of a line.

I find tabs better for indentation but in practice end up using spaces.


Can I marry you?

I will add:

* Tabs > spaces

* Proportional > monospaced

* White background > dark theme


White background if there's a window near-by. Dark background if in a dimly lit space.

I don't know if I use tabs or spaces anymore. I hit tab, but my IDE just sort of makes it up from there. Works well enough.


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.


Though I hate what you say, I will defend to the death your right to say it.

But holy cow the white background made me angry hahah


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.


Fluorescent white is for accountants and managers.


Yes! I've been using Verdana for a decade. I still can't find a better screen font for coding.

Edit: https://i.imgur.com/JnMopk4.png


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: