Zotero Similar to other tools Zotero is a tool for collecting, sharing and citing scientific articles. It has well made extensions and offers a browserRead More
Creating dotfiles in Windows
Due to the fact that Windows enforces you to use a file name you cannot create a file .gitignore, or can you? Turns out actuallyRead More
Canyon Race
A racing game where you control the hoverbike with your Kinect.
Custom CSS that shapes this website
The custom boxes used for showcasing the projects in a nice and clean list are displayed using the following styles: /** Projects **/ div.projects {Read More
Setup KeeAgent (KeePass) on Linux
Setting up KeeAgent on Linux is quite easy: Setup KeePass with your Database containing SSH Keys Install KeeAgent (using your package manager) Start KeePass GoRead More
[Lösung] All boot options are tried
Das BIOS öffnen und in den Boot-Optionen Secure Boot ausschalten. Danach findet man die neue Option “OS Mode Selection” bei der man von “UEFI OS”Read More
Awesome Age of Empires 2 HD Add-ons
Age of Empires 2 is an awesome game, here are two add-ons which address some annoying elements in competitive play.
Limit SDDM to one monitor
If you’re used to having a two or more monitor setup but don’t want do display the login screen on every screen this is forRead More
[Linux] Backlight not controllable – fix (Samsung Series 7 Chronos)
I’ve had some difficulties when it came to the backlight on my arch linux installation.Of course the first place to look for a solution wasRead More
Python: Overwrite file with text (utf-8)
def overwriteFile(file_path, text): f = codecs.open(file_path, ‘r+’, “utf-8-sig”) f.seek(0) f.write(text) f.truncate() f.close()