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:
| # corrected after fork | |
| # from https://www.reddit.com/r/pihole/comments/6qmpv6/blacklists_for_lg_webos_tvs/ | |
| 0.0.0.0 us.rdx2.lgtvsdp.com | |
| 0.0.0.0 us.info.lgsmartad.com | |
| 0.0.0.0 us.ibs.lgappstv.com | |
| 0.0.0.0 us.lgtvsdp.com | |
| 0.0.0.0 ad.lgappstv.com | |
| 0.0.0.0 smartshare.lgtvsdp.com | |
| 0.0.0.0 ibis.lgappstv.com |
| 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 |
| sudo apt-get install git-core libnss-mdns libavahi-compat-libdnssd-dev -y | |
| sudo chown -R $USER /usr/local |
| # 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 |
I hereby claim:
To claim this, I am signing this object:
| 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> |
| find . -name '*.DS_Store' -type f -delete |
| 'use strict'; | |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| docpad: { | |
| files: [ "./src/**/*.*" ], | |
| out: ["out"] | |
| }, | |
| watch: { |
| pid=$(ps -opid= -C your_script_name) | |
| while [ -d /proc/$pid ] ; do | |
| sleep 1 | |
| done && ./your_other_script |
| find ./ -type f -name ".keep" -exec rm {} \; |