Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Restore title to workflowy tags
// @namespace Violentmonkey Scripts
// @match https://workflowy.com/*/*
// @grant none
// ==/UserScript==
let timer = void 0
const update_tags = () => {
@einars
einars / thumbs-up
Created July 11, 2017 11:37
When you need a pat on the back
#!/usr/bin/env php
<?php
function say($t)
{
echo "$t\n";
system('flite -voice slt -t ' . escapeshellarg($t));
}
// http://dare.wisc.edu/survey-results/1965-1970/exclamations/nn6a
@einars
einars / gist:1dbef404d47bed0fd022
Last active August 29, 2015 14:01
ebay doesn't allow to paste passwords in change password form

In Chrome inspector, ctrl-shift-k:

 document.getElementById('password').onpaste=function() {}
 document.getElementById('retypepassword').onpaste=function() {}