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
- 656 Comments
Badabinski@kbin.earthto
Books@lemmy.world•What book(s) are you currently reading or listening to? March 31
3·17 天前A book which resembles my favorite series ever, and which is endorsed by one of my other favorite authors? That’s a hell of an endorsement. Final Architecture was a DNF for me, but I’ve enjoyed basically all of Adrian Tchaikovsky’s other books.
Badabinski@kbin.earthto
Books@lemmy.world•What book(s) are you currently reading or listening to? March 31
3·17 天前This book made me feel so much dread that I couldn’t even finish it.
Badabinski@kbin.earthto
Technology@lemmy.world•The US bans all new foreign-made network routers
7·25 天前So uh, OPNSense?
Badabinski@kbin.earthto
Not The Onion@lemmy.world•World-first as Rathlin Island is declared ferret free
3·25 天前I’m here for it.
Badabinski@kbin.earthto
Ask Lemmy@lemmy.world•When do you think that AI chatbot/image generator/etc use will significantly decrease?
2·27 天前Ed Zitron seemed to estimate that it was probably 4-5x the current going rate, so a $20 ChatGPT subscriber likely costs OpenAI $80-100.
“sucundus dick” oh my god I love it
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
9·1 个月前Sounds like a perfect use-case for some subsonic .300 Blackout rounds.
These other responses are annoying. This looks really cool, and I hope that it works well for you and your friends! We definitely need good discord alternatives ASAP, and more options are better imo.
One cool feature would be some sort of official support for interop/bridging to other services. That might help to boost adoption and would make the “why not just contribute to Y” people be quiet.
I mean, just use any stable distro and you can live that life. Arch is good for its own reasons precisely because it’s this way.
Badabinski@kbin.earthto
Lemmy Shitpost@lemmy.world•Causes of death, or track list for latest black metal album?
2·1 个月前According to Wikipedia, it’s known in modern times as mycobacterial cervical lymphadenitis.
The disease mycobacterial cervical lymphadenitis, also known historically as scrofula and the king’s evil, involves a lymphadenitis of the cervical (neck) lymph nodes associated with tuberculosis as well as nontuberculous (atypical) mycobacteria such as Mycobacterium marinum.
As for what lymphadenitis is?
Lymphadenopathy or adenopathy is a disease of the lymph nodes, in which they are abnormal in size or consistency. Lymphadenopathy of an inflammatory type (the most common type) is lymphadenitis.
The Wikipedia article for king’s disease has a picture if you’re curious, although it’s a bit gross.
Badabinski@kbin.earthto
Gaming@lemmy.zip•Ubuntu and Fedora devs comment on California's new Digital Age Assurance Act
4·1 个月前Yeah, it’s the only solution that doesn’t directly contribute to the construction of the Torment Nexus. Just have a simple fucking OS-level flag for a user. The browser can then send a header or something saying “I’m an adult” if the flag is set to adult.
I need to know, what does RCWA stand for? I’ve searched for RCWA, RWCA, and RCAW, but nothing comes up that makes sense in this context. It’s driving me a bit crazy.
Or just do this:
ZZI find it to be a bit faster than
:x
Badabinski@kbin.earthto
News@lemmy.world•Wasatch County GOP chair charged with felony child abuse
2·2 个月前It’s such a beautiful place, but it’s cursed with such ugly and incompetent politics. I’m hoping the maps get redrawn here so we can get some less shitty people in power.
Badabinski@kbin.earthto
News@lemmy.world•Wasatch County GOP chair charged with felony child abuse
17·2 个月前My state always makes the news for the most fucked up shit.
Badabinski@kbin.earthto
linuxmemes@lemmy.world•what kind of a n00b uses a text editor to edit text
8·2 个月前Oh, I use vim, I don’t run an OS that can run Notepad++ natively. I meant using HEREDOCs as the responding anon suggested. I’ve absolutely done that on systems that lack a text editor.
Badabinski@kbin.earthto
linuxmemes@lemmy.world•what kind of a n00b uses a text editor to edit text
11·2 个月前It’s like this meme was made for me. GET OUT OF MY HEAD, ANON.


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.