Sjonny | 1 year ago | on: EA Open Sources Command and Conquer: Red Alert, along with other games
Sjonny's comments
Sjonny | 1 year ago | on: Nvidia emulation journey, part 1: RIVA 128/NV3 architecture history and overview
Not sure if this is the same thing I had, but on my Riva128 the alpha blending wasn't properly implemented. I distinctly recall playing Unreal Tournament and when I fired the rocket launcher there were big black squared with a smoke texture on them slowly rotating :D couldn't see where I was shooting :D
Sjonny | 2 years ago | on: I just wanted Emacs to look nice – Using 24-bit color in terminals
Sjonny | 2 years ago | on: Meta now lets EU users unlink their Facebook, Messenger and Instagram accounts
Sjonny | 2 years ago | on: Firefox tooltip bug fixed after 22 years
Sjonny | 2 years ago | on: Firefox tooltip bug fixed after 22 years
Tooltips should be removed entirely instead of fixing 22 year old bugs.
Sjonny | 2 years ago | on: AMD Open-Source GPU Kernel Driver Above 5M Lines, Entire Linux Kernel at 34.8M
Sjonny | 3 years ago | on: On my resignation as regulator of the Dutch intelligence and security services
I'm not so sure about this. In the article he states:
> Once it became clear the intended law would likely pass parliament
and in the dutch version it sounds even worse to me:
> Na het verschijnen van het advies van de Raad van State is mij duidelijk geworden dat de verruiming van de bevoegdheden en de verschuiving van het toezicht niet meer ongedaan zullen worden gemaakt.
I can't really tell for sure if he thinks this law is here to stay, but me being a pessimist when it comes down to government, I think there is nothing temporary about this.
Sjonny | 3 years ago | on: Bill Watterson’s refusal to license Calvin and Hobbes (2016)
Sjonny | 3 years ago | on: Bill Watterson’s refusal to license Calvin and Hobbes (2016)
Sjonny | 3 years ago | on: HN is up again
Sjonny | 4 years ago | on: Fixing stutters in Papers Please on Linux
Sjonny | 4 years ago | on: Fixing stutters in Papers Please on Linux
Sjonny | 4 years ago | on: Fixing stutters in Papers Please on Linux
Sjonny | 4 years ago | on: Fixing stutters in Papers Please on Linux
Sjonny | 4 years ago | on: Get rid of those boolean function parameters (2015)
Choose:
AddElement(object, true, false);
AddElement(object, true, true);
AddElement(object, false, false);
AddElement(object, false, true);
or AddElement(object, visible::on, deletable::off);
AddElement(object, visible::on, deletable::on);
AddElement(object, visible::off, deletable::off);
AddElement(object, visible::off, deletable::on);
The latter is more readable, you can spot bugs easier, you don't need to remember which parameter was for visibility, and which was for indicating deletable. And it doesn't take much more to write this than a confusing boolean. It doesn't scale.Sjonny | 4 years ago | on: Get rid of those boolean function parameters (2015)
The solution provided in the article is the way to go.
Sjonny | 4 years ago | on: Show HN: Flashcards to learn AWS skills
Sjonny | 4 years ago | on: Fedora has significantly fumbled DKMS handling for Linux kernel modules
Maybe kernel developers would get in this situation, but even then they'd probably had their system setup better for their situation (and maybe gone through that same process and thought it was part of the setup steps).
Sjonny | 4 years ago | on: Fedora has significantly fumbled DKMS handling for Linux kernel modules
There is an old version of it in the kernel, which doesn't support newer released versions of that chip. I remember reading somewhere that the maintainer was being swamped with requests to make support for those chips too, but didn't get any help for it and it became a toxic environment to work on. So he dropped it.