e0qdk

joined 2 years ago
[–] e0qdk@reddthat.com 1 points 7 hours ago (1 children)

There's also a 27th (non-alphabetical) "ending" that's quite different from all the others. I think it was originally part of a DLC but it just came with the version on Steam when I played the game ~5 years ago.

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

Adding to this, the money to repay bonds has to come from somewhere -- usually taxes. So, if a government issues a bond it is committing to collecting the amount of money for the bond-plus-interest from the populace. It's the government taking out a loan, essentially, on the basis that it can use long term tax revenue for repayment.

Why not just use taxes directly then? Sometimes you need a lot of money for a specific project and it would take too long to collect that money through taxes at a rate that is reasonably payable by the populace over a short enough time frame.

Suppose you need a million dollars to cover the cost of replacing some infrastructure -- like a critical pipeline for your town's drinking water -- but you only have 100 people in your small town. That's $10,000 per person if the cost is split evenly. The people in town may not have that much money to pay all at once, but getting the pipe fixed so they have water to drink is really important. So, the government gets a loan (i.e. issues a bond) and pays out the amount plus interest over a long period of time. Adding 5% interest and breaking the payments up over a 30 year term would require everyone in that hypothetical town to need to pay about $30/mo more in taxes to cover the cost. That's probably a lot more politically feasible to actually collect than trying to get everyone to pitch in $10k right now.

[–] e0qdk@reddthat.com 10 points 6 days ago (1 children)

Bill's PC. As in Bill Gates, probably. You're lucky it didn't get overrun with malware.

(No idea who/what inspired the Japanese name マサキ though.)

[–] e0qdk@reddthat.com 5 points 1 week 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 2 weeks 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 32 points 2 weeks 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 2 weeks 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 2 weeks 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 3 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 3 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 3 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 3 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.

 

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 ›