e0qdk

joined 2 years ago
[–] [email protected] 0 points 3 days ago (2 children)

I went back through Wikipedia's current events from June 2025 and put together a rough timeline:

  • 2025-06-12: IAEA declares Iran in breach of its nuclear non-proliferation obligations.
  • 2025-06-13: Israel attacks Iran targeting nuclear facilities and senior government officials. Iran retaliates with missles and drones.
  • 2025-06-17: Donald Trump calls for Iran's unconditional surrender. Iran refuses.
  • 2025-06-22: The US announces it has bombed multiple nuclear facilities in Iran -- particularly including sites at Fordow and Natanz which are deep underground -- using its unusual ~30000 pound (~12000 kg) Massive Ordnance Penetrator bombs. Iran retaliates by firing missles at a US base in Qatar and by voting to close the Strait of Hormuz.
  • 2025-06-24: The US and Qatar mediate a ceasefire between Israel and Iran. Donald Trump says Israel and Iran "don't know what the fuck they are doing" as the countries continue fighting initially. It seems to be holding so far after a rocky start though?
[–] [email protected] 5 points 1 week ago (3 children)

Heliocentric orbit like this:

More info:

[–] [email protected] 0 points 2 weeks ago

I'm not sure how to do what you want with customizing Mint directly, but a possibly simpler alternative solution is to just send two clearly distinguishable USB drives (e.g. label them "1" and "2" with a label maker or get two drives with very different colors) and tell him to install (unmodified) Mint from the first and then have him run a program you provide on the second after that's done to make the other changes.

[–] [email protected] 0 points 2 weeks ago (1 children)
[–] [email protected] 1 points 4 weeks ago

You know, I've gotten job offers in Apache logs, but no one's ever asked me out through referer/user-agent spam...

 

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:

[–] [email protected] 0 points 3 months ago (1 children)
[–] [email protected] 0 points 3 months ago (1 children)
 

What's in the box? WHAT'S IN THE BOX!?

(will post my own drawing as a comment after I get replies from others -- looking forward to seeing what you all come up with!)

view more: next ›