Badabinski
Alt account of @Badabinski
Just a sweaty nerd interested in software, home automation, emotional issues, and polite discourse about all of the above.
- 0 Posts
- 115 Comments
- 26 days
So uh, OPNSense?
- Badabinski@kbin.earthto
Technology@lemmy.world•Robot dogs priced at $300,000 a piece are now guarding some of the country’s biggest data centers
1 monthSounds like a perfect use-case for some subsonic .300 Blackout rounds.
- Badabinski@kbin.earthto
Linux@lemmy.ml•What's a Linux distro thats breaks the windows mold and is good for testing?
2 monthsIf you want extreme flexibility, use Arch Linux, since it makes it trivial to swap out which window manager you’re using. It sounds like you’re familiar with Linux at this point, so you probably have the requisite knowledge to give Arch a spin.
Niri is supposed to be a pretty interesting WM if you’re looking for something new. I’d be interested to hear why i3 was too much, since I found it to be pretty smooth to pick up.
- Badabinski@kbin.earthto
Technology@lemmy.world•Ubisoft Fires Team Lead For Criticising Stupid Return-To-Office Mandate
2 monthsLethal Company is a fantastic game imo.
- Badabinski@kbin.earthto
Technology@lemmy.world•Electric Flying Cars Now for Sale by California Company Pivotal
3 monthsAs someone posted elsewhere, this is an ultralight aircraft and is therefore forbidden from flying over populated areas.
My girlfriend and I have spent many fun hours playing Lethal Company. It’s a real blast with an insanely high skill ceiling if that’s your thing.
I use a textured sheet for all of my Prusament PLA prints on my Core One and XL, and it’s never given me a hint of trouble. I’m using the Prusa-provided profiles with zero tweaks.
I just hit it with a bunch of 99% IPA while it’s cold and scrub it with paper towels before every single print. I don’t heat it up until all of the IPA has dissolved, since apparently PEI is incompatible with hot IPA. I’ve never washed my sheets with soap, I’ve never applied any sort of bonding agents to them, and I’ve never sanded them.
Maybe you just have a bad print sheet?
- Badabinski@kbin.earthto
Selfhosted@lemmy.world•Postiz v2.11.3 - open source social media scheduling tool! (creation modal refactored)
3 monthsSheesh, it’s 5 GB with
pnpm. Isn’t that meant to deduplicate dependencies?Anywho, it looks like
--prodisn’t being set in the Dockerfile, so dev dependencies are being included. I’m no node dev, but I remember this being something that people needed to set to shrinknode_moduleswithnpm. That might be an easy win.
- 3 months
My public schools had teacher/student ratios up to 35-1. Good old Utah.
- Badabinski@kbin.earthto
Asklemmy@lemmy.ml•Have there been shipwrecks that have been damaged by undersea communication cables (or even discovered because cables were being laid)?
3 monthsPiefed might support what they need at this point. I’ve heard the devs really focused on moderator tooling.
- Badabinski@kbin.earthto
Linux@lemmy.ml•My desktop just shut down, and I'm not sure where to look for logs to figure out why
3 monthsjournalctl -b -1will show you the logs from the previous boot.journalctl -k -b -1will do the same for the kernel logs. If you’ve rebooted again since, just use -2 instead of -1.
I don’t believe that does the same thing either. What if I lock my computer, sleep it, and step away for the day? I haven’t logged out, but my interactive session has ended.
Uptime shows how long the system has been up, not how long one has been interacting with the system.
- Badabinski@kbin.earthto
Technology@lemmy.world•After viral interview, Palantir launches neurodivergent fellowship
4 monthsI seem to recall hearing that there were genetic/epigenetic components that predispose some folks to those personality disorders. I’m not disagreeing with you and I don’t know if the research I saw was corroborated. I just think it’s an interesting idea that you’re not born with NPD, but you can be more vulnerable to developing it.
- 4 months
It does! The ease of exporting/importing mod packs as codes is part of what really sold me on it. r2modman’s UX around that task leaves something to be desired imo
- 4 months
If you’re using r2modman, you should check out Gale. It’s basically a drop-in replacement that’s WAY faster and has far better UX in my opinion.
If they stop zigbee2mqtt from automagically updating their bulbs then they’re dead to me.
If you want more help with Bash in the future, this is the best resource I’ve found in 13 years of writing bash professionally: https://mywiki.wooledge.org/EnglishFrontPage
Bash FAQs and pitfalls are the primary sections to look at there.







while I appreciate that the author mentions how weird this is, nobody is going to learn all the caveats correctly. Don’t use
set -e. Don’t useset -e. Don’t useset -e. It’s a shit ass broken ass fucked feature that half of nobody understands well. Here’s a great wiki page explaining why it’s trash: https://mywiki.wooledge.org/BashFAQ/105People like Go, and Go requires you to manually and stupidly handle every possible error case. Why not do the same for shell? It’s really quite easy:
#!/usr/bin/env bash echoerr() { echo "$@" 1>&2; } die() { message="$1"; shift exit_code="${1:-1}" echoerr "$message" exit "$exit_code" } temp_dir="$HOME/tmp" mkdir -p "$temp_dir" || die "Failed to make persistent temporary dir $temp_dir" lc_dir="$(mktemp -d -p "$temp_dir")" || die "Failed to make target dir in $temp_dir"Look at that, descriptive error messages! And it doesn’t depend on a shell feature that is inconsistent between versions with no good documentation about all of the fucked up caveats.