Dial:
**61*101**[seconds in 5s increments]#
And press call
| [null, null, 'dear Glen', null].forEach( s => | |
| console.log(`Happy Birthday ${s || 'to you!'}`) | |
| ) |
| #!/bin/bash | |
| # Build Zsh from sources on Ubuntu. | |
| # From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. | |
| # Make script gives up on any error | |
| set -e | |
| # Some packages may be missing | |
| sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo checkinstall |
| LOGIN="test@example.com" | |
| PASSWORD=MyPassword | |
| INTERFACE=wlan0 | |
| INTERVAL=30 | |
| mkdir -p "$HOME/src/noip" | |
| cd "$HOME/src/noip" | |
| wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz | |
| tar zxf noip-duc-linux.tar.gz | |
| cd noip-2.1.9-1 |
| # Setup VNC server | |
| sudo apt-get remove -y tightvncserver | |
| sudo apt-get install -y tightvncserver | |
| mkdir -p "$HOME/.vnc" | |
| vncpasswd -f <<< $PASSWORD > "$HOME/.vnc/passwd" | |
| # VNC at startup | |
| sudo tee /etc/init.d/tightvnc > /dev/null <<EOF |
| Desired=Unknown/Install/Remove/Purge/Hold Desired=Unknown/Install/Remove/Purge/Hold | |
| | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/tri | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/tri | |
| |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) | |
| ||/ Name Version ||/ Name Version | |
| +++-=====================================-=================== | +++-==============================-========================== | |
| ii acl 2.2.52-2 ii acl 2.2.52-2 | |
| ii adduser 3.113+nmu3 ii adduser 3.113+nmu3 | |
| ii adwaita-icon-theme 3.14.0-2 < | |
| ii alacarte 3.11.91-2+rpi1 < | |
| ii alsa-base 1.0.27+1 < |
| /* Hide site info*/ | |
| #siteInfo { | |
| display: none !important; | |
| } | |
| /* Push logo left */ | |
| #header #logoWrapper { | |
| position: relative; | |
| left: 0; |
| // Regarding the purchase of C3 Technologies, how much each 3D mapping cost | |
| window.location = "http://www.apple.com/au/ios/feature-availability/"; | |
| C3TechnologiesAquisitionPrice = 267000000; | |
| flyoverLocations = document.querySelectorAll('#maps-flyover ul li').length; | |
| costPerMap = C3TechnologiesAquisitionPrice / flyoverLocations; | |
| 'Total ' + flyoverLocations + ' maps costing ' + costPerMap + ' per map' |
| # Build environment. I use vagrant ubuntu/trusty64 | |
| sudo apt-get install build-essential git-core | |
| sudo git clone https://github.com/raspberrypi/tools.git /opt/tools | |
| export CCPREFIX="/opt/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf-" | |
| # Get ffmpeg and x264 repos | |
| git clone git://source.ffmpeg.org/ffmpeg.git |
| # Requires WP-CLI on the client and server | |
| namespace :db do | |
| desc 'Backup Wordpress database to shared/backup/timestamp.sql.gz and create a latest.sql.gz symlink' | |
| task :backup do | |
| stamp = Time.now.utc.strftime('%Y%m%d%H%M%S') | |
| filename = "#{fetch(:application)}_#{stamp}.sql.gz" | |
| backup_path = "#{shared_path}/backup/#{filename}" | |
| on roles(:app) do | |
| execute "mkdir -p #{shared_path}/backup" |