ThanksForAllTheFish

u/ThanksForAllTheFish@sh.itjust.works
4 posts · 76 comments

Recent posts

Recent comments

Overall, Coke is most affordable compared with minimum wage in England, especially when Coke Zero is on offer, then Helsinki; in the US it takes the most minimum-wage work to buy a litre, and because regular and sugar-free cost exactly the same, there’s no price incentive at all to choose the sugar-free one.

In England for a 24 pack (330ml?), sugar is £15 (€17.5, $20 USD), sugar free is £12 with a deal for £8.50 (€10, $11.5 USD), no deals for the sugar one! £12.71 is minimum wage here (€14.86, $17.21 USD). In US Walmart I see 24 pack of sugar and non sugar for $15.37 USD (12 OZx24) and US minimum wage is $7.25 USD (£5.40, €6.30).

Location and drink EUR per litre GBP per litre USD per litre
Helsinki — regular Coke €2.46 £2.10 $2.85
Helsinki — Coke Zero €1.96 £1.67 $2.26
England — regular Coke €2.22 £1.89 $2.56
England — Coke Zero, normal price €1.77 £1.52 $2.05
England — Coke Zero, offer price €1.26 £1.07 $1.45
US Walmart — regular Coke €1.56 £1.33 $1.80
US Walmart — Coke Zero €1.56 £1.33 $1.80
Location and wage benchmark EUR/hour GBP/hour USD/hour Work for 1 litre of regular Coke Work for 1 litre of Coke Zero
Helsinki — first-year supermarket minimum €11.61 £9.92 $13.43 12.7 minutes 10.1 minutes
UK — adult minimum wage €14.87 £12.71 $17.20 8.9 minutes 7.2 minutes normally; 5.1 on offer
US — federal minimum wage €6.27 £5.36 $7.25 14.9 minutes 14.9 minutes

You must get this sort of thing a lot, but why is the palace of Westminster missing, imo it's second in impressiveness only to Buckingham palace and it's fairly world famous. https://en.wikipedia.org/wiki/Palace_of_Westminster

And the palace of Whitehall is listed as number 7 in England, but I've never heard of it, it's mostly destroyed, and what's left is not that impressive. If it's on historical value then fair enough, but still would have thought that Westminster makes the cut.

on Fafo · c/science_memes · 16 pts · 64d

I block DOGE, Trump and Elongated Muskrat as keywords, because Lemmy sometimes thinks it's AmeriLemmy, and I just don't care. But the blocks don't work on comments or pictures. Using Voyager app, anyone have any ideas?

Reticulum is peer to peer via any method, including the internet, it's more a protocol than a meshnet. Has text based websites too btw. Mostly chat apps and forums, as well as some blogs and libraries. It's pretty neat, but takes a little setting up and is fairly niche right now. Feels like the original internet culture, people building things just because they can and building communities also.

Meshtastic is definitely also not too slow and is pure LoRa, it's just a bit lossy and has range issues in busy networks. You can do voice chat over it if you have strong enough links.

Weird question, not a dig, in Southern France they have metal or wooden shutters on all the windows. Is that something they have in the south of US? It makes a massive difference and takes zero electricity, then you just need an AC in your bedroom to go to sleep. Probably doesn't work as well on wood houses that trap the heat and heat quickly though?

Mastodon is a social media app, a bit like Twitter, but instead of one company owning the whole thing, it is made of lots of smaller communities that can talk to each other. You join one community, but you can still follow and talk to people on other communities, a bit like how someone with a Gmail address can email someone with an Outlook address.

on Motivation · c/adhd · 1 pts · 117d

Seriously, look into the time blindness trait, I'm fully specced into it and it's going terribly.

Ignore me if I'm being stupid, but could you just not give it internet? A lot of TVs have high spec CPU/APU these days and complicated firmware, surely ability to update the firmware for these is necessary for patches/feature improvements. They probably think it's silly not to include software if they can, but I agree the software experience is often a bit of a let down. LGs been good, but admittedly I block all telemetry on my network so wouldn't notice any downsides.

on Finally got rid of it · c/buyeuropean · 2 pts · 139d

I buy from refurbishers and modders. It's more expensive, but got some fully refurbished and tested PS2 controllers this way.

on art of the deal · c/peoplemastodon · 5 pts · 151d

