I hereby claim:
- I am gismo141 on github.
- I am gismo141 (https://keybase.io/gismo141) on keybase.
- I have a public key ASChTYyMlozoYEiYjCpaYGx_iqPqmV27Xf1vgDsLB-IPswo
To claim this, I am signing this object:
apt-get remove -y --purge x11-common | |
apt-get autoremove -y --purge | |
apt-get install -y deborphan | |
deborphan | xargs dpkg -P # do this a bunch of times |
find ./ -type f -name ".keep" -exec rm {} \; |
pid=$(ps -opid= -C your_script_name) | |
while [ -d /proc/$pid ] ; do | |
sleep 1 | |
done && ./your_other_script |
'use strict'; | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
docpad: { | |
files: [ "./src/**/*.*" ], | |
out: ["out"] | |
}, | |
watch: { |
find . -name '*.DS_Store' -type f -delete |
git checkout <feature-branch> | |
git pull | |
git checkout <release-branch> | |
git pull | |
git merge --no-ff <feature-branch> | |
git push | |
git tag -a branch-<feature-branch> -m "Merge <feature-branch> into <release-branch>" | |
git push --tags | |
git branch -d <feature-branch> | |
git push origin :<feature-branch> |
I hereby claim:
To claim this, I am signing this object:
# First remove everything you've installed already: | |
npm uninstall -g airsonos | |
npm uninstall -g nodetunes | |
# Then install the working forks: | |
npm install -g git://github.com/Kolky/nodetunes.git#master | |
cd ~ | |
git clone https://github.com/lsmith77/airsonos.git airsonos | |
cd airsonos | |
npm install babel |
sudo apt-get install git-core libnss-mdns libavahi-compat-libdnssd-dev -y | |
sudo chown -R $USER /usr/local |
cd ~ | |
wget http://nodearm-nathanjohnson320.rhcloud.com/node_latest_armhf.deb | |
sudo dpkg -i node_latest_armhf.deb | |
mkdir ~/.npm-global | |
npm config set prefix '~/.npm-global' | |
export PATH=~/.npm-global/bin:$PATH | |
source ~/.profile |