Keybase proof
I hereby claim:
- I am mwunsch on github.
- I am wunsch (https://keybase.io/wunsch) on keybase.
- I have a public key whose fingerprint is CE28 EDB9 BAD2 F531 7941 B65A 9E26 C63A DC75 6EEF
To claim this, I am signing this object:
/** | |
* | |
* Here's a thing that will look through all the text nodes of a document, and | |
* upon encountering an emoji codepoint, will replace it with an image. | |
* For now, those images are pulled from GitHub, which isn't very nice, so I | |
* need to find a more suitable host. | |
* | |
* Much of this code was gleaned from staring at the minified GitHub JS. | |
* | |
* Copyright (c) 2013 Mark Wunsch. Licensed under the MIT License. |
function getLegitTextNodes() { | |
if (!document.createTreeWalker) return []; | |
var blacklist = ['SCRIPT', 'OPTION', 'TEXTAREA'], | |
textNodes = [], | |
walker = document.createTreeWalker( | |
document.body, | |
NodeFilter.SHOW_TEXT, | |
function excludeBlacklistedNodes(node) { | |
if (blacklist.indexOf(node.parentElement.nodeName.toUpperCase()) >= 0) return NodeFilter.FILTER_REJECT; |
# Rake tasks for building a jekyll blog and deploying to S3. | |
# | |
# These tasks aren't intended to replace the `jekyll` executable, | |
# but provide convenient Rake-isms to generate the destination dir | |
# when necessary. | |
# | |
# To write to s3, it assumes there is a bucket field in the | |
# jekyll config: | |
# aws: | |
# bucket: 'my-s3-bucket' |
/* | |
This is an incredibly rudimentary PhantomJS script to walk a DOM and emit a graphviz `dot` document. | |
It is neither clever nor good. | |
Proceed with caution. | |
Usage: phantomjs viz.js http://2015.empirejs.org/ | tee >(dot -Tpng > test.png) | |
*/ | |
var page = require('webpage').create(); | |
var args = require('system').args; |
#lang overscan | |
(require overscan/macos | |
overscan/draw | |
(only-in racket/file make-temporary-file) | |
racket/draw | |
(only-in racket/math pi) | |
"twitch-secret.rkt") | |
(define cam+screen |
curl -s 'http://realbusinessmen.tumblr.com/api/read?type=photo&num=50' | ruby -r'rexml/document' -e 'puts REXML::Document.new(STDIN).elements["tumblr/posts"].to_a.shuffle.pop.map(&:text)' |
I hereby claim:
To claim this, I am signing this object:
module Main exposing (..) | |
-- Stick this Elm file in a directory. Run `elm make` in the | |
-- directory. Run `elm reactor`. Now you have an Elm program. | |
import Html exposing (..) | |
main : Program Never Model Msg | |
main = |
#!/usr/bin/env ruby | |
EMOJI_NAME_TO_CODEPOINT = { | |
"1F604" => :smile, | |
"1F606" => :laughing, | |
"1F60A" => :blush, | |
"1F603" => :smiley, | |
"263A" => :relaxed, | |
"1F60F" => :smirk, | |
"1F60D" => :heart_eyes, |
// (c) 2012 Mark Wunsch http://markwunsch.com | |
// MIT license. | |
if (!String.fromCodePoint) { | |
/*! | |
* ES6 Unicode Shims 0.1 | |
* (c) 2012 Steven Levithan <http://slevithan.com/> | |
* MIT License | |
*/ | |
String.fromCodePoint = function fromCodePoint () { |