yeah the em dash thing is absolute moron bait

like wow mate, you saw a long dash. call the fucking lab. some people are just punctuation goblins and have been since long before the slop machines turned up

  • ChatGPT generated comment, people need to know that they wouldn't be able to spot a well generated bit of text as AI these days. It's dangerous thinking they can. Was a nice touch when it called itself the slop machine though.

Scientific studies suggest that people usually cannot reliably tell whether a piece of text was written by AI from style alone: accuracy is often only slightly above chance, varies a lot by genre, and drops further for more formal or scientific writing. For example, one 2024 study found average accuracy of about 57% for texts overall, while a 2024 teacher study found that even novice and experienced teachers could not reliably distinguish ChatGPT essays from student essays and were often overconfident in their judgments; likewise, a study of research abstracts found reviewers were largely unsuccessful, with only 38.9% positive identification. There is some evidence that people can improve with explicit feedback and training, but the overall research points to the same conclusion: humans may sometimes pick up clues, yet unaided judgments about whether text is AI-written are generally weak and unreliable, especially when the writing is competent and domain-appropriate. - ChatGPT

True, in this case trash-cli is the sane command though, it has a much different job than rm. One is remove forever no take backs, the other is more mark for deletion. It's good to have both options imo. Theres a lot of low level interfaces that are dangerous, if they're not the correct tool for the job then they don't have to be used. Trying to make every low level tool safe for all users just leads to a lot of unintended consequences and inefficiencies. Kill or IP address del can be just as bad, but netplan try or similar also exist.

I understand that they were intending to unpack from / and they unpacked from /home/ instead. I'm just arguing that the unpack was already a potentially dangerous action, especially if it had the potential to overwrite any system file on the drive. It's in the category of "don't run stuff unless you are certain of what it will do". For this reason it would make sense to have some way of checking it was correct before running it. Any rms to clean up files will need similar steps before running as well. Yes this is slower, but would argue deleting /etc by mistake and fixing it is slower still.

I'm suggesting 3 things:

  • Confirm the contents of the tar
  • Confirm where you want to extract the contents
  • Have backups in case this goes wrong somehow

Check the contents:

  • use "tar t'' to print the contents before extracting, this lists all the files in the tar without extracting the contents. Read the output and check you are happy with it

Confirm where:

  • run pwd first, or specify "-C '/output-place/'" during extraction, to prevent output to the wrong folder

Have backups:

  • Assume this potentially dangerous process of extracting to /etc (you know this because you checked) may break some critical files there, so make sure this directory is properly backed up first, and check these backups are current.

I'm not suggesting that everyone knows they should do this. But I'm saying that problems are only avoidable by being extra careful. And with experience people build a knowledge of what may be dangerous and how to prevent that danger. If pwd is /, be extra careful, typos here may have greater consequences. Always type the full path, always use tab completion and use "trash-cli" instead of rm would be ways to make rm safer.

If you're going to be overwriting system files as root, or deleting files without checking, I would argue that's where the error happened. If they want to do this casually without checking first, they have to accept it may cause problems or loss of data.

on /etc? Never heard of her. · c/linuxmemes · -2 pts · 182d

Could make one archive intended to be unpacked from /etc/ and one archive that's intended to be unpacked from /home/Alice/ , that way they wouldn't need to be root for the user bit, and there would never be an etc directory to delete. And if they run tar test (t) and pwd first, they could check the intended actions were correct before running the full tar. Some tools can be dangerous, so the user should be aware, and have safety measures.

The biggest flaw with cars is when they crash. When I crash my car due to user error, because I made a small mistake, this proves that cars are dangerous. Some other vehicles like planes get around this by only allowing trusted users to do dangerous actions, why can't cars be more like planes? /s

Always backup important data, always have the ability to restore your backups. If rm doesn't get it, ransomware or a bad/old drive will.

A sysadmin deleting /bin is annoying, but it shouldn't take them more than a few mins to get a fresh copy from a backup or a donor machine. Or to just be more careful instead.

Kind of true, but it's more like an ant scent marking. They know this is a place that's safe (rats have been here). With good absorbent natural substrate in the cage, and wiping down their free roam area if needed, it's mostly unnoticeable. I like to compare it to a person needing to change their t-shirt every day, probably not a deal-breaker for interacting, unless you don't clean for way too long.