This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 | |
| 00:07:15,784 --> 00:07:21,723 | |
| Ciribim ciribom | |
| älä luule että uskotaan | |
| 2 | |
| 00:07:21,993 --> 00:07:26,620 | |
| Ciribim ciribom | |
| sua enää ollenkaan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "Ciribim ciribom" | |
| Ciribim ciribom | |
| älä luule että uskotaan | |
| Ciribim ciribom | |
| sua enää ollenkaan | |
| Tytön täytyy ymmärtää | |
| se milloin häntä narrataan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Pulls Gists from Github. | |
| Inspiration taken from http://amatashkin.com/2013/09/18/backup-all-public-gists-with-powershell/ | |
| #> | |
| param ( | |
| [string]$githubname = "samiru" | |
| ) | |
| if ($githubname -eq "") { | |
| Write-Host("Please provide Github user name as parameter!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Iterate through all subdirectories, and perform Git pull on each sub directory. | |
| Tags: #bin | |
| #> | |
| $initpath = Get-Location | |
| foreach($path in Get-ChildItem) { | |
| if ($path.Attributes -eq "Directory") { | |
| Set-Location $path.FullName | |
| git pull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Apt-install various things necessary for Ruby, guest additions, | |
| # etc., and remove optional things to trim down the machine. | |
| apt-get -y update | |
| apt-get -y remove apparmor | |
| apt-get -y install linux-headers-$(uname -r) build-essential | |
| apt-get -y install zlib1g zlib1g-dev libxml2 libxml2-dev libxslt-dev libssl-dev openssl libreadline5-dev | |
| apt-get clean | |
| # Remove this file to avoid dhclient issues with networking | |
| rm -f /etc/udev/rules.d/70-persistent-net.rules |