Scuttlebutt: Social Network With Privacy!
Just read a more interesting blog post than this will be. I recommend you check it out. Posting here for my reference.
https://staltz.com/an-off-grid-social-network.html
Here's a link directly to the project: https://www.scuttlebutt.nz
I've often thought about this, but there's a huge difference between thinking and doing. I'm glad there are doers out there!
Shell Commands, Explained!
Came across this cool tool. Enter a shell command and it breaks it down to tell you what it does. Saves you having to dig through the man pages yourself.
From Vagrant to Docker
An excellent docker tutorial for web developers.
http://tech.osteel.me/posts/2015/12/18/from-vagrant-to-docker-how-to-us…
Parsey McParseface
A while back, Google open sourced Tensor Flow, a "Software Library for Machine Intelligence". Woo! Machine learning!
Now they've open sourced SyntaxNet a TensorFlow implementation for neural models of syntax, and a "pre trained" English parser Parsey McParseface.
If only I knew what to do with it all.
Git Stats
Some command line fu to check some basic git repo stats. Links to more info.
COUNT LINES OF CODE IN REPO BY USER:
git ls-tree -r -z --name-only HEAD -- | xargs -0 -n1 git blame --line-porcelain HEAD |grep "^author "|sort|uniq -c|sort -nr
http://stackoverflow.com/questions/4589731/git-blame-statistics