Keybase proof
I hereby claim:
- I am frosas on github.
- I am francescrosas (https://keybase.io/francescrosas) on keybase.
- I have a public key ASDw-vcswIVm61yGBo5LiHGWgIavJt4xk6eTzlNWN9n-Jwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
2a3,5 | |
> | |
> Download as a PDFhere | |
> | |
53c56 | |
< You can check all payments into and out of your account through the Revolut app. We will not make any changes to your account information and it will be available to you through the Revolut app for six years after you close your account. If you need to keep a copy of the information after then, you will need to download it. You can download information from the app at any time. | |
--- | |
> You can check all payments into and out of your account through the Revolut app. We will not make any changes to your account information. It will be available to you through the Revolut app while you are a customer. It will also remain available through the Revolut app for six years after you close your account. If you need to keep a copy of the information after then, or if you need to keep a copy of it outside of the app, you will need to download it. You can download this information from the app at any time. | |
131c134 | |
< Email us on feedback@revolut.com or formalcomplaints@revolut.co |
const setupGlobalDom = () => { | |
const originalDocument = global.document; | |
const originalWindow = global.window; | |
global.document = jsdom(''); | |
global.window = global.document.defaultView; | |
return () => { | |
global.document = originalDocument; | |
global.window = originalWindow; | |
} | |
} |
Copy/paste index.js
into your browser console. Then,
// Non-Angular Javascript contract positions in London or remote
hn.filter(
hn.or(/(javascript|typescript)/i, /ES\d/, 'JS'),
hn.not(/angular/i),
/contract/i,
(assuming an Ubuntu machine)
sudo apt-get install linux-tools-generic
perf
and install any other listed missing package: (e.g.) sudo apt-get install linux-tools-4.4.0-1022-aws linux-cloud-tools-4.4.0-1022-aws
node --perf-basic-prof ...
// Shows only the most replied comments in https://news.ycombinator.com post and | |
// comment pages. | |
(() => { | |
const INDENT_WIDTH = 12; // TODO Detect it automatically? | |
class CommentTreeNode { | |
constructor(attrs) { | |
this.children = []; |
# Make sure we have an up to date node/npm
NODE_VERSION="v0.10.22"
if [[ $(echo -e "$NODE_VERSION\n$(node -v)" | sort -n | tail -n1) == $NODE_VERSION ]]; then
NODE_DIR=node-$NODE_VERSION-linux-x86
wget -q http://nodejs.org/dist/$NODE_VERSION/$NODE_DIR.tar.gz -O - | tar xzf -
export PATH=$(cd ./$NODE_DIR/bin && pwd):$PATH
fi
<?php | |
namespace Acme\Bundle; | |
use Doctrine\Bundle\DoctrineBundle\ConnectionFactory; | |
use Doctrine\Common\EventManager; | |
use Doctrine\DBAL\Configuration; | |
class PerProcessConnectionFactory extends ConnectionFactory | |
{ |
// ==UserScript== | |
// @name Toggl Icon | |
// @namespace http://gist.github.com/4026211 | |
// @version 0.2.3 | |
// @description Shows whether tracking is running in the page icon | |
// @match https://www.toggl.com/track | |
// @copyright 2012, Francesc Rosàs | |
// ==/UserScript== | |
var onElementAttributesChange = function(element, callback) { |
NO LONGER MAINTAINED. SEE https://gist.github.com/4026211
Shows whether tracking is running in the page icon.
To be used with https://www.toggl.com/track
Tested on Chrome.