This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eu | |
if [ $# -eq 2 ]; then | |
user=$1 | |
branch=$2 | |
elif [ $# -eq 1 ]; then | |
user=metabase | |
branch=$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()) | |
} /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn jsonp-response | |
[object callback] | |
{:status 200 | |
:headers {"Content-Type" "application/javascript"} | |
:body (str callback "(" (cheshire.core/generate-string object) ")")}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": [ | |
["es2015", { "modules": false }] | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import chain from "./promise-chain-decorator"; | |
class Bar { | |
baz() { | |
return "baz"; | |
} | |
} | |
class Foo { | |
@chain(Bar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type" : "query", | |
"database" : 1, | |
"query" : { | |
"source_table" : 1, | |
"filter" : [], | |
"aggregation" : ["count"], | |
"breakout" : [] | |
}, | |
"parameters" : [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
null | |
[object Object] | |
function () {} | |
close | |
focus | |
blur | |
postMessage | |
AppBannerPromptResult | |
Array | |
ArrayBuffer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, |