Skip to content

Instantly share code, notes, and snippets.

View rtorr's full-sized avatar

Richard Torruellas rtorr

View GitHub Profile
ack -f --type=cc --type=js | xargs gsed -i '1 i\// @flow'
@rtorr
rtorr / XmQOdR.markdown
Last active November 22, 2015 19:32
XmQOdR
function nuke
rm -rf node_modules; and npm cache clean; and npm install
end
dev:
NODE_ENV=dev $(BIN)/pm2 startOrRestart ./services/pm2_dev_config.json
foreman start -f ./services/Procfile_dev
test:
npm test
clean:
rm -rf node_modules
rm -rf dist
@rtorr
rtorr / config.fish
Created September 6, 2015 19:36
emacs for fish shell
function e
emacsclient -t $argv
end
function ke
emacsclient -e '(kill-emacs)'
end
function ed
emacs --daemon
@rtorr
rtorr / Makefile
Last active August 8, 2016 16:38
Watch elm files for changes and then recompile
js = $(shell echo $(elm) | tr A-Z a-z)
elm = Main
# Example: make elm=Main js=main watch
watch:
echo "watching *.elm files, outputing $(js).js" && fswatch -0 *.elm | xargs -0 -n 1 -I \{\} elm-make $(elm).elm --output $(js).js
# Example: make elm=Main js=main build
build:
elm-make $(elm).elm --output $(js).js
@rtorr
rtorr / README.md
Last active February 26, 2023 20:39
Visual Studio Code fish shell shortcut

Put this in your config.fish

run

code path/to/project

@rtorr
rtorr / Modal.js
Last active August 29, 2015 14:22
Portal that works with flux
var React = require('react/addons');
var activeStyle = {
position: 'fixed',
top: '0',
left: '0',
right: '0',
bottom: '0',
zIndex: '2000'
};
@rtorr
rtorr / index.js
Created March 18, 2015 20:08 — forked from max-mapper/index.js
requirebin sketch
var d3 = require('d3')
var textures = require('textures').textures
var types = ["squares", "nylon", "waves", "woven", "caps", "crosses", "hexagons"]
setInterval(render, 500)
function render() {
var type = types.pop()
types.unshift(type)
### Install OpenJDK
cd ~
sudo apt-get update
sudo apt-get install openjdk-7-jre-headless -y
### Download and Install ElasticSearch
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.3.1.deb
sudo dpkg -i elasticsearch-1.3.1.deb