I hereby claim:
- I am danreeves on github.
- I am danreeves (https://keybase.io/danreeves) on keybase.
- I have a public key whose fingerprint is E230 EFC4 9EE1 0E31 9C0F D345 DCDE 2CA4 7555 5C87
To claim this, I am signing this object:
| body { | |
| background: #333333; | |
| color: #ddd; | |
| white-space: pre; | |
| font-family: monospace; | |
| } | |
| a { | |
| color: #ff9000; | |
| } |
| ### history file config | |
| HISTFILE=~/.zsh_history | |
| HISTSIZE=999999999 | |
| SAVEHIST=$HISTSIZE | |
| setopt APPEND_HISTORY | |
| ### better tab completion | |
| autoload -U compinit | |
| compinit | |
| # case insensitive |
| { | |
| "always_show_minimap_viewport": true, | |
| "auto_complete_delay": 0, | |
| "binary_file_patterns": | |
| [ | |
| ".git/*", | |
| "converted-html/*" | |
| ], | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/SublimeLinter/One Dark (SL).tmTheme", |
| #!/bin/zsh | |
| if [[ $1 == '' ]]; then | |
| print 'Please pass in a status code, e.g. 404' | |
| exit 2 | |
| fi | |
| A='/\>(' | |
| B='[^\<]*?)\</ and print $1' | |
| REGEX=$A$1$B |
| // canvas element and 2D context | |
| var canvas = document.createElement( 'canvas' ), | |
| ctx = canvas.getContext( '2d' ); | |
| canvas.width = 800; | |
| canvas.height = 600; | |
| document.body.appendChild(canvas); | |
I hereby claim:
To claim this, I am signing this object:
| 1. Transistor | |
| 2. Wolfenstein: The New Order | |
| 3. Gang Beasts | |
| 4. Nidhogg | |
| 5. Divinity Original Sin | |
| Honourable mentions: | |
| Age of Wonders III | |
| Insurgency | |
| Middle-earth: Shadow of Mordor |
| var plz = require('please-ajax'); | |
| plz.get('http://reqr.es/api/users', {promise:true}) | |
| .then(function (d) { | |
| append('GET: '); | |
| append(d); | |
| append('<br>'); | |
| }); | |
| plz.delete('http://reqr.es/api/users/1', {promise:true}) |
| window.onload = function(){ | |
| setTimeout(function(){ | |
| window.performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {}; | |
| var t = performance.timing || {}; | |
| if (!t) { | |
| //fail silently | |
| return; | |
| } |