Skip to content

Instantly share code, notes, and snippets.

View Ranthrall's full-sized avatar
👁️‍🗨️
I may be slow to respond.

Ranthrall Ranthrall

👁️‍🗨️
I may be slow to respond.
  • 03:27 (UTC -03:00)
View GitHub Profile
@mnshcodie
mnshcodie / npm-cheat-sheet.md
Last active August 29, 2015 14:25 — forked from AvnerCohen/npm-cheat-sheet.md
Node.js - npm Cheat Sheet

Node.js - npm Cheat Sheet

(Full description and list of commands at - https://npmjs.org/doc/index.html)

##List of less common (however useful) NPM commands

######Prepand ./bin to your $PATH Make sure to export your local $PATH and prepand relative ./node_modules/.bin/:

@jcortejoso
jcortejoso / docker-functions.sh
Created July 17, 2015 16:36
docker-functions.sh
#!/bin/bash
# bash wrappers for docker run commands
#
# Helper Functions
#
docker_dcleanup(){
docker rm $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null
docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null
}
@TomTer
TomTer / switch-to-vim-for-good.md
Last active February 9, 2016 13:40 — forked from bpierre/README.md
Switch To Vim For Good

Switch To Vim For Good

This guide is coming from an email I used to send to newcomers to Vim. It is not intended to be a complete guide, it is about how I did the switch.

Some background: my decision to switch to Vim has been made a long time ago. Coming from TextMate 1, I wanted to learn an editor that is Open Source (so I don’t lose my time learning a tool that can be killed), cross platform (so I can use it everywhere), and powerful enough (so I won’t regret TextMate). For these reasons, Vim has always been the editor I wanted to learn, but it took me several years before I did it in a way that works for me. I tried to switch progressively, using the Janus Vim distribution for a few months, then got back to using TextMate 2 for a time, waiting for the next attempt… here is what finally worked for me.

Non Optional

  1. Watch the Derek Wyatt videos in order (at least the “Novice” ones for now): http://derekwyatt.org/vim/tutorials/
  2. Read the first part of this Sta