Viewing profile — oasisaimlessly
oasisaimlessly
HN member- Joined
- Tue, Jul 25, 2023, 8:18 PM UTC
- HN karma
- 430
- Public activity
- 261 items
- HN profile
- View on Hacker News ↗
About oasisaimlessly
No profile information was provided.
Recent public activity
-
comment
Comment #49179769
https://news.ycombinator.com/item?id=40441650 "TSMC EUV machines equipped with remote self-destruct in case of invasion"
-
comment
Comment #49051670
btw, your last paragraph makes you sound like an ass.
-
comment
Comment #49050690
I'm guessing Devuan still has /var/lib/dbus/machine-id.
-
comment
Comment #48872744
preach, brotha
-
comment
Comment #48870636
NBR = nitrile butadiene rubber, a synthetic rubber. Not really a raw material, as it's synthesized.
-
comment
Comment #48849003
For things that need much more precusion than my lunch, ±1 second probably still isn't good enough, so they need another layer of correction anyway. Given that exists, might as wel…
-
comment
Comment #48603433
s/shit/shot/g
-
comment
Comment #48469879
Why use zvols? Aren't they essentially just single-file ZFS datasets (allowing e.g. independent snapshotting)?
-
comment
Comment #48174702
OpenSCAD has almost zero crossover with B-rep modelling ('true' CAD, what this apparently is), though.
-
comment
Comment #48017096
No, that is actually very rare, not typical. Do you have any examples of password managers that do that?
-
comment
Comment #48016335
You dropped this:
-
comment
Comment #47990207
> Wrapping around is what happens when you decrement the minimum value of any integer type, including signed types. No, signed wraparound is undefined behavior in C, whereas unsign…
-
comment
Comment #47990162
> That's true for signed numbers too though? `int_min - 2 > int_min` No, that's undefined behavior in C, and if you care about correctness, you run at least your testsuite in CI wi…
-
comment
Comment #47951745
MEMS oscillators do use a vacuum, and that's why they're susceptible to helium. A helium atom is tiny compared to an oxygen or nitrogen atom, and can leak through many otherwise-pe…
-
comment
Comment #47949883
You don't have to 'build' anything. Just spin up a GitLab docker container. Bonus: If you put it behind a VPN, you never have to worry about updating it.
-
comment
Comment #47838310
This is a very SWE-centric perspective. The very names of software/hardwsre would imply the exact opposite.
-
comment
Comment #47829497
What? > Exactly, the application logic is the target. Actually doing seccomp bpf base but for managed bindings (Java, Node, Go, ...) add a lot of complexity.... Maybe proofread the…
-
comment
Comment #47819185
I'm an actual boss, and wasting a week is cause for a 30-minute post-mortem, not immediate termination.
-
comment
Comment #47818692
I don't think this is true. Modulo the sign bit, the "next float" operator is equivalent to the next bitstring or the integer++.
-
comment
Comment #47748415
I've never heard anybody (mis)attribute that to Apple.
-
comment
Comment #47604249
On the contrary, I would take this as evidence that these projects are alive and well - they have people who care enough to try to affect their future trajectory.
-
comment
Comment #47569065
> There's zero reason to replace your gloves when switching from dicing green peppers for a salad to picking up raw chicken. Typo?
-
comment
Comment #47489695
It does, in combination with a pinned nixpkgs commit, which you can find like this: ~/repos/nixpkgs$ git log --grep='nodejs.* 24.14.0' -1 origin/master commit 9c0e2056b3c16190aafe6…
-
comment
Comment #47108384
I don't think it's abstract at all. Rub something sharp (anything from a stick to a phonograph needle) on an object and you'll directly transcribe its spatial frequency spectrum in…
-
comment
Comment #47089259
It's possible to fix this in application code with a Primitive or NoDefault wrapper that acts like a T, except doesn't have a default constructor. Use Primitive wherever you'd use …