Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
set -eu
if [ $# -eq 2 ]; then
user=$1
branch=$2
elif [ $# -eq 1 ]; then
user=metabase
branch=$1
@tlrobinson
tlrobinson / graphiql-route.jsx
Last active January 20, 2017 09:18
Minimal GraphiQL + React Router
export default
<Route path="/graphiql" component={() =>
<GraphiQL fetcher={(graphQLParams) =>
fetch(window.location.origin + '/graphql', {
method: 'post',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(graphQLParams),
credentials: 'same-origin',
}).then(response => response.json())
} />
@tlrobinson
tlrobinson / jsonp.clj
Created January 18, 2017 06:17
Clojure/Ring JSONP response
(defn jsonp-response
[object callback]
{:status 200
:headers {"Content-Type" "application/javascript"}
:body (str callback "(" (cheshire.core/generate-string object) ")")})
@tlrobinson
tlrobinson / .babelrc
Last active January 16, 2017 18:26
Chevrotain + Webpack 2 mangling issue
{
"presets": [
["es2015", { "modules": false }]
]
}
@tlrobinson
tlrobinson / visualize-stacking-contexts.js
Last active January 7, 2022 03:14 — forked from eoinkelly/visualize-stacking-contexts.js
Some console output to help you visualise stacking contexts on a page (no jquery)
/*
Usage:
* Paste this into your dev tools console (or even better as a snippet)
* It will parse the page and find all the things that create a new stacking context
and dump some info about them to the console. It will also outline them on the page.
* This is pretty rough and probably misses heaps of bugs and edge cases.
*/
function highlight(el) {
import chain from "./promise-chain-decorator";
class Bar {
baz() {
return "baz";
}
}
class Foo {
@chain(Bar)
@tlrobinson
tlrobinson / flow-typechecked-getin.js
Created September 28, 2016 21:38
Flow typechecked getIn (icepick, immutable, etc)
type K = string | number;
type getIn0 = <V>(o: V, p: [void]) => V
type getIn1 = <K1:K,V>(o: {[k:K1]:V}, p: [K1,void]) => V
type getIn2 = <K1:K,K2:K,V>(o: {[k:K1]:{[k:K2]:V}}, p: [K1,K2,void]) => V
type getIn3 = <K1:K,K2:K,K3:K,V>(o: {[k:K1]:{[k:K2]:{[k:K3]:V}}}, p: [K1,K2,K3,void]) => V
type getIn4 = <K1:K,K2:K,K3:K,K4:K,V>(o: {[k:K1]:{[k:K2]:{[k:K3]:{[k:K4]:V}}}}, p: [K1,K2,K3,K4,void]) => V
type getIn5 = <K1:K,K2:K,K3:K,K4:K,K5:K,V>(o: {[k:K1]:{[k:K2]:{[k:K4]:{[k:K5]:V}}}}, p: [K1,K2,K3,K4,K5,void]) => V
type getInN = <V>(o: Object, p: [K,K,K,K,K,K]) => V;
{
"type" : "query",
"database" : 1,
"query" : {
"source_table" : 1,
"filter" : [],
"aggregation" : ["count"],
"breakout" : []
},
"parameters" : [
@tlrobinson
tlrobinson / chrome-50.0.2661.94
Last active April 29, 2016 06:44
Prints the JavaScript prototype hierarchy of all global functions
null
[object Object]
function () {}
close
focus
blur
postMessage
AppBannerPromptResult
Array
ArrayBuffer
@tlrobinson
tlrobinson / import-mint.sql
Created April 11, 2016 06:26
Import Mint (https://www.mint.com/) data export files into PostgreSQL for analysis in Metabase (http://www.metabase.com/). Will need to change the paths to point to the downloaded and extracted CSVs.
CREATE TABLE transactions (
"date" date,
"description" varchar,
"origin_description" varchar,
"amount" float,
"transaction_type" varchar,
"category_type" varchar,
"category" varchar,
"account_name" varchar,
"labels" varchar,