Just a geek, finding my way in the fediverse.

  • 10 Posts
  • 357 Comments
Joined 3 years ago
cake
Cake day: June 11th, 2023

help-circle
  • The LLMs made search engines near useless by publishing mountains of slop - it’s almost all noise and no signal.

    I frequently get top three search results for things like “how to sharpen an electric razor” where the article is 5 paragraphs of garbage and then “step one, remove razor, step two sharpen razor, step three enjoy your sharp razor!” … Then another 5 paragraphs of pointless slop.

    Fucking infuriating.












  • I’m not who you asked but… I’ve never heard much good about jackery and they’re comparatively super expensive. Though, admittedly I haven’t price compared in several years. When I was looking, jackery was still using lipo batteries instead of the lifepo4, while being more expensive, so it was easy to discard them. Surely they’re using the newer chemistries now…

    You might check into ecoflow or bluetti.

    Edit: I have quite a bit of bluetti stuff and haven’t had any problems except with a folding 220w solar panel that was “free” with a battery purchase. It works, but not remotely close to spec even in ideal circumstances… Might be a reason they were giving them away : )

    The batteries/inverters have all done well though the passive drain is significant.






  • I’m going to claim this one wasn’t entirely my fault and should have been coded better… But I ran it.

    I ran a script that expected to run from a bin directory, cd/chdir to a input file directory, then do a sed on every file to replace windows line endings to UNIX/Linux line endings. After that it would start loading and processing them.

    The problem was, if the directory it tried to change to didn’t exist, it silently continued and ran it on the current directory… You know, the bin directory… With all the compiled C binaries.

    So at about 16:30 on a Friday, 30 min before we started our huge weekend builds, I nuked about 70% of the binaries by randomly replacing all bytes that looked like crlf with lf. Turns out binaries didn’t like that.

    Good times.