Viewing profile — holmium
holmium
HN member- Joined
- Fri, Jul 12, 2019, 1:55 PM UTC
- HN karma
- 105
- Public activity
- 28 items
- HN profile
- View on Hacker News ↗
About holmium
No profile information was provided.
Recent public activity
-
comment
Comment #44328149
If only someone could back-port Quick Look into Panther! I didn't realize how much I use that feature as I spammed the spacebar in these emulators.
-
comment
Comment #40727885
Damn, I was hoping this bridge would stay in its current limbo state where it's open to pedestrians and bikes but closed to vehicles. It's so much nicer not having a five lane stro…
-
comment
Comment #38940991
Maybe there were thinking about it in terms of disinhibition? A --| B --| C Where `A` inhibits `B` which inhibits `C`. So, while the repressor `A` is present, `C` will be transcrib…
-
comment
Comment #36724387
But, it's the DM that would provide the heat/glow for the star: > If the DM particles are their own antiparticles, then their annihilation provides a heat source that stops the col…
-
comment
Comment #36313822
> I believe moderators on Reddit like to think that they're that important and integral to the site functioning smoothly, but I think the reality is upvoting/downvoting/reporting w…
-
comment
Comment #36044361
> Sad that I had hoped some exec at Nintendo would veto this approach as "Not Nintendo" rather than choosing to tarnish the brand and take the money, like Apple did. They did, orig…
-
comment
Comment #35469617
haha yes the discourse level thread is like perfect for all us "we've read the Book" people to comment on.
-
comment
Comment #35469520
you can do it that way if you wanted to let mut i = 0; for item in items { item.method(i); i += 1; } I don't know why you'd it that way, but Rust definitely isn't stopping you from…
-
comment
Comment #34612179
It looks like there was a control group: > However, an additional control was undertaken where colour contrast thresholds were measured in the morning and then re-measured 3 h late…
-
comment
Comment #31989892
As another not-physicist who is interested in physics, I've found the articles/explainers at Of Particular Significance very helpful. There are a few on particle decay, and I think…
-
comment
Comment #31863289
Have you read (or "read"; I don't want to be responsible for your death lol) the Texas GOP platform[1] for this year? The first sentence in the "Homosexuality and Gender Issues" se…
-
comment
Comment #31733306
Riccardo Mori has a great series of articles comparing Snow Leopard with modern macOS if you're looking for something to read: http://morrick.me/archives/9220 http://morrick.me/arc…
-
comment
Comment #31414846
> People play Melee with ping differences bigger than that and it works fine lol. Waaay more technical game shows that there's tolerance. I dunno; I'd imagine people would be mad i…
-
comment
Comment #31108590
hahah yes the "0.0f" is different from "0.f" is different from "0.0" is different from "0" is a great IDO meme as well. One of the changes we had to make when we started to support…
-
comment
Comment #31105720
> The level of snark here is outstanding. [...] 'smelling the grass' I thought his snark wasn't too off the charts in this video. I'd bet it's more a cultural thing. If you were wo…
-
comment
Comment #31105578
PD will definitely be the next game to be fully (or near enough) decompiled. The dev behind that one is great. If you're bored, his write up on the "Challenge 7 Bug" is great read:…
-
comment
Comment #30686238
"Pumping" in this context is a very thinly veiled pejorative. The original question is using it in the sense of a "pump and dump" [1]. They're implying that the amount of Rust cont…
-
comment
Comment #30676911
There is only one other monitor on the market with the pixel density and screen size equal to or greater than the Studio 27", eight year old panel or not.[0] If you want high PPI, …
-
comment
Comment #30607892
No, "they" didn't. An iPhone 13 mini was rumored ten days before the iPhone 12 was revealed [1] (see also in that same rumor the 2022 SE 3 launch). There were rumors through out fo…
-
comment
Comment #30116163
Really, what does the conditions for bridges in the largest state in the continental US, in the South, with one of the highest rates of population grow in the US have to do with a …
-
comment
Comment #30116010
This one is another great shot for scale: https://pbs.twimg.com/media/FKMeYsZXEAYzpan?format=jpg&name=... [from: https://twitter.com/shadow/status/1487065719028207627/photo/... ]
-
comment
Comment #29369457
There are teams working on both the OoT decomp and a MM decomp, so I think that combining both of those under the Zelda64 heading is neat--especially with the callback to the pre-r…
-
comment
Comment #28990666
I haven't seen too many benchmarks yet, but Dave2D ran a "Cinebench R23" test in a both a single benchmark and thirty minute loop. [1] He saw that the score remained the same after…
-
comment
Comment #28909012
Yeah, some of the configs are already estimating December ship dates, and that's like 20 minutes after the store opened. They are not going to be able make enough Pro chips
-
comment
Comment #26813329
In addition to what the others have said, Rust's `String` is three pointer sized words: `(ptr, len, capacity)`. So, a `String` has 50% of the overhead of a `&str`.