e0qdk

joined 2 years ago
[–] e0qdk@reddthat.com 2 points 9 hours ago

Yes. Have done so several times, and have had people come up and talk to me out of the blue as well. Sometimes it has gone well. I've had a few good conversations with random people on long distance transport (planes, trains, and such) when I struck up conversations with whoever ended up in the seat next to me, and a few times (more rarely) in grocery stores when I'm having trouble finding something (or vice versa). e.g. got asked about uses for unusual ingredients I was having trouble finding and traded some recipe tips.

Usually when other people come up to me they just want me to give them money, or join their religion though.

[–] e0qdk@reddthat.com 3 points 1 week ago (1 children)

Hmm. I don't think I've seen seeds/nuts used directly in pasta before (other than as an ingredient in pesto). That's an interesting idea. I'll have to experiment with that one.

[–] e0qdk@reddthat.com 31 points 1 week ago (2 children)

For ceramic, maybe see if someone can do a kintsugi fix for it instead of 3D printing?

[–] e0qdk@reddthat.com 2 points 1 week ago

All of them? No. I can remember some details of a lot of them, and some of them very well, but there's others -- especially from when I was very young -- that I no longer have a good full mental map of.

I definitely do not remember the layout of all my schools. I moved a lot and some of these are just disconnected fragments of areas to me now. I have no idea how my classroom and the cafeteria were connected in the school I was at in 3rd grade, for example, and I'm struggling to even remember how I got home from school then -- even though I do remember taking the bus to school at that age, and I remember some of the places I had to wait to catch the bus home when I was even younger than that... It's strange what sticks in memory and what doesn't, sometimes.

[–] e0qdk@reddthat.com 17 points 1 week ago

I believe we're now talking about how he murders children

Unfortunately, yes: https://en.wikipedia.org/wiki/2026_Minab_school_airstrike

[–] e0qdk@reddthat.com 1 points 2 weeks ago

I've been using the HTML only version of DuckDuckGo as my default since Google made JS mandatory to run searches. It works ok for most of the simple queries I make. (e.g. looking something up from the Python docs, MDN, etc.) I resort to Google still for the stuff it completely flubs.

Gone from probably 99% Google + 1% of other to maybe something like 95% DDG + 5% other (mostly Google).

[–] e0qdk@reddthat.com 5 points 2 weeks ago (2 children)

I haven't seen compelling enough evidence to believe in the supernatural.

That said, we do seem to be well on our way to engineering ghost-like phenomenon. People will set up LLMs and generative AI systems that imitate dead people, if they haven't already...

No ghosts IRL? No problem! We'll make ghosts!

Thanks Humanity. 🙄️

[–] e0qdk@reddthat.com 8 points 2 weeks ago (3 children)

I thought I was lucky to be in California…fuck me.

You should go read the actual requirements because it's probably the sanest version of this that exists.

Your OS just has to have a way for you to say "I am this age" (bracketed into several groups) at account creation and software is supposed to respect that. Not a fucking face scan or ID or any of that other bullshit that some other idiotic "verification" attempts require.

[–] e0qdk@reddthat.com 7 points 2 weeks ago (3 children)

I just played it recently for the first time. Took me about 50 hours from start to rocket launch (the win condition) in the default, recommended free-play campaign + a few more hours before that to go through the tutorial stages.

Haven't tried the Space Age expansion yet, so not sure what to expect there on time commitment.

[–] e0qdk@reddthat.com 4 points 3 weeks ago

At some point a few years ago, I went to https://www.gutenberg.org/browse/scores/top and just downloaded everything from the list that day that looked interesting and threw them all on an old kindle. They haven't all been winners for me, but a decent number were readable enough.

[–] e0qdk@reddthat.com 56 points 3 weeks ago

Is this a Bayeskisser meme? 😛️

[–] e0qdk@reddthat.com 2 points 3 weeks ago

Yeah, that's what I mean by AI-nese. Formality in Japanese is great point.

Classes won't necessarily help you there as much as you'd like though. Even after 3+ years of them as a kid, I was told on a foreign exchange trip (where my host brother spoke much better English than my Japanese) that his family found it weird how formal I was, and I had to explain that my teachers literally had not taught me how to speak informally yet!

Don't get me started on how frustrating Japanese language curriculum is... I took 7 years of classes (starting in elementary school) and not a single teacher even mentioned the word 君 -- which is in damned near every pop song! (grumble grumble...) I had to learn that word from TVTropes rather than any of my textbooks because after 7 years of study, I still couldn't understand the variations of "you" that are actually used in a typical episode of anime. 🤦️

Can you imagine going through seven years of English classes and no one brings up the word "ma'am" even in passing? Or going through three years of classes without introducing contractions like "can't"?! (rant rant rant... 🙄️)

 

I had some free time this weekend and I've spent some of it trying to learn Go since mlmym seems to be unmaintained and I'd like to try to fix some issues in it. I ran into a stumbling block that took a while to solve and which I had trouble finding relevant search results for. I've got it solved now, but felt like writing this up in case it helps anyone else out.

When running most go commands I tried (e.g. go mod init example/hello or go run hello.go or even something as seemingly innocuous as go doc cmd/compile when a go.mod file exists) the command would hang for a rather long time. In most cases, that was about 20~30 seconds, but in one case -- trying to get it to output the docs about the compile tool -- it took 1 minute and 15 seconds! This was on a relatively fresh Linux Mint install on old, but fairly decent hardware using golang-1.23 (installed from apt).

After the long wait, it would print out go: RLock go.mod: no locks available -- and might or might not do anything else depending on the command. (I did get documentation out after the 1min+ wait, for example.)

Now, there's no good reason I could think of why printing out some documentation or running Hello World should take that long, so I tried looking at what was going on with strace --relative-timestamps go run hello.go > trace.txt 2>&1 and found this in the output file:

0.000045 flock(3, LOCK_SH)         = -1 ENOLCK (No locks available)
25.059805 clock_gettime(CLOCK_MONOTONIC, {tv_sec=3691, tv_nsec=443533733}) = 0

It was hanging on flock for 25 seconds (before calling clock_gettime).

The directory I was running in was from an NFS mount which was using NFSv3 unintentionally. File locking does not work on NFSv3 out of the box. In my case, changing the configuration to allow it to use NFSv4 was the fix I needed. After making the change a clean Hello World build takes ~5 seconds -- and a fraction of a second with cache.

After solving it, I've found out that there are some issues related to this open already (with a different error message -- cmd/go: "RLock …: Function not implemented") and a reply on an old StackOverflow about a similiar issue from one of the developers encouraging people to file a new issue if they can't find a workaround (like I did). For future reference, those links are:

view more: next ›