Skip to content

Instantly share code, notes, and snippets.

View MaKaNu's full-sized avatar
🏠
Working from home

MaKaNu

🏠
Working from home
  • FH Dortmund
  • Dortmund
View GitHub Profile
@MaKaNu
MaKaNu / info.md
Last active September 13, 2025 03:23
Update TBsync and EAS max version

Information

This Gist describes how to update the max version number of TBSync and EAS Provider above ESR version.

Attention: This process does not ensure the Extension works after update, if breaking changes appear.

Before you are able to execute the script below you need to download the latest version of TBsync and any provider you like to patch from the list below:

@MaKaNu
MaKaNu / .zshrc
Created September 2, 2021 13:50
Colored syslog alias function
# ccze functions
greplog() {
if [ -n "$1" ]
then
sudo grep $1 /var/log/syslog | ccze -A | less -R
else
sudo cat /var/log/syslog | ccze -A | less -R
fi
}