Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
danielparks
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
10 ms
·
1.
▲
by
danielparks
2mo ago
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://jacobfilipp.com/new-lord/
2.
▲
by
danielparks
8mo ago
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 myself because I live in Portland.
3.
▲
by
danielparks
10mo ago
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 doing a lot of speaking. I’ll have to ask folks what they’v
4.
▲
by
danielparks
10mo ago
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 don’t use them myself. I know somebody who really dislikes t
5.
▲
by
danielparks
11mo ago
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 have to explain, but the vast majority of the time people do
6.
▲
by
danielparks
1y ago
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 saved time by washing the dishes by hand. I still try to be
7.
▲
by
danielparks
2y ago
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 explicit (let’s call it ~), the example would look like this:
8.
▲
by
danielparks
2y ago
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 assume `cat:dog` would be equivalent to `(cat):(dog)` rather tha
9.
▲
by
danielparks
2y ago
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 that’s a lot better than automatically when you open
10.
▲
by
danielparks
2y ago
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/45a3cdfa52246f1d1201c1e8cdef6117 to be a valid securi
11.
▲
by
danielparks
4y ago
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 its straightforward configuration and sane defaults, I was
12.
▲
by
danielparks
5y ago
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 cities might have looked like in the past. It’s especially helpfu
13.
▲
by
danielparks
5y ago
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 limit OTP attempts. It’s been a long time since I did any work
14.
▲
by
danielparks
5y ago
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.
15.
▲
by
danielparks
5y ago
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 yourself” argument before, but, like
16.
▲
by
danielparks
5y ago
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.
17.
▲
by
danielparks
5y ago
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-consumption-when-open... Gus Mueller (t
18.
▲
by
danielparks
6y ago
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 this, but I get the impression that it woul
19.
▲
by
danielparks
7y ago
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 should be /bin/false or something similar). Use an en
20.
▲
by
danielparks
7y ago
Safari supports ad blockers, and they’re quite easy to set up. Whether or not people actually install them is a good question, though.
21.
▲
by
danielparks
7y ago
Evidence, not proof.
22.
▲
by
danielparks
7y ago
Source? It’s certainly not my experience with lamotrigine.
23.
▲
by
danielparks
7y ago
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.
24.
▲
by
danielparks
7y ago
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 multiple options into one. For example, the following two commands
25.
▲
by
danielparks
7y ago
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 way. For example: https://github.com/DavidGamb
26.
▲
by
danielparks
7y ago
I use my iPhone X regularly at contactless terminals at stores and on the bus. The trick is to double click the lock button first, select a card if you want, then hold it by the reader. I don’t have any problems with FaceID — it’s more reli
27.
▲
by
danielparks
7y ago
The change is unnecessary. You can just rebuild. If you’ve built once using the standard go module functionality then you will be able to rebuild as long as you don’t pull in more dependencies. Naturally you can move the cache around.
28.
▲
by
danielparks
7y ago
> Check out your code into some random directory. Copy the directory to a USB drive and walk it over to an air gapped machine (no wi-fi, no ethernet, clean dev environment installed). Copy the directory to the box, make some small code c
29.
▲
by
danielparks
7y ago
This is basically parallel-make as a service. This has been an increasingly difficult problem as more and more pipelines move to containers for testing and building. What other solutions have folks come up with?
30.
▲
by
danielparks
7y ago
I’m having a hard time imagining what value putting code names in the crossword would have. Did they suspect the compiler was encoding information in the position of the words or something? Seems like an unnecessarily hard way to exfiltra
More ›