Month: March 2017

  • Google Picasa 3 – Face Movie

    Person face movie from album Usually you can easily create a face movie for a specific person where you first select the person album and then click to facemovie button. But with that usage it’s difficult to select your favorite pictures for the movie. For that you can select your favorite pictures from the person…

  • Linux tipps

    Cron jobs Creating a script file in the daily run folder for Ubuntu. cd /etc/cron.daily sudo touch my-daily-job sudo chmod 755 my-daily-job Now add commands to the created script file and you’re done. #!/bin/sh do some job here You can verify that the script will run using this command. sudo run-parts –report –test /etc/cron.daily Firewall…