(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
/* 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; |
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 |
git config --global url."https://".insteadOf git:// |
data:text/html, <html contenteditable> |
<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/ |
#!/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== |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
const jsonPretty = obj => JSON.stringify(obj, null, 2); |