Skip to content

Instantly share code, notes, and snippets.

View jiku's full-sized avatar

B.E. Henriksen jiku

View GitHub Profile
@jiku
jiku / symlinks-fix.js
Last active April 2, 2018 13:16 — forked from nicolascouvrat/react-native-start-with-link.js
start react native bunlder with link
@jiku
jiku / launch.json
Created November 17, 2017 13:53
VSCode debug ES2015+ through Babel CLI from active file
{
"version": "0.2.0",
"configurations": [
{
"name": "Babel CLI from current file",
"type": "node",
"request": "launch",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
@jiku
jiku / npmtry
Last active January 8, 2016 18:36
#!/bin/bash
# Clones, branches and tries NPM project on exp/1 branch
# npmtry <repo> <folder>
# You're right, folder should be optional!
# I have it as an executable (chmod +x) npmtry symlinked to a npmtry.command so you can double click it... except that wouldn't work.
BRANCH='exp/1'
git clone $1 $2 \
&& cd $_ \
@jiku
jiku / Dynamically piped methods with Ramda and Underscore.markdown
Created September 21, 2015 10:24
Dynamically piped methods with Ramda and Underscore