Booting from Vinyl
The new dot com bubble
Office Tools – Self Hosted
1. Email
Self-Hosted-Email, I don’t know.
2. Chat
3. Videoconf
4. Version Control
5. Issue Tracker
Gitlab or Mantis
6. Protocol, Adhoc writting
7. Blog
8. Anything Else
9. Wiki
Prefer Readme + Blogposts.
Build Farm for CI-Jobs on Kubernetes. Written in Java.
Awesome-Healthcare List
https://github.com/kakoni/awesome-healthcare
“Curated list of awesome open source healthcare software, libraries, tools and resources. Each link has been vetted to ensure the project is active and provides value to healthcare facilities, providers, developers, policy experts, and/or research scientists.”
Offline Browsing Archive
Numbers and Computers. Some Fundamentals in 18min.
https://www.youtube.com/watch?v=QZwneRb-zqA
(Spoiler: It has a cat in there)
A month of Terraform
Unexpected news on Casio F-91W
The Millenial’s Dilemma
Visualize Numbers…
Trusting the Let’s Encrypte Root Certificate?!
“If you’re on an older version of Android, we recommend you install Firefox Mobile, which supports Android 5.0 and above as of the time of writing.
Why does installing Firefox help? For an Android phone’s built-in browser, the list of trusted root certificates comes from the operating system – which is out of date on these older phones. However, Firefox is currently unique among browsers – it ships with its own list of trusted root certificates. So anyone who installs the latest Firefox version gets the benefit of an up-to-date list of trusted certificate authorities, even if their operating system is out of date.”
How I git.
I always like this practical insights:
https://daniel.haxx.se/blog/2020/11/09/this-is-how-i-git/
Exclusively use git via console with modified prompt. Same here!
scm_info(){
git_info=`git branch 2>/dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`
if [ "${git_info}" ]; then
if [ "$(git status -s)" ]; then
git_color='\033[1;31m'
else
git_color='\033[1;36m'
fi
echo -e "${git_color}git:${git_info}"
fi
}
PS1='\n\[\033[1;32m\][\w] $(scm_info)\[\033[0m\]\n\$ '
My advice for beginners is: 1. Do not hesitate to bring all sort of command line tools into position. Git offers nice tools for many situations but you don’t have to use them all. 2. Branch, Branch, Branch – it will help you to go back.
Soft Matter
Akka.io
This text about akka.io is very readable and gives a good motiviation on why to use actor based programming models like akka.io.
https://doc.akka.io/docs/akka/current/typed/guide/actors-motivation.html
Jira nur noch in der Cloud
Ab Februar 2021 gibt es noch drei Jahre Wartung, dann endet der Support bei on-premises Installationen.
https://www.atlassian.com/de/migration/journey-to-cloud
Reactive Programming
“10 years ago, interaction with web pages was basically about submitting a long form to the backend and performing simple rendering to the frontend. Apps have evolved to be more real-time: modifying a single form field can automatically trigger a save to the backend, “likes” to some content can be reflected in real time to other connected users, and so forth.”
Green Internet
RabbitMQ and Akka.io
Another bookmark for myself. Would it make sense to use Akka over RabbitMQ?
https://www.rabbitmq.com/getstarted.html
“Now when do you use RabbitMQ with Akka? When you need to have the guarantee that your message is delivered to the remote actor. Note that as RabbitMQ uses an at-least-once delivery, your receiving actor must be idempotent or have a way to handle duplicates. But your message never gets lost.”