Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
NobodyNada
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
NobodyNada
8d ago
It was still crap back when it was Wikia. The website itself wasn't so bad yet, but the actual content of most Wikia wikis was very poor quality (often wrong, outdated, and/or poorly sourced; lack of maintenance and amateurish wri
2.
▲
by
NobodyNada
17d ago
The token should only be valid for one IP, so the scraper has to keep solving challenges if it rotates IPs.
3.
▲
by
NobodyNada
20d ago
Whoa, it's MaskRay! Your blog has been a lifesaver for me every time I've needed to understand some obscure detail about linker behavior. Thanks a ton for all your work in this area, and thanks even more for writing about it.
4.
▲
Our First Maintainers in Residence
(blog.rust-lang.org)
4 points
by
NobodyNada
21d ago
|
0 comments
5.
▲
by
NobodyNada
23d ago
It's talking about two different services: > Sign in with Apple addresses, previously issued on privaterelay.appleid.com, will be issued on private.icloud.com. > iCloud+ Hide My Email addresses will remain on icloud.com.
6.
▲
by
NobodyNada
24d ago
The article is about depositing a check as an extension of credit; not spending via check. This creates a creditworthiness requirement that is in practice one of the most common reasons for someone to not have access to a bank account.
7.
▲
by
NobodyNada
25d ago
I recommend reading https://www.bitsaboutmoney.com/archive/the-business-of-check... , particularly the section "Depositing a check requires an extension of credit": > If something goes wrong in this process
8.
▲
by
NobodyNada
27d ago
I had the same experience reading A Midsummer Night's Dream in high school -- I could follow the story, but it was a slog to get through and I didn't understand what was supposed to be so great about it. Then I saw an actual per
9.
▲
by
NobodyNada
1mo ago
> The obvious counterexample is in the foss world is ffmpeg, which I would submit is deeply understood by Fabrice Bellard Bellard hasn't worked on FFMpeg since 2003.
10.
▲
by
NobodyNada
2mo ago
I think the derailment of this thread into "is Rust's memory safety good or not" is unfortunate and tedious (this debate must have happened hundreds of times by now on this site alone), but I also think it's unfair to
11.
▲
by
NobodyNada
2mo ago
hint-mostly-unused defers codegen of a crate's functions until compiling a dependent crate where those functions are actually called. Therefore, unused functions will not need to be codegen'd. The downside is that functions which
12.
▲
by
NobodyNada
2mo ago
Adam Neely has an interesting video about one-note muisc, with some good (and bad) examples: https://www.youtube.com/watch?v=eSuK_5zW2iM
13.
▲
by
NobodyNada
2mo ago
> what's difficult about unsafe rust, which is how unergonomic pointers are. Like why do I need to use `addr_of_mut!`? Things are slowly getting better here! '&raw'/'&raw mut' reference operators wer
14.
▲
by
NobodyNada
2mo ago
Not the parent, but: I strongly dislike this framing of "Fil-C is better than Rust" or "Rust is better than Fil-C". This is apples-to-oranges; users will almost never be comparison-shopping between the two because they
15.
▲
by
NobodyNada
2mo ago
Exactly, my point is that the compiler and runtime are the "unsafe" portions of Fil-C, and that Fil-C and (safe) Rust are equivalent in this regard.
16.
▲
by
NobodyNada
2mo ago
Machine code is unsafe, so any memory-safe language must necessarily be built on some unsafe code somewhere . Safety is always conditional on the underlying unsafe implementation having no bugs. With Fil-C, the "unsafe blocks" li
17.
▲
by
NobodyNada
2mo ago
Honda's recent hybrids (CR-V, Civic, Accord) are like this too. Mostly series, but the engine can directly drive the wheels via a single overdrive gear for better cruising efficiency.
18.
▲
by
NobodyNada
2mo ago
> I think "storing deltas" based on seed is largely how Minecraft saves the level already This is not the case, level data is stored in full. One reason for this is that level generation is pretty slow (compare the time it take
19.
▲
by
NobodyNada
3mo ago
> Beato doesn't do much hour-long unscripted talking to the camera. Those videos are typically only about 10 minutes long. The videos are heavily edited with many cuts. So, I'd guess the production process is "have him tal
20.
▲
by
NobodyNada
3mo ago
> "The Real Reason Music is Getting Worse" As a musician myself, and as someone who enjoys watching music and music theory content on YouTube, I can't stand watching Rick Beato because of stuff like this. There certainly
21.
▲
by
NobodyNada
3mo ago
The PPU (and variants of it) was used in quite a few arcade machines, in addition to the NES. I don't know if there were any actual machines that used dual PPUs, but the functionality was likely intended for creating an arcade machine
22.
▲
by
NobodyNada
3mo ago
It is also heavily associated with humans writing about things which bear load (in an xkcd #2347 sense) :)
23.
▲
by
NobodyNada
3mo ago
10 years ago, GitHub had a far better reputation and the Rust ecosystem was much smaller and less load-bearing, so "what if someone doesn't have a GitHub account" was a theoretical concern for most people. So the issue was a
24.
▲
by
NobodyNada
3mo ago
> Using "if" or "unless", whichever is more appropriate, is far more readable than "guard". How is a different (and longer) keyword "far more readable"? That's just a matter of preference and
25.
▲
by
NobodyNada
3mo ago
guard is an inverted if statement, with the additional requirement that the branch must exit the parent scope. It's useful sometimes for readability, particularly for avoiding the "pyramid of doom" when you have a lot of prec
26.
▲
by
NobodyNada
3mo ago
Most people without absolute pitch have some level of "pitch memory", but it's not comprehensive or reliable. For instance, if you ask people to sing a pop song, they're significantly more likely than chance to sing it i
27.
▲
by
NobodyNada
3mo ago
I'm a musician who doesn't have absolute pitch, but does have very strong relative pitch. My understanding is that perfect pitch is neat party trick, but actually a hindrance instead of a help in most musical circumstances. Relati
28.
▲
by
NobodyNada
3mo ago
The engineer who wants the build to be reproducible and the engineer who wants to have the build time in the compiled binary may not be the same person.
29.
▲
by
NobodyNada
3mo ago
The reason for this is to ensure stack overflows are detected. The OS places a guard page above the top of the stack, which will cause a segfault if accessed. That way stack overflows are guaranteed to crash rather than stomping on valid me
30.
▲
Greg KH: Untrusted data in Linux – How Rust is going to save us [video]
(youtube.com)
2 points
by
NobodyNada
3mo ago
|
0 comments
More ›