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 / jsonPretty.js
Created December 18, 2017 16:23
JSON Prettyfier
const jsonPretty = obj => JSON.stringify(obj, null, 2);
@vincentsimard
vincentsimard / introrx.md
Created February 20, 2017 19:26 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
// ==UserScript==
// @name ContinueOver10k
// @namespace https://gist.github.com/vincentsimard/7a565fd253d18896e5b0507d73e416d8
// @version 0.1
// @description After 10000 puzzles completed, lichess prevent you from solving anymore.
// This script changes the continue button so it sends you to the next puzzle
// @author Vincent Simard
// @match https://en.lichess.org/training/*
// @grant none
// ==/UserScript==
@vincentsimard
vincentsimard / index.js
Created December 20, 2015 00:56
yummybot update
#!/usr/bin/env node
'use strict';
var nconf = require('nconf');
var colors = require('colors');
var client = require('./src/Client.js');
var cli = require('./src/CLI.js');
var handlers = require('./src/EventHandlers.js');
// ==UserScript==
// @id @https://gist.github.com/vincentsimard/baf8d8ee6bcc5ca929f3/
// @name Remove slow/clear messages from betterttv
// @namespace https://gist.github.com/vincentsimard/
// @description
// @author vincentsimard
// @copyright 2015+, vincentsimard
// @license WTFPL
// @downloadURL https://gist.githubusercontent.com/vincentsimard/baf8d8ee6bcc5ca929f3/raw/
// @updateURL https://gist.githubusercontent.com/vincentsimard/baf8d8ee6bcc5ca929f3/raw/
@vincentsimard
vincentsimard / designer.html
Last active August 29, 2015 14:05
designer
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<link rel="import" href="../core-animated-pages/core-animated-pages.html">
<link rel="import" href="../core-animated-pages/transitions/hero-transition.html">
<link rel="import" href="../core-animated-pages/transitions/cross-fade.html">
<link rel="import" href="../core-animated-pages/transitions/slide-down.html">
<link rel="import" href="../core-animated-pages/transitions/slide-up.html">
<link rel="import" href="../core-animated-pages/transitions/tile-cascade.html">
<link rel="import" href="../paper-input/paper-input.html">
<link rel="import" href="../core-icons/core-icons.html">
@vincentsimard
vincentsimard / oneLineBrowserNotepad
Last active December 11, 2015 23:18
From https://coderwall.com/p/lhsrcq: One line browser notepad
data:text/html, <html contenteditable>