

Yup! Though that’s Adam Sandler doing the bit in the Rob Schneider movie, the original bit on SNL was done by Schneider (originally in 1993 i think). 🙂


Yup! Though that’s Adam Sandler doing the bit in the Rob Schneider movie, the original bit on SNL was done by Schneider (originally in 1993 i think). 🙂


Movie quote? I recognize it from a recurring Rob Schneider character on SNL. What movie was it in?


Googled earned about $325B in 2024. $30M is about .009% of that. If you earn $50K per year, it would be like you had to pay $4.50 for committing a crime.
I use Tesseract, which is fantastic. Be wary, though: the developer recently put the project in maintenance mode and swore off the fediverse, then i guess changed his mind and continues to develop it - it’s certainly possible it could happen again.


I have a numebr of backup systems going on, but if i take “cloud” to mean “offsite” then my sution to that is a proxmox backup server set up in my home (great for proxmox PVEs but you can back up anything to them) and my friend 3000 miles away also has one in his home. We each set up sync jobs so our local backups are also stored on the remote proxmox backup server.


Well, no I’m not. You’re right. I miscalculated how much data was needed for video streaming. Even multiple simultaneous hi-res streams should stream fine with 1GbE.
But as an abstracted idea, you might want high throughput within your LAN for some reaosn, even if an ISP doesn’t offer 10Gbps to your house.


E.g., NAS on my LAN, especially for streaming high res video to devices in my house.


I’ve had canon, HP, and brother inkjets - dislike them all (though hate HP as a company worse than the others.). Finally I bought a Xerox color laser printer (and scanner, etc) and really like it. Part of the enshittification is the world of inkjet ink, but part is also the companies.
It is in my .bashrc, but any delay is not noticeable.
Starships looks very interesting! I’m going to check it out. Thanks!
Well, yeah, but it’s git: https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh
My thinking is that I trust git on my computer, so I trust downloading from their repo.
But you’re right. I should revisit this and see if it’s even necessary.
Mine shows the user and host, git commit and branch, docker context and directory, color coded based on status of git:
[root@server001|G:19e526e@(master)|D:myContext|currentDir] $
## PS1 adapted from https://gist.github.com/xenji/2292341
ps1_generator() {
# docker context inspect --format '{{ .Name }}'
Time12h="\T"; Time12a="\@"; ShortHost="\h"; Username="\u";
PathShort="\W"; PathFull="\w"; NewLine="\n"; Jobs="\j";
test -f ~/.config/git-prompt.sh || \
curl -L https://raw.github.com/git/git/master/contrib/compl
etion/git-prompt.sh \
> ~/.config/git-prompt.sh
source ~/.config/git-prompt.sh
Color_Off="\[\033[0m\]"; IBlack="\[\033[0;90m\]"; BWhite="\[\03
3[1;37m\]"; BGreen="\[\033[1;32m\]";
BIRed="\[\033[1;91m\]"; BIWhite="\[\033[1;97m\]"; BIPurple="\[\
033[1;95m\]"; BIBlue="\[\033[1;94m\]";
GIT_PS1='$(git branch &>/dev/null;\
if [ $? -eq 0 ]; then \
echo "$(echo `git status` | \grep "nothing to commit" > /dev/null
2>&1; \
DIRTY="$?"; \
HEADREV=`git log --pretty=%h -n 1`; \
echo -n "|G:'${BWhite}'$HEADREV"; \
if [ "$DIRTY" -eq "0" ]; then \
# @4 - Clean repository - nothing to commit
echo "@'${BGreen}'"$(__git_ps1 "(%s)"); \
else \
# @5 - Changes to working tree
echo "'${BIBlue}'@'${BIRed}'"$(__git_ps1 "{%s}"); \
fi)'${Color_Off}'"; \
else \
# @2 - Prompt when not in GIT repo
echo ""; \
fi)'
if docker context inspect >/dev/null 2>&1; then
DOCKER_PS1='|D:'${BIBlue}'$(docker context inspect --format
"{{ .Name }}")'${Color_Off}
fi
USER_PS1=${BIPurple}${Username}'@'${ShortHost}${Color_Off}
PATH_PS1='|'${BWhite}${PathShort}${Color_Off}
export PS1='['${USER_PS1}${GIT_PS1}${DOCKER_PS1}${PATH_PS1}'] $
'
}
ps1_generator && unset -f ps1_generator


I don’t have any experience with Atuin, but I use and love hstr for similar features.


Congrats! It’s fun and empowering to make your own tools, isn’t it?
When I experienced the same symptoms, i eventually found out if was because ROCm didn’t support having an AMD GPU as well as an AMD iGPU (iGPU is an integrated GPU, on the motherboard). Once i disabled the iGPU, those symptoms stopped.
l don’t remember how i disabled the iGPU. Might have been in the bios settings, might have been a kernel parameteretc in
/default/grub.If it doesn’t fix your issue, you can just re-enable the iGPU.