Forked from Leo Sammarco's Pen Pretty Canvas Squares.
A Pen by Stephen Bridgwater on CodePen.
Forked from Leo Sammarco's Pen Pretty Canvas Squares.
A Pen by Stephen Bridgwater on CodePen.
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
MusicScooper |
###109 Information Integration: Mash-ups, API’s and The Semantic Web, Digital Scholarship Training Programme, British Library, 11 March 2014
[NB: these notes were taken live. They will be partial, incomplete and contain errors]
Led by Owen Stephens @ostephens
https://gist.github.com/drjwbaker/9483198
In our 'Information Integration: Mash-ups, API’s and The Semantic Web' course today hoping to get a refresh of the basics from @ostephens.
— James Baker (@j_w_baker) March 11, 2014
Install the essentials.
$ brew update && brew install elasticsearch && brew install apache-spark
Start ES.
$ elasticsearch
(MVP – Minimal Viable Product)
Plist.tv is a place for people to EASILLY watch and create INTERESTING music video collections. People create playlists. When people are listening and watching a playlist, it becomes a channel, that other people can join. Audio and video tracks are dj’ed independantly. People can chat with eachother about the content.
It pulls and mixes elements from
mb_spotify.js: | |
// ==UserScript== | |
// @name MusicBrainz Spotify Integration | |
// @description | |
// @version 2014-05-18 | |
// @author - | |
// @namespace http://critiquebrainz.org | |
// | |
// @include *://musicbrainz.org/release-group/* |
# shortform git commands | |
alias g='git' | |
# get most modified files and counts | |
git log --all -M -C --name-only --format='format:' "$@" | sort | grep -v '^$' | uniq -c | sort | awk 'BEGIN {print "count\tfile"} {print $1 "\t" $2}' | sort -g | |
# Locally checkout all remote branches of a repository | |
git branch -r | cut -d '/' -f2 | grep -Ev '( |master)' | xargs -Ibranch git checkout -b branch origin/branch | |
# Open current Git repository URL |