Viewing profile — torusle
torusle
HN member- Joined
- Sun, Aug 20, 2023, 7:31 PM UTC
- HN karma
- 64
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About torusle
No profile information was provided.
Recent public activity
-
comment
Comment #49112575
Nice Ai prompting, bro.. Might want to share your harness /s
-
comment
Comment #48619758
> In hindsight maybe a binary level translator from 8080 to 8086 would have worked better (and be simple enough) Many programs written in assembly language used self modifying code…
-
comment
Comment #48125860
Linux does not dragged down in performance by the thousands of virus and malware scanners.
-
comment
Comment #47507846
ARM riding the "everything is AI" train. So sad.
-
comment
Comment #47476882
Yea.. having fun with war.. Most American post I have seen here since ages.
-
comment
Comment #47333858
The fun thing was the Roland Sync. You could sync up all the TB-303, TB-909 and all the others with a 5-pole DIN cable. The sync was badly implemented. It lagged, it had latency. H…
- comment
-
comment
Comment #46946071
Easy, it is dopamine.
-
comment
Comment #46181856
Back then Microsoft was lobbying as hard as they could to turn that decision to move to linux over. They knew: If Linux makes it in Munich, it will likely spread over and they loos…
-
comment
Comment #46147976
"I could only find a couple tutorials/guides and both were imperative" Aren't Quadtrees covered by almost all basic data-structure books? It is the most simple form of taking the b…
-
comment
Comment #45779305
this For those who don't know: Vias are not only used to get an electrical connection from one side of the PCB to another. You also need them to keep radiation in check and often t…
-
comment
Comment #43195658
Honestly, this is really bad. It might be a breakthrough of what you are doing, but when I listen to the output all of the timing and phrasing is aweful.
-
comment
Comment #42558690
There are couple of tricks you can do if you fiddle with the bits of a floating point value using integer arithmetic and binary logic. That was a thing back in the 90th.. I wonder …
-
comment
Comment #41514420
> 1. Apple having just announced it is opening up NFC > to developers means that both major mobile > platforms can now act as responding devices; > 2. Mobile consumer hardware is s…
-
comment
Comment #41509798
I've worked in the payment industry and among other things built a payment terminal, so I know a thing or two about it. 1st: The message overhead during communication is not an iss…
-
comment
Comment #41506633
Or as simple as using the hardware accelerated CRC32 that we have in our x86 CPUs. Last time I checked, CRC32 worked surprisingly well as a hash.
-
comment
Comment #40931425
Another bonus quirk, from the 486 and Pentium area.. BSWAP EAX converts from little endian to big endian and vice versa. It was a 32 bit instruction to begin with. However, we have…
-
comment
Comment #40759441
Nah, it is not that bad. Sure you can mess up your performance by picking bad compiler options, but most of the time you are fine with just default optimizations enabled and let it…
-
comment
Comment #40655535
Correct. And every graphic programmer worth it's salt had a copy of "Computer Graphics - Principles and Practice" on the desk and followed whatever came out of the "Graphics Gems" …
-
comment
Comment #40360432
In embedded, you often need message queues. A common way to implement these is to have an array of messages, sized for the worst case scenario and use this as the message pool. You…
-
comment
Comment #40357310
> Linked lists are taught as fundamental data structures in programming courses, but they are more commonly encountered in tech interviews than in real-world projects. I beg to dis…
-
comment
Comment #40346624
Hardware existed. Around 2006 I had some automotive entertainment system from NEC on my table which had one of the Bitboys GPU chips on it. Wrote some vector graphics API for it. I…
-
comment
Comment #38267167
I want this as a paint pigment please...
-
comment
Comment #38204835
I wrote thousands lines of assembler for NASM. It was such a nice update to the good old turbo assembler back in the 90th.
-
comment
Comment #37411976
It wasn't that bad. You had different memory models back then. If you wanted to keep things easy you just compiled for a memory model in which each pointer was either 16 bit (for c…