Skip to content

Instantly share code, notes, and snippets.

@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;
@vincentsimard
vincentsimard / gist:4113511
Created November 19, 2012 20:01
TEKcraft FrontEnd development game. Skills brainstorming
Core technologies
HTML documents
Familiarity with the HTML syntax
The HTML syntax
Doctype
Element tags
Global attributes
The elements of HTML
The root element, document metadata
Sectioning elements
@vincentsimard
vincentsimard / gitSSHtoHTTPS
Last active December 10, 2015 23:49
Temporary workaround for converting any git SSH request into a HTTPS request
git config --global url."https://".insteadOf git://
@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>
@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">
// ==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 / 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==
// @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 / introrx.md
Created February 20, 2017 19:26 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@vincentsimard
vincentsimard / jsonPretty.js
Created December 18, 2017 16:23
JSON Prettyfier
const jsonPretty = obj => JSON.stringify(obj, null, 2);