HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hun3

no profile record

Submissions

What does it mean to be a programming language, anyhow? (2021) [pdf]

dl.acm.org
1 points·by hun3·il y a 6 mois·0 comments

Every board game rulebook is awful [pdf] (2024)

boardgametextbook.com
3 points·by hun3·il y a 6 mois·1 comments

Is the nervous system a democracy? (2016)

scientificamerican.com
2 points·by hun3·il y a 6 mois·0 comments

Profiling with Ctrl-C (2024)

yosefk.com
92 points·by hun3·il y a 6 mois·13 comments

comments

hun3
·il y a 19 jours·discuss
> The OS is a thin layer providing an abstract and consistent interface regardless of the hardware configuration.

This is called a hardware abstraction layer, not OS.

https://en.wikipedia.org/wiki/Hardware_abstraction
hun3
·il y a 19 jours·discuss
System WebView but Electron is now the system
hun3
·il y a 19 jours·discuss
The operating system has historically trusted the applications not to do dumb things too much.

Only now we're witnessing the consequences much more frequently thanks to accelerated slop.
hun3
·il y a 21 jours·discuss
(zenzi)³

I mean zenzi-cubic
hun3
·le mois dernier·discuss
China has proxies that sell cheaper access to frontier models in exchange for permission to train on your data.
hun3
·le mois dernier·discuss
Right.

As an example: Oracle and PostgreSQL don't have dirty reads: READ UNCOMMITTED does nothing. MySQL's concurrency model depends on the engine.
hun3
·le mois dernier·discuss
What keeps users themselves from vibe-coding their own software?

If you don't own quality, why should I pay? You're just a middleman at that point.
hun3
·le mois dernier·discuss
If you squint hard enough, you'll notice your bank account serves as an IPC semaphore replenishing API credit balances.

Your wallet is now a real-time communication channel.
hun3
·il y a 2 mois·discuss
_RealShipOpts has a constructor.
hun3
·il y a 2 mois·discuss
With consent, yes.
hun3
·il y a 2 mois·discuss
No, "virtual machine" alone doesn't make things safer.

Shrink your attack surface.

Use a completely locked down seccomp. Use nsjail or gVisor for containers. Use microvm or libkrun for full OS.

Lesser attack surface is what matters. Virtualization is only half of the story.
hun3
·il y a 2 mois·discuss
Avoiding problems outside your business problem domain, and can therefore guide the AI more effectively towards building the right thing.
hun3
·il y a 2 mois·discuss
(Note that this still assumes that each biased-coin toss is i.i.d.)
hun3
·il y a 2 mois·discuss
They are orthogonal.

Suppose you have 100ms audio latency and no wait time. Then, natural pause will trigger response immediately but you won't notice it has started until after ~200ms (round-trip time). Twice as annoying.
hun3
·il y a 3 mois·discuss
But it's still a bit more difficult to sue them for leaking your company's data.

At least for now.
hun3
·il y a 3 mois·discuss
You can write unambiguous (UB-free) code and the compiler's output will be deterministic. There will even be a spec that explains how your source maps to your program's behavior. LLM has neither.

Also, if you need to control performance, you still need to know how CPU cache and branch prediction works, both of which exists at the abstraction level of assembly.
hun3
·il y a 3 mois·discuss
How can you read a language you didn't learn?
hun3
·il y a 3 mois·discuss
PatchGuard would like to have a word with you.
hun3
·il y a 3 mois·discuss
Ironic, since Unix is itself an embodiment of "worse is better."
hun3
·il y a 3 mois·discuss
I used floating timestamps as some kind of an identity. If there is ever a conflict, I just increase it by 1 ulp until it doesn't collide with anything. Sorry.