- Tomb Raider (2013) - really good character development, felt almost like last of us
- Witcher 2 - excellent gameplay, looking forward to 3
- Insurgency - cant stop playing
- FFXIV - time sink,looking forward to expansion
- Talos Principle - nice puzzles, both real and metaphorical, got kinda bored
- Life Is Strange - modern without being contrived or inauthentic, interesting, great sound track
- Episode 1
- Episode 2
- Episode 3
- Episode 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Babel", | |
"BracketHighlighter", | |
"Color Highlighter", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onload = function(){ | |
setTimeout(function(){ | |
window.performance = window.performance || window.mozPerformance || window.msPerformance || window.webkitPerformance || {}; | |
var t = performance.timing || {}; | |
if (!t) { | |
//fail silently | |
return; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// canvas element and 2D context | |
var canvas = document.createElement( 'canvas' ), | |
ctx = canvas.getContext( '2d' ); | |
canvas.width = 800; | |
canvas.height = 600; | |
document.body.appendChild(canvas); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### history file config | |
HISTFILE=~/.zsh_history | |
HISTSIZE=999999999 | |
SAVEHIST=$HISTSIZE | |
setopt APPEND_HISTORY | |
### better tab completion | |
autoload -U compinit | |
compinit | |
# case insensitive |