Steam coming for Linux
Finally steam is coming for Linux. Check out, the new Blog post by steam: Steam’d Penguins
Entrepreneur | DevOps Engineer | Speaker
Finally steam is coming for Linux. Check out, the new Blog post by steam: Steam’d Penguins
I have added the following function to my bash example script: # Run external command and only procced, when exit code is 0 function try { $@ returnValue=$? echo “$returnValue” if [ $returnValue -ne 0 ] then log $ERROR “$@ Continue Reading …
These days I use bash more and more often for simple tasks on my Linux system, as well as for a University course I am taking. Have a look at the script: #!/bin/bash # Skript: bash_example.sh # Credit to: http://www.pro-linux.de/artikel/2/111/ Continue Reading …
Notice to myself: Bugfix for Arch not waking up usb devices after suspend: https://wiki.archlinux.org/index.php/Pm-utils#HAL_will_not_recognize_new_devices_on_resume
I am currently working with some friends on an Android application, that is using geodata. Your current location is the most important thing to make this app work. We are then working with this and some other data and making Continue Reading …