Viewing profile — pwdisswordfishz
pwdisswordfishz
HN member- Joined
- Sun, Jun 09, 2024, 11:26 AM UTC
- HN karma
- 535
- Public activity
- 254 items
- HN profile
- View on Hacker News ↗
About pwdisswordfishz
const links = Array.from(document.querySelectorAll(':link[href^="vote"][id^="up"]:not(.nosee)'));
const timer = setInterval(() => {
const link = links.pop();
if (!link.matches('.nosee'))
setTimeout(() => link.click(), Math.random() * 2000);
if (links.length === 0)
clearInterval(timer);
}, 16000);Recent public activity
-
comment
Comment #45435266
I don't understand why people insist on simulating a poor substitute for RAII with a feature that is itself almost decent RAII. > If malloc fails and returns NULL, the cleanup func…
-
comment
Comment #45429090
No, they are not two em-dash options.
-
comment
Comment #45429052
AI makes typoes all the same.
-
comment
Comment #45410918
That's a hyphen, not a minus sign, silly.
-
comment
Comment #45395318
There are other problems besides access. The big one being that the people that you'll find on Discord are the kinds of people that you'll find on Discord.
-
comment
Comment #45394665
So why would I care what some racist Twitter rando thinks?
-
comment
Comment #45393485
[flagged]
-
comment
Comment #45370628
Why did I expect a terminal emulator
-
comment
Comment #45357129
Medium post just to embed a YouTube video... did you forget a wooden table? The video is hilarious, though: https://youtube.com/watch?v=VBj80rx_iBc
-
comment
Comment #45336420
> display images inline like Reddit does That's a relatively new development. The cultural aspects that you're describing were already in place (entrenched) well before Reddit inte…
-
comment
Comment #45333517
You could replace specialized terms with nonsense words in anything. This is completely non-actionable critique. In the end, there is no Royal Road to learning. You have to create …
-
comment
Comment #45322215
And C/C++.
-
comment
Comment #45288307
Take N screenshots, XOR them pairwise, OR the results, then perform normal OCR.
-
comment
Comment #45249499
Same typewriters that didn't bother having dedicated "0" and "1" keys?
-
comment
Comment #45221211
It wasn't, but that is not why.
-
comment
Comment #45182760
How does it prevent security vulnerabilities when instead of being undefined entirely, the behaviour is defined to be wrong? This is the "chug along at all costs" mentality that PH…
-
comment
Comment #45182610
Yeah, except this one is much more arbitrary in its choice of groupings and arrangement. Why is the boolean and Unicode scalar type in the same column as floating-point types? Why …
-
comment
Comment #45177964
If I am allowed not to look at the screen when an advert is playing, then I should be allowed not to play it in the first place. There is no moral obligation on the part of the vie…
-
comment
Comment #45167616
Companies shipped the Semantic Web? When?
-
comment
Comment #45164488
> A C argument declaration is made up of modifiers (register, const), a data type (char *), and a name (from). Now explain a declaration like "char *argv[]"... > We’ve also re-set …
-
comment
Comment #45164468
That's why you grep for a syntactic structure, not undifferentiated text.
-
comment
Comment #45164382
Or just …
-
comment
Comment #45157973
The distinction between #3 and #4 does not matter in practice: "I have learned to use variable initializers, that's why there isn't one present". As soon as you make it reliable, p…
-
comment
Comment #45157474
Gram-metres?
-
comment
Comment #45157351
Why bother with this category? The code exercising it is buggy either way, regardless of whether the behaviour is specified or not, and having a fixed definition may constrain impl…