I hereby claim:
- I am bign8 on github.
- I am bign8 (https://keybase.io/bign8) on keybase.
- I have a public key whose fingerprint is A7DF 2608 0EEB 2BAF 65EA 53E5 96DC 3AB3 8F42 B935
To claim this, I am signing this object:
| package example | |
| type trie map[string]*trie | |
| func (t *trie) Add(parts []string) { | |
| if len(parts) == 0 { | |
| return | |
| } | |
| child, ok := (*t)[parts[0]] | |
| if !ok { |
| package main | |
| import ( | |
| "encoding/json" | |
| "flag" | |
| "fmt" | |
| "net/http" | |
| "os" | |
| ) |
| """ | |
| Based on 2012 Pycon Talk: "Stop Writing Classes" by Jack Diederich | |
| - https://us.pycon.org/2012/schedule/presentation/352/ | |
| Noted rules from Wikipedia: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life | |
| 1. Any live cell with fewer than two live neighbours dies, as if caused by under-population. | |
| 2. Any live cell with two or three live neighbours lives on to the next generation. | |
| 3. Any live cell with more than three live neighbours dies, as if by over-population. | |
| 4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction. |
I hereby claim:
To claim this, I am signing this object:
| *.so | |
| *.o | |
| Rplots.pdf |
| iliad.txt | |
| tables.py | |
| flashplayer.dmg |
| ! function(t, i, m, e, r, s) { | |
| var a = t.getElementById(i), | |
| c = function() { | |
| a.innerHTML = r, t.location = e | |
| }, | |
| d = function() { | |
| a.innerHTML = s.replace('{x}', m).replace('{s}', 1 == m-- ? '' : 's'); | |
| setTimeout(0 >= m ? c : d, 1e3) | |
| }; | |
| t.addEventListener('DOMContentLoaded', d); |
| <?php session_start(); $_SESSION['hash'] = uniqid(); ?> | |
| <!-- ... --> | |
| <form method="post" action="/mail.php"> | |
| <input type="hidden" name="hash" value="<?php echo $_SESSION['hash']; ?>" /> | |
| <!-- ... --> |
| var app = require('express')(), | |
| gravatar_proxy = require('./gravatar-proxy.js'); | |
| app.all('/gravatar/:hash', gravatar_proxy()); // http://localhost/gravatar/example@example.com | |
| // A sample MCE_OBJ that can load on everything, then clean itself up for the directive above. | |
| var MCE_OBJ = { | |
| selector: 'textarea', | |
| menubar: false, | |
| toolbar_items_size: 'small', | |
| plugins: 'link image code', | |
| toolbar: "undo redo | styleselect | bold italic underline | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image code", | |
| setup: function (editor) { // cleanup for angular | |
| delete MCE_OBJ.selector; |