Visit my blog or connect with me on Twitter
git init
or
| //Primitive Type Comparison | |
| var a = 1; | |
| var b = 1; | |
| var c = a; | |
| console.log(a == b); //true | |
| console.log(a === b); //true | |
| console.log(a == c); //true | |
| console.log(a === c); //true |
Visit my blog or connect with me on Twitter
git init
or
| // ==UserScript== | |
| // @name StreamCloud Enhancer | |
| // @namespace lorenzbaum | |
| // @description Prepares video for playback and enables download. | |
| // @include *streamcloud.eu/* | |
| // @copyright 2016, lorenzbaum | |
| // @license MIT | |
| // @version 0.2 | |
| // @grant none | |
| // @downloadURL https://gist.github.com/lorenzbaum/973a1d75b340bcff4d7e8789c96fc454#file-streamcloudenhancer-user-js |
| /* | |
| * ---------------------------------------------------------------------------- | |
| * "THE BEER-WARE LICENSE" (Revision 42): | |
| * <[email protected]> wrote this file. As long as you retain this notice you | |
| * can do whatever you want with this stuff. If we meet some day, and you think | |
| * this stuff is worth it, you can buy me a beer in return. D. Weymouth 4/2014 | |
| * ---------------------------------------------------------------------------- | |
| */ | |
| import java.io.*; |