https://www.atlassian.com/git/tutorial/git-basics
http://readwrite.com/2013/09/30/understanding-github-a-journey-for-beginners-part-1
http://www.webdesignerdepot.com/2009/03/intro-to-git-for-web-designers
(Credit: Beau Smith http://beausmith.com/blog/omnigraffle-date-time-format/)
<%CreationDate %m/%d/%y – %H:%M %>
This terminal command increases the minimum Apple Bitpool setting - which improves overall sound, and removes crackling and stuttering.
defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" 45
Source:http://bencollier.net/2011/04/improve-compressed-bluetooth-audio-on-mac/
curl -sf http://checkip.dyndns.org/|cut -d ':' -f 2|cut -d '<' -f1|sed -e 's/ //g' |
#!/bin/bash | |
# Appends simple results to log file | |
# Remember to chmod +x this script to make it executable | |
speedtest-cli --simple >>/home/pi/speedtest-log.txt |
cat /sys/class/thermal/thermal_zone0/temp | awk '{ $1 = (((9/5)*$1)+32)/1000 } 1' |
#!/bin/bash | |
# ------------------------------------------------------------------ | |
# Title: piupdate.sh | |
# Author: Andrew Miller | |
# Version: 0.1.1 | |
# | |
# Description: | |
# A really simple script that runs through all of the usual updates | |
# for a Raspbian Raspberry Pi. | |
# |
References and Resources from the Design Days presentation at Microsoft Paris October, 2014
The Post-PSD Era | Brad Frost Web
“The Post-PSD Era: A problem of expectations,” an article by Dan Mall
on run | |
tell application "Google Chrome" | |
make new window | |
set URL of active tab of window 1 to "https://mail.google.com/mail/?ui=2&view=cm&fs=1&tf=1&shva=1" | |
activate | |
end tell | |
end run |