Skip to content

Instantly share code, notes, and snippets.

@vincentsimard
vincentsimard / .htaccess
Created February 26, 2018 19:17 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
@vincentsimard
vincentsimard / combinators.js
Created February 20, 2018 14:58 — forked from Avaq/combinators.js
Common combinators in JavaScript
const I = x => x;
const K = x => y => x;
const A = f => x => f(x);
const T = x => f => f(x);
const W = f => x => f(x)(x);
const C = f => y => x => f(x)(y);
const B = f => g => x => f(g(x));
const S = f => g => x => f(x)(g(x));
const P = f => g => x => y => f(g(x))(g(y));
const Y = f => (g => g(g))(g => f(x => g(g)(x)));
@vincentsimard
vincentsimard / who_is_my_mummy.sh
Created January 5, 2018 21:28 — forked from joechrysler/who_is_my_mummy.sh
Find the nearest parent branch of the current git branch
#!/usr/bin/env zsh
git show-branch -a \
| grep '\*' \
| grep -v `git rev-parse --abbrev-ref HEAD` \
| head -n1 \
| sed 's/.*\[\(.*\)\].*/\1/' \
| sed 's/[\^~].*//'
# How it works:
@vincentsimard
vincentsimard / introrx.md
Created February 20, 2017 19:26 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@vincentsimard
vincentsimard / f7u12talker.js
Created June 1, 2011 21:35 — forked from bruno-c/f7u12talker.js
f7u12 faces plugin for talker
/* Written by @vincentsimard */
/*
Converts f7u12 faces code into images
See http://www.reddit.com/r/fffffffuuuuuuuuuuuu/comments/ecnd4/every_fffffffuuuuuuuuuuu_face_a_reference_guide for reference
Does not support titles, or any other cool features
Type [/code] to use the face in Talker.
*/
plugin.F7U12Faces = function(matcher){
this.matcher = matcher;