I hereby claim:
- I am shanna on github.
- I am shanna (https://keybase.io/shanna) on keybase.
- I have a public key ASB7WctqxheSQaiFSOvDLCvRe47lFZMirPn1NQiv4ePUcQo
To claim this, I am signing this object:
#!/usr/bin/env sh | |
set -eu | |
if [ $# -ne 0 ]; then | |
cat <<-USAGE | |
psql-migrate | |
Takes a sorted list of filenames from stdin and writes psql migrations sql | |
to stdout. |
#!/usr/bin/env bash | |
set -e | |
# Homebrew homebrew/versions was broken when I went to install postgres. | |
# This shell script just documents my install from source. | |
release=9.4.6 | |
prefix=$HOME/local | |
mkdir -p $prefix |
// MIT https://github.com/alexrabarts/jquery-brokenimage minus the jquery. | |
function BrokenImage(selector, options) { | |
'use strict'; | |
options = options || {}; | |
var defaults = { | |
timeout: 2500 | |
}; | |
for (var key in defaults) { |
require 'shingles' | |
compare = %w{ | |
foo foo | |
foo bar | |
baz boz | |
foofoo foobar | |
}.each_slice(2) | |
compare.each do |a, b| |
#include <webkit2/webkit2.h> | |
#include <JavaScriptCore/JavaScript.h> | |
int main(int argc, char **argv) { | |
gtk_init(&argc, &argv); | |
GtkWidget *main_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); | |
GtkWidget *webkit_view = webkit_web_view_new(); | |
gtk_container_add(GTK_CONTAINER(main_window), webkit_view); |
I hereby claim:
To claim this, I am signing this object:
<script> | |
const login = async () => { | |
window.location.href = await window.go.main.App.AuthURL(); | |
}; | |
let email; | |
window.go.main.App.AuthEmail() | |
.then(e => { | |
if (!e) login(); | |
email = e; |