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
| #!/bin/bash | |
| # https://docs.docker.com/engine/installation/linux/ubuntulinux/ | |
| sudo apt-get update | |
| sudo apt-get -y install apt-transport-https ca-certificates | |
| sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
| sudo bash -c 'echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" > /etc/apt/sources.list.d/docker.list' | |
| sudo apt-get update | |
| sudo apt-get -y install linux-image-extra-$(uname -r) | |
| sudo apt-get -y install docker-engine |
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
| #--coding: utf-8-- | |
| import urllib2 | |
| import urllib | |
| from sys import argv | |
| ''' | |
| Used for sending texts via telenor norway smapi | |
| Send passord to 1999 to get your password | |
| You will be billed by telenor for the usage even if sms is included in your subscription | |
| ''' | |
| msg = argv[1] |