A Pen by Moses Holmström on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Animooted particle parallax background</title> | |
| <style id="jsbin-css"> | |
| body { | |
| background-color: #63BCB3; | |
| font-family: Droid Sans, sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Parent</title> | |
| </head> | |
| <body> | |
| <h2 id="derp">I'm in an iframe!</h2> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="range"> | |
| <div class="track"> | |
| <span class="fill"> | |
| </span> | |
| </div> | |
| <span class="thumb"> | |
| <span class="display"> | |
| <span class="value">100</span>% | |
| </span> | |
| </span> |
Click the name to generate a new one!
This is a hiatus from the usual tech-oriented stuff. Something for the masses for once :)
A Pen by Moses Holmström on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Tildenhancer | |
| // @namespace http://tildes.net/ | |
| // @version 0.1 | |
| // @description Tweaks | |
| // @author thykka | |
| // @match https://tildes.net/* | |
| // @grant GM_addStyle | |
| // @grant GM_getValue | |
| // @grant GM_setValue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Install gulpfile dependencies with: npm i | |
| // Install browser extension from | |
| // - https://addons.mozilla.org/en-US/firefox/addon/livereload/ | |
| // - https://chrome.google.com/webstore/detail/livereload/jnihajbhpnppcggbcgedagnkighmdlei | |
| var gulp = require('gulp'); | |
| var watch = require('gulp-watch'); | |
| var livereload = require('gulp-livereload'); | |
| var notify = require('gulp-notify'); | |
| var sourcemaps = require('gulp-sourcemaps'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { | |
| // no easing, no acceleration | |
| linear: function (t) { return t }, | |
| // accelerating from zero velocity | |
| easeInQuad: function (t) { return t*t }, | |
| // decelerating to zero velocity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Stop lohtu- etuliitteelle! | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name jsfiddle annoyances | |
| // @namespace https://gist.githubusercontent.com/thykka/d130a68229dc9bda81e6f11f7388d52d/ | |
| // @version 0.0.3 | |
| // @description Kill the anti-features! | |
| // @author Thykka | |
| // @match https://jsfiddle.net/* | |
| // @updateURL https://gist.githubusercontent.com/thykka/d130a68229dc9bda81e6f11f7388d52d/raw | |
| // @downloadURL https://gist.githubusercontent.com/thykka/d130a68229dc9bda81e6f11f7388d52d/raw | |
| // @grant none |