Viewing profile — danielparks
danielparks
HN member- Joined
- Wed, Jan 19, 2011, 7:53 PM UTC
- HN karma
- 362
- Public activity
- 126 items
- HN profile
- View on Hacker News ↗
About danielparks
Recent public activity
-
comment
Comment #48906593
I was genuinely expecting this to be LLM-generated. Also, what’s his problem with the “Witch Priestess from the North?” EDIT: Oh, the blue backgrounds are links. https://jacobfilip…
-
comment
Comment #46858517
Mira makes a few options for children. https://www.mirasafety.com/products/cbrn-child-escape-respir... I have no personal experience with Mira; I’ve been looking for a respirator m…
-
comment
Comment #46040028
Yeah, I’ve wondered about that. Apparently it works for her, but… everybody’s different. I actually know a number of people with CIs, but everyone else is at ASL club, so we’re not…
-
comment
Comment #46031924
Have you tried the non-over-the-ear cochlear devices? The kind that have everything built into the part that sticks magnetically to your implant — I don’t know what the term is; I …
-
comment
Comment #45510383
I’ve been surprised how infrequently I need to explain this — definitely fewer than 10 times in the last 20 years of doing some variation if this consistently. I keep expecting to …
-
comment
Comment #43720983
Similarly, I used to stress about loading the dishwasher when I was a teen. I would spend so much time loading it that I have myself a neck ache from leaning over and I could have …
-
comment
Comment #42975235
This is a matter of operator precedence and tokenization. Tokens are single characters in this language, and there is an invisible operator between them. If the operator were expli…
-
comment
Comment #42975185
Cool, I’m interested to see where you go with this. I found the operator precedence unnatural, and it looks like a lot of other folks in this thread did too. I would naturally assu…
-
comment
Comment #42787075
Oh, nice. I looked under Settings > Privacy and didn’t see anything. For me it was under Settings > Data Usage. Yes, this still an issue if you manually download an attachment, but…
-
comment
Comment #42782116
I just sent a feature request[1] to Signal with the following text: I understand that Signal does not consider this https://gist.github.com/hackermondev/45a3cdfa52246f1d1201c1e8cde…
-
comment
Comment #32457348
From the page: > I decided it was finally time to build a file server to centralize my files and guard them against bit-rot. Although I would have preferred to use OpenBSD due to i…
-
comment
Comment #30403069
They also have a YouTube channel that adds images and video to the same audio track. A lot of it is just stock footage, but I like the images of ruins and the renders of what citie…
-
comment
Comment #29621338
Given the number of services that turned out to use plaintext or trivial password hashing (e.g. MD5), I would bet there are a bunch of services out there that do not effectively li…
-
comment
Comment #28101625
Yeah, it’s weird. I tried stripping the key= parameter from the link when I commented, but it’s required. The author posted the link in the comments of the original post.
-
comment
Comment #28095327
He posted a follow up about error handling in Zig that I thought was interesting: https://ayende.com/blog/194466-A/looking-into-odin-and-zig-m... I’ve seen the “clean up errors you…
-
comment
Comment #27649516
Not that I doubt you or anything, but… would you video this and post it somewhere? Seriously, I would love to have a quicker way to cook onions.
-
comment
Comment #27230788
There’s more information, including a copy of the image, in the forum discussion. The forum seems a bit pokey for me at the moment, though. https://forums.flyingmeat.com/t/memory-c…
-
comment
Comment #26021383
Is this https://lccn.loc.gov/2003636872 ? It’s in Spanish and directed by George Melford, but it’s on VHS and it’s dated 1992. Plus it has English subtitles. It would be fun to see…
-
comment
Comment #22069854
The www-data user (or whatever the web server is running as) should not own any files that are served by the web server. The user should not be able to log in either (its shell sho…
-
comment
Comment #21718330
Safari supports ad blockers, and they’re quite easy to set up. Whether or not people actually install them is a good question, though.
-
comment
Comment #21718270
Evidence, not proof.
-
comment
Comment #21646818
Source? It’s certainly not my experience with lamotrigine.
-
comment
Comment #21238936
Postfix, Dovecot, Amavis/Spamassassin, Bind, NGINX. So, mail, DNS, and a few web sites. I’ve been running something like this for more than 15 years now.
-
comment
Comment #21187995
oarsinsync is correct. The standard on most UNIX-like OSes is that long options, e.g. --long, have two dashes, and short options, e.g. -l, have one. It allows you to combine multip…
-
comment
Comment #21174040
Please please please use standard command line flag format (getopt_long) instead of the Go’s flag format. It’s super irritating that Go programs do it their own, less convenient wa…