I hereby claim:
- I am ticky on github.
- I am ticky (https://keybase.io/ticky) on keybase.
- I have a public key whose fingerprint is FC89 26EF 238B 59F3 F7B7 CAF1 E3DE 5BE0 38F7 0FE9
To claim this, I am signing this object:
| // paste in your console | |
| (function() { | |
| // if `onvoiceschanged` begins undefined, we need to call this manually, apparently? | |
| var wasUndefined = speechSynthesis.onvoiceschanged === undefined; | |
| speechSynthesis.onvoiceschanged = function() { | |
| var sandbox = document.createElement('iframe'); | |
| sandbox.style.visibility = 'hidden'; | |
| sandbox.style.display = 'block'; | |
| document.body.appendChild(sandbox); |
| #!/bin/sh | |
| COMMAND= | |
| ONCHANGE= | |
| INTERVAL=2 | |
| MD5COMMAND= | |
| ONCE=NO | |
| if which md5 >/dev/null 2>&1; then | |
| MD5COMMAND=md5 |
I hereby claim:
To claim this, I am signing this object:
| const n = true | |
| ? 'YAY' | |
| : 'never'; | |
| blam | |
| .boom() | |
| .echo(n); | |
| const o = { | |
| gist: true, |
| require "formula" | |
| class Kbbutil < Formula | |
| homepage "https://github.com/MaffC/beautiful-lifestyle/tree/master/kbbutil" | |
| url "https://github.com/MaffC/beautiful-lifestyle/archive/c806e228ec219cfbe53054f2b486f3f41f11a92f.zip" | |
| sha1 "a0865d70d5adc3f72677b87d024934729401d8c6" | |
| version "1.0.0" | |
| def install | |
| system "cd kbbutil && make" |
| // easing functions http://goo.gl/5HLl8 | |
| Math.easeInOutQuad = function (t, b, c, d) { | |
| t /= d/2; | |
| if (t < 1) { | |
| return c/2*t*t + b; | |
| } | |
| t--; | |
| return -c/2 * (t*(t-2) - 1) + b; | |
| }; |
| // ==UserScript== | |
| // @name ID Linker | |
| // @namespace http://geoffstokes.net/ | |
| // @include * | |
| // ==/UserScript== | |
| (function () { | |
| // TODO: Search up the DOM tree for the nearest ID. | |
| Array.prototype.slice.call(document.querySelectorAll('[id]')).forEach(function (element) { | |
| element.addEventListener('click', function (event) { | |
| if (event.button === 1 && event.altKey) { |
| /** | |
| * Windows 98 | |
| */ | |
| * { | |
| box-sizing: border-box; | |
| cursor: default; | |
| user-select:none; | |
| } | |
| .selectable, input[type=text], input[type=email], textarea { |