Fit within 150x150
-strip removes colour profiles and must be before -thumbnail.
-thumbnail is an optimised version of -resize and removes image profiles.
eg. 600x300 -> 150x75
1x Grove - 125KHz RFID Reader | |
2x Grove - 3-Axis Digital Accelerometer(±1.5g) | |
2x Grove - 3-Axis Digital Accelerometer(±16g) | |
1x Grove - 315MHz Simple RF Link Kit | |
1x Grove - 433MHz Simple RF Link Kit | |
2x Grove - Button | |
2x Grove - Buzzer | |
2x Grove - 4-Digit Display | |
1x Grove - Dry-Reed Relay | |
1x Grove - Electricity Sensor |
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |
/* | |
* SPI testing utility (using spidev driver) | |
* | |
* Copyright (c) 2007 MontaVista Software, Inc. | |
* Copyright (c) 2007 Anton Vorontsov <[email protected]> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; either version 2 of the License. | |
* |
ServerAliveInterval 60 | |
ServerAliveCountMax 60 |
# list installed | |
npm -g ls | |
# install | |
npm -g install bower | |
npm -g install express | |
npm -g install grunt-cli | |
npm -g install jshint | |
npm -g install jslint | |
npm -g install karma |
[user] | |
name = Mike Causer | |
email = [email protected] | |
[mergetool] | |
keepBackup = true | |
[credential] | |
helper = osxkeychain | |
[push] | |
default = simple | |
[core] |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>BackgroundBlur</key> | |
<real>0.0</real> | |
<key>BackgroundColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw |
Fit within 150x150
-strip removes colour profiles and must be before -thumbnail.
-thumbnail is an optimised version of -resize and removes image profiles.
eg. 600x300 -> 150x75
ln -sf /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl /usr/local/bin
# remove all .DS_Store files in the current directory and its subdirectories | |
alias rmds='find . -name .DS_Store -type f -print -delete' | |
# show hidden files | |
alias showhiddenfiles='defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder' | |
# hide hidden files | |
alias hidehiddenfiles='defaults write com.apple.finder AppleShowAllFiles FALSE && killall Finder' | |
# apply changes by running |