This might not be news, but if you haven't seen Spurious Correlations, I recommend it. The RSS feed is consistently the best thing on my reader.
(Sorry, but I have to take some credit for it).
Description goes here
We have some exciting news that we wanted to share with you. Loom is now officially part of Dropbox, and we couldn’t be happier to join forces!
…
As of today, we are no longer enrolling new users. Existing Loom users can continue to use our service until May 16, 2014.
# github
function new_github_repo(){
if [ -z "$1" ]
then
echo "Usage: github [name]"
else
USER='YOUR_GIT_USERNAME'
curl -u "$USER" https://api.github.com/user/repos -d '{"name":"'$1'"}'
cd ~
mkdir $1
cd $1
touch README.md
git init
git add -A
git commit -am "Initial commit."
git remote add origin git@github.com:$USER/$1.git
git push origin master
fi
}
alias github='new_github_repo'