• 0 Posts
  • 198 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle
  • You can save quite a bit by getting a refurbished Pixel - looks like the cheapest “Google certified” option (so it comes with a 1-year warranty) is a 6a for $250, which is nearly half off MSRP. I’ve been using my 6a since launch, so it’s been going for 3 years now and I have no desire to upgrade.

    You can definitely get cheaper smartphones, but $250 for a 6a feels like a pretty big bang for your buck.





  • Yeah I find LLMs most useful to basically read the docs for me and provide it’s own sample/pseudocode. If it goes off the rails, I have to guide it back myself using natural language. Even then though it’s still just a tool that gets me going in the right direction, or helps me consider alternative solutions buried in the docs that I might have skimmed over. Rarely does it produce code that I can actually use in my project.




  • 🙄🙄🙄

    presidents don’t have unilateral power, and members of the president’s party can do and say things different from the president

    This is how American politics has worked for hundreds of years. Yes, the president (really the executive branch) holds a lot of power. So do the other two branches of government. One branch can’t really do anything without working with the other two, which means that compromise is a frequent theme throughout the history of American politics.







  • Does victorinox offer sharpening services? Some knife manufacturers have programs where you can either send your knife in or take it in to a store and have it professionally sharpened.

    If your blade is losing its edge quickly, it probably needs to have a new edge put on it with an actual sharpening, v rather than just the touch up it gets from a honing rod.


  • I just replaced my windshield wipers last night and it was a nightmare. The wipers I got are supposed to be universal, which means the little plastic bit that connects to the wiper arms has a bunch of little sub parts that you’re supposed to remove based on what wiper arm connection your car uses. Well, considering I’m not well versed in modern wiper arm connection standards, and I’m also stubborn and don’t think you should need to dig out your car manual just to change your fucking wipers, coupled with the fact that the instructions that came with the wipers are just 6 wordless diagrams vaguely showing you what bits to remove based on which esoteric wiper style your car uses, I struggled with those sons of bitches for like 20 minutes in below freezing weather.



  • Doing something distro-specific in an install script for a single binary seems a bit overcomplicated to me, and definitely not something I want to blindly pipe into my shell.

    The bun install script in this post determines what platform you’re on, defines a bunch of logging convenience functions, downloads the latest bun release zip file from GitHub, extracts and manually places the binary in the right spot, then determines what shell you’re using and installs autocompletion scripts.

    Like, c’mon. That’s a shitload of unnecessary stuff to ask the user to blindly pipe into their shell, all of which could be avoided by putting a couple sentences into a readme. Bare minimum, that script should just be checked into their git repo and documented in their Readme/user docs, but they shouldn’t encourage anyone to pipe it into their shell.