Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
ssh-keygen -t rsa
xcode-select --install
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi

Keybase proof

I hereby claim:

  • I am madebydiego on github.
  • I am di (https://keybase.io/di) on keybase.
  • I have a public key whose fingerprint is C074 EEE3 14F2 BFCC 82AD 606F FA89 11EA CFB4 44DF

To claim this, I am signing this object:

@madebydiego
madebydiego / gist:5578667
Last active December 17, 2015 08:18
Get all the avatars from DN! - Including the non existent ones -
#! /bin/bash
for number in {1..2016}
do
wget https://news.layervault.com/users/$number/portrait --output-document=$number.jpg
done