Viewing profile — Naru41
Naru41
HN member- Joined
- Tue, Dec 17, 2024, 4:31 AM UTC
- HN karma
- 28
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About Naru41
No profile information was provided.
Recent public activity
-
comment
Comment #49015384
memcpy() was the best and fastest serializer from the start. It already existed in 1983.
-
comment
Comment #45546045
This style of simulating faux-realistic materials (such as glass or aluminum) on the screen looks dated and cheesy now -- (Windows engineering team 2012) https://web.archive.org/we…
-
comment
Comment #45245265
Utility-scale solar is very unpopular in Japan. Because most suitable lands of them are densely forested, and installing utility-scale solar systems requires destory the forests. T…
-
comment
Comment #44980616
I think Rust is the biggest winner that has from LLM support. When I got an compile error, it is painful without LLM to reverse-thinking how to re-write something and why it needs …
-
comment
Comment #44950736
True. The number can be determined at comp-time. Buffer sizes should be computing manually.
-
comment
Comment #44946329
I've often thought that if C just had a syntax like Go definding method, C would be much easier to write. uint16_t (MyStruct* s) some_func() { .. } uint16_t MyStruct_some_func(MySt…
-
comment
Comment #44806358
Funny trivia. But of course -- there is absolute zero reason to base64 encode ascii text. Evenmore laughable to put Json encoded in base64 text inside regular Json.
-
comment
Comment #44616508
The ideal HTML I have in mind is a DOM tree represented entirely in TLV binary -- and a compiled .so file instead of .js. And a unpacked data to be used directly in C programming d…
-
comment
Comment #44275841
This style of simulating faux-realistic materials (such as glass or aluminum) on the screen looks dated and cheesy now -- (Windows engineering team 2012) https://web.archive.org/we…
-
comment
Comment #44121679
They skipped iPhone 9 once. So iPhone 17 and going for iPhone 2026 could be better for measuring the age of the device and could be beneficial for consumers -- but what about the O…
-
comment
Comment #43687502
I don't see the point - ASCII vs. binary doesn't make any real difference. And there's no an actual unencrypted HTTP/2 traffic, so there's no incentive to censor.
-
comment
Comment #43499445
> A cryptosystem is incoherent if its implementation is distributed by the same entity which it purports to secure against. That's what the recent Signal tormoil is like. Communica…
-
comment
Comment #43458517
Successful Math/CS people have a hard time applying it in biotechnology. https://x.com/iskander/status/1903077361152610374 -- about a dozen of us with math/CS backgrounds ditched t…
-
comment
Comment #43309277
Yup, I don't understand why Google would sponsor McLaren F1 team. They've already done a better promoting Chrome.
-
comment
Comment #43166730
> I'll be expecting my Nobel peace prize in the postbox and several job offers in my DMs within the next 3 working days. This joke alone was worth the read.
-
comment
Comment #42980531
No-modularize is strictly good if you can avoid it. Hardcode memory addresses at compile time is simpler and faster.
-
comment
Comment #42672661
More than decade ago, I didn't understand an actual value of Lisp, but I remember this song well. https://www.youtube.com/watch?v=HM1Zb3xmvMc
-
comment
Comment #42508241
As the name suggests, it's just a Perl alt... everyday chores, data analysis, some automation tools.
-
comment
Comment #42490622
If Android had provided an defining UI API like this entirely in C without using Java, Android would have 100% monopolized the mobile OS market. So fast, efficient.
-
comment
Comment #42480438
Excellent. If these compiled data structures were the web standard instead of HTML, www would be ridiculously fast.
-
comment
Comment #42438386
Why not just use a naive struct from the beginning? memcpy is the fastest way to get serialize into a form that we can use in actual running program.