Skip to content

Instantly share code, notes, and snippets.

View jandrewmc's full-sized avatar

Andrew McCormick jandrewmc

View GitHub Profile
@jandrewmc
jandrewmc / gist:de26c518169a6d8c833c8fda1755efad
Created May 23, 2016 12:44
Installing cocoapods and RVM and Ruby
\curl -sSL https://get.rvm.io | bash -s stable
rvm install ruby
gem install cocoapods
@jandrewmc
jandrewmc / platformioinstallation.txt
Created December 12, 2015 03:51
Commands needed for arduino terminal development using platformio
http://platformio.org/#!/get-started
first you need python and pip and setuptools.
then you install platformio
for setting up a new environment for
get your board type by looking up:
$platformio boards arduino
@jandrewmc
jandrewmc / RemoteRepoAdd.txt
Created September 3, 2015 17:02
Create a Remote Github Repo from mac terminal
curl -u 'USER_NAME' https://api.github.com/user/repos -d '{"name":"REPO_NAME"}'
where USER_NAME is your github user name and REPO_NAME is the name of the remote repo you want to create