Coldbrew coffee recipe that can fit in a 1-liter Nalgene bottle
- 120 g of french-press grind coffee
- 800 ml of water
Coldbrew coffee recipe that can fit in a 1-liter Nalgene bottle
/*! | |
query-string | |
Parse and stringify URL query strings | |
https://github.com/sindresorhus/query-string | |
by Sindre Sorhus | |
MIT License | |
*/ | |
(function () { | |
'use strict'; | |
var queryString = {}; |
Notes for Open Source Bridge 2015
/** | |
* Get the total time for the specified timers, counting parallel time only | |
* once if no timers match the filter, return 0. | |
* @param {String} filter - 'contains'-filter by name | |
*/ | |
Timer.getTotalTime = function ( filter ) { | |
// Sort timers by start time, ascending | |
var sortedTimers = _.sortBy( Timer.getTimers( filter ), 'startTime' ); |
Notes about movies showing at Sundance Cinemas that we both might like
Fallout 1 was originally designed to run at 640x480 resolution. I wanted to run the Mac OS X version of Fallout on my MacBook 11", which has a 1366x768 display. There is a [high resolution patch][hi-res], but it only supports the Windows version of Fallout.
Turns out that the OS X version of Fallout runs through Wine, so we can get this patch working with just a few configuration changes:
Note for Fallout 2 users: The process for Fallout 2 is essentially the same, with a different patch, and some minor pathing differences. Other than that, the process is exactly the same!
I had trouble getting Steam's version of Fallout 3 to work on my MacBook Pro in Windows. The main menu would start, but the game would crash after I clicked "play", just before the intro movie.
Turns out the issue was related to my MacBook's Intel graphics chipset, an Intel Iris Graphics 5100. To get FO3 to work, I was able to use the Intel HD Graphics Bypass package to trick FO3 into thinking it's running on an Nvidia chipset.
If you're running an Intel graphics chipset, and can't get FO3 to run, this fix may work for you too:
d3d9x.dll
--> C:\Program Files (x86)\Steam\steamapps\common\Fallout 3\
C:\users\$USERNAME\Documents\my games\Fallout3\FALLOUT.ini
FALLOUT.INI
--> C:\users\$USERNAME\Documents\my games\Fallout3\
http://www.apple.com/library/test/success.html |
/** | |
* Make Kirby dance in your browser's JavaScript console. | |
* | |
* Great to run in your coworker's console when they forget to lock their computer. | |
*/ | |
var i = 0; | |
var KFRAMES = [ "<('.'<)", "^('.')^", "(>'.')>", "^('.')^" ]; | |
setInterval( function () { | |
clear(); | |
console.log( KFRAMES[ i % ( KFRAMES.length - 1 ) ] ); |