$ head -n 1 /var/log/pacman.log
[2011-07-07 11:19] installed filesystem (2011.04-1)
It’s not toooo far into the future.
It would be crazy … 20 years without reinstalling once … phew. 🥴


commit ea9eaaf3d3977701dcb84b927c77c4f921bdbf43
Author: sorenpeter <sorenpeter@noreply@mills.io>
Date: Sat Sep 24 23:34:07 2022 +0000
Replacing Pico.css with Simple.css (#990)
Replacing pico.css with simple.css along with some small UI changes
hello
"hello world"
hello AND world
hello OR world
hello NOT world
"this is a phrase"
^R
and using fuzzy search which if you type fast you sometimes get wrong 😑
Easylang story
https://easylang.online/apps/story.html
y
on a daily basis.Apart from that, aborting the removal should probably terminate the function with a non-zero exit code, something like
return 1
.
https://www.gatesnotes.com/home/home-page-topic/reader/microsoft-original-source-code


dkv rm ...
to make sure I never ever have this so easily accessible in my shell history (^R
):
$ awk '
/^#/ { ts = $0; next }
/^dkv rm/ { next }
{ if (ts) print ts; ts=""; print }
' ~/.bash_history > ~/.bash_history.tmp && mv ~/.bash_history.tmp ~/.bash_history && history -r
alias dkv="docker rm"
to be a much safer shell function:
dkv() {
if [[ "$1" == "rm" && -n "$2" ]]; then
read -r -p "Are you sure you want to delete volume '$2'? [Y/n] " confirm
confirm=${confirm:-Y}
if [[ "$confirm" =~ ^[Yy]$ ]]; then
# Disable history
set +o history
# Delete the volume
docker volume rm "$2"
# Re-enable history
set -o history
else
echo "Aborted."
fi
else
docker volume "$@"
fi
}
https://elenacross7.medium.com/%EF%B8%8F-the-s-in-mcp-stands-for-security-91407b33ed6b
A primeira semana de debates vai ser assim:
2a (07):
AD x CDU - 21h - TVI
CH x PAN - 22h - RTP3
3a (08):
PS x BE - 21h - SIC
CH x L - 22h - RTP3
4a (09):
CDU x L - 18h - SICN
5a (10):
PS x IL - 21h - RTP
BE x PAN - 22h - CNN
6a (11):
AD x L - 21h - TVI
IL x CDU - 22h - SICN
Sab (12):
PS x PAN - 21h - TVI
BE x CDU - 22h - RTP3
Dom (13):
AD x PAN - 21h - SIC
IL x L - 22h - CNN
Já há alguma hashtag decidida para os mastobitaites sobre isto?
#ptpol
A primeira semana de debates vai ser assim:
2a (07):
AD x CDU - 21h - TVI
CH x PAN - 22h - RTP3
3a (08):
PS x BE - 21h - SIC
CH x L - 22h - RTP3
4a (09):
CDU x L - 18h - SICN
5a (10):
PS x IL - 21h - RTP
BE x PAN - 22h - CNN
6a (11):
AD x L - 21h - TVI
IL x CDU - 22h - SICN
Sab (12):
PS x PAN - 21h - TVI
BE x CDU - 22h - RTP3
Dom (13):
AD x PAN - 21h - SIC
IL x L - 22h - CNN
Já há alguma hashtag decidida para os mastobitaites sobre isto?
#ptpol
Sure, access attacks are worrisome, but the dangers and attack surfaces on online voting are a lot bigger (and discrete) than that. Assuming that online voting is secure and the only problem is having access to it is dangerous, especially in a country facing the problems Ukraine is living, and attacks from Russia that has a track record in digital attacks and electoral influence.
#Ukraine #Russia #onlinevoting #onlinevote
Sure, access attacks are worrisome, but the dangers and attack surfaces on online voting are a lot bigger (and discrete) than that. Assuming that online voting is secure and the only problem is having access to it is dangerous, especially in a country facing the problems Ukraine is living, and attacks from Russia that has a track record in digital attacks and electoral influence.
#Ukraine #Russia #onlinevoting #onlinevote
https://www.rtp.pt/noticias/economia/ihru-deixa-candidatos-a-espera-do-programa-porta-65-durante-anos_v1646086
Já sabem em quem votar para resolver os problemas na #habitação?
#ptpol #Porta65
https://www.rtp.pt/noticias/economia/ihru-deixa-candidatos-a-espera-do-programa-porta-65-durante-anos_v1646086
Já sabem em quem votar para resolver os problemas na #habitação?
#ptpol #Porta65
Lessons from open source in the Mexican government
https://lwn.net/Articles/1013776/

Since I'm only interested in the
url
metadata field for hashing, I do not keep any comments or metadata for that matter, just the messages themselves. The last time I fetched was probably some time yesterday evening (UTC+2). I cannot tell exactly, because the recorded last fetch timestamp has been overridden with today's by now.I dumped my new SQLite cache into: https://lyse.isobeef.org/tmp/backup.tar.gz This time maybe even correctly, if you're lucky. I'm not entirely sure. It took me a few attempts (date and time were separated by space instead of
T
at first, I normalized offsets +00:00
to Z
as yarnd does and converted newlines back to U+2028
). At least now the simple cross check with the Twtxt Feed Validator does not yield any problems.