@dielan would make it easier forr others to blacklist said sub domain instance instead of the full one. :) if they dont want the bots that is. for the short term future i wont change it, ill keep you updated over matrix or xmpp/jabber - wherever you prefer :)
I'm installing #alpinelinux into a #lenovoV155 but i still have problem with phone #usbtethering .. someone could help??
The annual #Guix-HPC report is out!
https://hpc.guix.info/blog/2021/02/guix-hpc-activity-report-2020/
It reviews our activities around #HPC and #ReproducibleResearch.
π΅ The PEP 8 Song π΅
Dunno if I shown this before, but:
import sys
from itertools import cycle
functions = cycle([str.upper, str.lower])
phrase = sys.argv[1]
for char in phrase:
func = next(functions)
print(func(char), end='')
print('')
(Yeah, not checks if you forget to pass the phrase in the command line, but... 192 characters, babeeeee.)
Wondering if I can write the same thing in less than 200 characters in Rust now... πβ