(Seriously what would you even have multiple computers do.)
Setup k3s (pronounces “kubes”) on each computer as a node. Run scalable software - a website, database, some LDAP setup for users, maybe.
Check out /c/[email protected] for inspiration :D
(Seriously what would you even have multiple computers do.)
Setup k3s (pronounces “kubes”) on each computer as a node. Run scalable software - a website, database, some LDAP setup for users, maybe.
Check out /c/[email protected] for inspiration :D
Would a commercial with Jesus on the cross saying he is thirsty and having a Roman Soldier pass him an ice cold Coca Cola be better?
I tried it using Sora, but “This content can’t be shown for now. We’re still developing how we evaluate which content conflicts with our policies. Think we got it wrong? Let us know.”
This was the prompt:
Give me a Coca Cola commercial where Jesus has been nailed to a cross, and says “I’m thirsty”, after which a Roman Soldier passes him an ice cold Coca Cola.
I tried replacing “Jesus” with a man, but no dice :(
Christmas celebrations
Christmas is more of a cultural celebration than a Christian one, and thus not political.
I’m atheist, but I still celebrate Christmas, because it’s a good excuse to gather friends and family, and have some fun together.
Pride is a political movement - or did they not fight for the rights of LGBT people? Flags are inherently political. Flying a flag signals allegiance and identity, which are political at their core.
This makes pride month political.
Being Lesbian/Gay/Bi/Transgender isn’t political in and of itself, but movements are.
I now have a stack of Thinkpads laying around. Right next to my two RPis 😂
big yellow skips
A trash container? I’m neither Bri’ish, or 'Murican, so I have no idea 😂
I think I’ve seen a video showcasing this tactic. Dude with a Syringe just running around, picking up his teammates as soon as they downed. It was great :D
Remember when the $2.50 Oblivion horse armor DLC was considered to be ridiculous?
Blizzard now sells mounts at the price of 90 EUR, ~1.5x the base price of the game itself…
TBF, it’s a useful mount, but 90 fucking Euros…
You can see here my theme with autodetect of Python (I work a lot in Python). The orange bit is the error code returned by the previous command. Git is supported as well, and looks pretty much like powerline-gitstatus
, as you’ll read about below.
First, lets make Bash a little better:
# throw this in your `~/.bashrc`, and then `source ~/.bashrc` for it to take effect, or just restart your terminal.
# == shopts ==
# https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html
shopt -s autocd # cd into folder without cd, so 'dotfiles' will cd into the folder
shopt -s cdspell # attempt spelling correcting on folders
shopt -s direxpand # expand a partial dir name
shopt -s checkjobs # stop shell from exit when there's jobs running
shopt -s dirspell # attempt spelling correcting on folders
shopt -s expand_aliases # aliases are expanded
shopt -s histappend # append to the history file, don't overwrite it
shopt -s histreedit # lets your re-edit old executed command
shopt -s histverify # I'm confused.
shopt -s hostcomplete # performs completion when a word contains an '@'
shopt -s cmdhist # save multiple-line command in single history entry
shopt -u lithist # multi-lines are saved with embedded newlines rather than semicolons; explictly unset
shopt -s checkwinsize # update LINES and COLUMNS to fit output
Autocd is a big one here, cdspell and direxpand as well. Ensures I don’t need Zsh for the same experience. With Zsh I’d just get annoyed by small stuff like having to wrap things in quotes (I think pip install some_lib[some_extra]
works in Bash, but not in Zsh And Ohmyzsh just felt it kept slowing things down, so I actually dislike Zsh ^(please don’t kill me) >_>
Anyway, I based this on powerline-status
+ powerline-gitstatus
(if you want to use that instead (no, my config doesn’t work), just sudo apt install powerline-status powerline-gitstatus
- DO NOT USE THE PYPI
VERSION (it’s too outdated, and a pain to install)) because I had issues with finding the right combination of my configuration and which libraries to install for bash - there are too damn many: powerline-bash, powerline-status, powerline-rs, powerline-go, etc, etc. And they all do things just that little bit different.
Anyway, here is my ~/.config/starship.toml
(archive1, archive2). It’s a little long, and can probably be shortered, but that might break something again, and I’m not willing to risk anything right now.
https://gist.github.com/NostraDavid/675a0706716b98816fd2809560ffe42c
Also make sure it has a decent SSD
That means any SATA SSD that can pull 500MB/s. No need to try to stick an m.2 7000GB/s SSD into such a weak laptop. Not trying to poop on his hardware - just staying realistic for when you look for an SSD (presuming he does not already have one).
After 10 years, I still remember switching to an SSD from a classic HDD. Probably the biggest hardware upgrade I’ve ever done.
The technical requirements for 11 were reasonable
My 8700k (from 2018) disagrees.
I just dug a little deeper. Looks like the site is 95% George Whittaker since April 2023, which is a month after GPT-4 was released.
The site literally turned into AI slop since then. Good job, Slashdot. /s
I’m so happy it’s not Rick Astley’s song. I 100% expected you to fool us.
NPM
Nginx-Proxy-Manager. Got it.
I didn’t read the parent comment well enough and was wondering what the Node Package Manager had to do with anything 😂
BlueSky actually is federated, AFAIK: https://docs.bsky.app/docs/advanced-guides/federation-architecture
It does use its own protocol (AT instead of ActivityPub)
A better keyboard for tablets. Can’t “swype” with the current one, and the default settings feel weird. Made me not like Linux on my tablet. It’s not bad, but it’s simply not as good as on Windows.
Dang, finally! Alas, I’m off to bed, but I’ll have to try it out tomorrow to see what the hype was all about.
Stow has been pretty amazing for my dotfiles
repo. Being able to just stow adapt <folder>
and git reset --hard
to overwrite an existing config on a new machine is just so nice.
I’ll be sure to check this out!
I really like those new icons - Yeah, they’re kinda flat, but they actually have colour.
They’ve basically taken peak 2005 icons, and improved on them.
Very nice.
Uh, just yesterday. Installed NixOS (with KDE) because I learned Debian at work, but am really missing the ability to track what I’ve installed via configuration. I like the idea of dotfiles in a repo, but want a bit more control like that for my OS.
Context: I’m a data engineer that writes Python. Python has
pyproject.toml
files (toml ~= ini files) where you can specify which libraries you want to use, defining which version you minimally, maximally, or just specifically want. And I wished that setup existed for Debian as well, but it doesn’t. So after searching I found that NixOS is pretty much the closest thing. Windows 10 is EOL soon enough, so might as well switch beforehand and not wait until the last second.