I hereby claim:
- I am dushmis on github.
- I am d6t (https://keybase.io/d6t) on keybase.
- I have a public key whose fingerprint is 669C 5978 6812 186A A76D 32D6 E7D1 E319 A27B 4427
To claim this, I am signing this object:
application: you-app-name-here | |
version: 1 | |
runtime: python | |
api_version: 1 | |
default_expiration: "30d" | |
handlers: | |
- url: /(.*\.(appcache|manifest)) | |
mime_type: text/cache-manifest |
/* | |
* 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 |
function loadScript(path, callback) { | |
var script = document.createElement('script'); | |
if (script.onreadystatechange) { | |
script.onreadystatechange = function() { | |
var st = script.readyState; | |
if (st === 'loaded' || st === 'complete') { | |
if(callback&&"function" === typeof callback){ | |
callback(); | |
} | |
script.onreadystatechange = null; |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
var width = window.innerWidth, | |
height = window.innerHeight; |
package main | |
import ( | |
"context" | |
"flag" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
7 | |
2 | |
1 | |
0 | |
4 | |
1 | |
4 | |
9 | |
5 | |
9 |
Rich Hickey • 3 years ago
Sorry, I have to disagree with the entire premise here.
A wide variety of experiences might lead to well-roundedness, but not to greatness, nor even goodness. By constantly switching from one thing to another you are always reaching above your comfort zone, yes, but doing so by resetting your skill and knowledge level to zero.
Mastery comes from a combination of at least several of the following:
$(".togglebutton[data-event-action='delete']").each((e, x) => { | |
x.click() | |
}); | |
var i = 0; | |
setInterval(e => { | |
$("span.option.error.active a.yes")[0].click() | |
console.log("deleted ", i++); | |
}, 500); |