I hereby claim:
- I am keathley on github.
- I am spyc3r (https://keybase.io/spyc3r) on keybase.
- I have a public key whose fingerprint is CED4 D583 39C4 E14C 2C7A 8027 B8A2 2126 47DF 010B
To claim this, I am signing this object:
| defprotocol Functor do | |
| def fmap(data, func) | |
| end | |
| defprotocol Applicative do | |
| def pure(data) | |
| def run(wrapped_func, data) | |
| end | |
| defprotocol Monad do |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Turnt</title> | |
| <link href="index.css" rel="stylesheet" type="text/css"/> | |
| <link href="http://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet" type="text/css"> | |
| <script src='https://cdn.firebase.com/js/client/2.2.1/firebase.js'></script> | |
| <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'></script> | |
| </head> | |
| <body> |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <ul id="log"> | |
| </ul> | |
| <script> | |
| var logger = document.getElementById('log'); |
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| "math/rand" | |
| "time" | |
| "sort" | |
| ) |
I hereby claim:
To claim this, I am signing this object:
| angular.module('app', []) | |
| .config(['$httpProvider', ($httpProvider) -> | |
| authToken = $("meta[name=\"csrf-token\"]").attr("content") | |
| $httpProvider.defaults.headers.common["X-CSRF-TOKEN"] = authToken | |
| ]) |