Skip to content

Instantly share code, notes, and snippets.

View charliep6's full-sized avatar
👋

charlie pham charliep6

👋
  • Philadelphia, PA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am charliep6 on github.
  • I am charliepham (https://keybase.io/charliepham) on keybase.
  • I have a public key ASD2Yc_PNGvYW1HnnWfU87wDUPWiRMgq8EPySpsxufUiHgo

To claim this, I am signing this object:

@charliep6
charliep6 / Startup
Last active September 7, 2016 15:37 — forked from jamestomasino/1 - Startup
Setup for new devs
- Install XCode
- Create SSH keys
$ ssh-keygen
- Upload public key to Assembla & Github
$ cat ~/.ssh/id_rsa.pub | pbcopy
#!/usr/bin/env bash
set -e # exit on any nonzero command
read -n1 -r -p "Make sure SSH keys are set up on remotes. Press space to continue..." key
if [ "$key" = '' ]; then
# Remove default dotfiles that may exist
if [ -f "$HOME/.profile" ]; then
rm "$HOME/.profile"