Skip to content

Instantly share code, notes, and snippets.

View joesepi's full-sized avatar
🤖
wrkn

Joe Sepi joesepi

🤖
wrkn
View GitHub Profile
@joesepi
joesepi / daily-todo.md
Last active January 8, 2018 23:56
My Daily Ephemeral ToDo List

eh, forget it.

# filename: install-nvm-npm-node
# author: Lex Sheehan
# purpose: To cleanly install NVM, NODE and NPM
# dependencies: brew
# references: http://lexsheehan.blogspot.com/2015/04/cleanly-install-nvm-node-and-npm.html
NOW=$(date +%x\ %H:%M:%S)
CR=$'\n'
REV=$(tput rev)
OFF=$(tput sgr0)
@joaoneto
joaoneto / node_env.py
Created March 30, 2013 19:10
Sublime Text 2 Package NVM node path configuration
# Sublime package NVM node path configuration
# Save this file in:
# ~/.config/sublime-text-2/Packages/node_env.py
import os
os.environ["PATH"] = "/home/joao/.nvm/v0.10.2/bin:/home/joao/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
print "PATH=" + os.environ["PATH"]