Viewing profile — RedNifre
RedNifre
HN member- Joined
- Sun, Oct 19, 2014, 10:09 AM UTC
- HN karma
- 528
- Public activity
- 207 items
- HN profile
- View on Hacker News ↗
About RedNifre
No profile information was provided.
Recent public activity
-
comment
Comment #48773709
Neat! If you don't have a PostgreSQL DB ready, you can also compile Commodore 64 Basic for you HP 15-C calculator instead: https://forum.swissmicros.com/viewtopic.php?f=23&t=2194&p…
-
comment
Comment #48301397
They probably meant "Boomer" in the colloquial sense of "somewhat old person" like how "Boomer Shooters" are for GenX and older Millenials.
-
comment
Comment #48295722
Oooh, you mean people turned on sub pixel rendering while running their screen at a non-native resolution and thus got these colors all the time? Yeah, I guess that could cause nos…
-
comment
Comment #48284637
Could somebody explain the Coral Pixel font? It makes no sense to me, given that the whole point of sub pixels was to look sharp without looking colorful. It only ever looked like …
-
comment
Comment #48226021
I think it depends on the country. In Germany, everything you write is automatically copyrighted, unless you explicitly waive it. In the US, it's the other way around, you have to …
-
comment
Comment #48163885
It depends on the language and/or used libraries. E.g. in Go, the problem does not exist, because it uses UTF-32; Rust uses UTF-8, but it makes sure that you can't cut a string bet…
-
comment
Comment #47823031
The way I remember it was that replay playback would only break if you played a replay with a different game version than it was recorded with.
-
comment
Comment #47232198
They don't see the letters, so how could they possibly succeed at that? It's like asking a human how many infrared flowers they see.
-
comment
Comment #47231944
Is there some philosophical/ethics work done on the question which fictional crimes, taboo breaks or unethical behavior are okay and which aren't? Iirc Japan takes the extreme posi…
-
comment
Comment #47139169
QR codes store bits, arranged into bytes (A byte is the shape of a 3x3 square with one corner missing), so how more traditional can it get?
-
comment
Comment #46574933
Regarding the Minecraft issue: If a Minecraft Java server has the special Geyser plugin ( https://geysermc.org/ ), Minecraft Bedrock clients can connect to it, so you can stick to …
-
comment
Comment #46464683
Here is my explanation for "software people who understand databases". The structure of the explanation will be as follows: 1. Explain how you would do simple accounting with a dat…
-
comment
Comment #46272801
I just finished https://www.lexaloffle.com/bbs/?pid=178450#p , my Signalis themed version of the Regicide card game. It's mainly a distraction from enterprise programming, but it d…
-
comment
Comment #46258947
Because the LCARS GUI is only for simple recurring tasks, so it's easy to find an optimal interface. Complex tasks are done vibe coding style, like La Forge vibe video editing a re…
-
comment
Comment #46258863
The lack of capitalism meant that the holodeck program authors had no need to optimize their programs for user retention to show them more ads. So much fewer people suffer from hol…
-
comment
Comment #45886764
"Cargo cult"? As in, "Looks like the genius artists at Pixar made everything extra green, so let's continue doing this, since it's surely genius."
-
comment
Comment #45770839
Why does it have Either? Doesn't TypeScript have "A | B" style sum types?
-
comment
Comment #45770824
Nice, what's the KMP plan there? We currently use https://github.com/michaelbull/kotlin-result , which officially should work on KMP, but has some issues.
-
comment
Comment #45528949
Looks easy to parse to me and you could also remove the commas in the array. { foo: "bar" baz: "bak" quux: [a b c d] lol: 9.7E+42 }
-
comment
Comment #45528910
You can also remove the commas in the arrays.
-
comment
Comment #45514936
If you already have quotation marks, what's the point of the commas?
-
comment
Comment #45387908
I vibe coded an invoice generator by first vibe coding a "template" command line tool as a bash script that substitutes {{words}} in a libre office writer document (those are just …
-
comment
Comment #45339675
Right, but did this mean you had to deal with all the Xcode problems, or did you have more of an IntelliJ like experience?
-
comment
Comment #45339573
Could some Xcode uers explain to me why AppCode (IntelliJ IDE) did not take off as an Xcode replacement? I recently had to do some iOS work, knew that Xcode sucks, wanted to try Ap…
-
comment
Comment #44836102
Ah, thanks for clarifying. I understood it as "Check that predicate first and if it doesn't match, run the old solution".