- Memory upgrade for MacBook Pro
- Clever Coffee Dripper
- fingerless gloves, or, gloves that can be fingerless or not
- some of George W. Davis's old diaries (for loan or keeps)
- Val's old racket (restrung)
- Band shirts (size M)
- The Flaming Lips
- Dr. Dog
- The Sea and Cake
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
<br><br><br> | |
<div style="margin-left: auto; margin-right: auto; width: 70%;"> | |
<b>Results from a simulation of 100,000 rounds of <a href="https://en.wikipedia.org/wiki/One-Handed_Solitaire">One-handed solitaire</a>.</b> | |
<br> | |
<i>Median and Mode result is 12 cards. Mean is 13.3.</i> | |
<br> | |
<i>Odds of winning a single game are 0.71%.</i> | |
<br> | |
<b><i>You must play ~420 games to be guaranteed of winning at least once (with 95% confidence).</i></b> | |
</div> |
- The dough spreads (things melt).
- The edges set (before the center does).
- The cookie rises (water from melting reacts with baking soda, which in turn reacts with acids).
- Egg proteins and starches set (cookie's shape finalizes).
- Sugar caramelizes (producing richer, sweeter flavors).
- The Maillard reaction occurs (flour proteins and eggs brown with the sugar, producing nutty, toaster flavors).
- The cookie cools (liquefied sugar hardens, producing toffee-like texture).
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
// in C you can express metaphors, e.g. "Noon's house is a bear": | |
#include "stdio.h" | |
typedef struct { | |
char *street; | |
int street_number; | |
} noons_house_t; | |
typedef struct { |
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 infile = 'points.csv' | |
var dark_color = '#777777' | |
var margin = { | |
top: 30, | |
right: 20, | |
bottom: 20, | |
left: 20 | |
}; | |
var width = 90; | |
var height = 90; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This was surprisingly simple given how many things there were to do! (Usually it seems like something breaks when there's this many steps between me and installing something.)
- Install Sublime Text 2
- Install Sublime Text's Package Control
- Configure things so you can open files with
subl
from command line - Install SublimeREPL using Pacakge Control.
- Install homebrew
- Install leiningen by typing
brew install leiningen
at the command line.
For some matrix A:
- A is symmetric ⇔ A = A'
- A is positive definite ⇔ for every non-zero vector x, x'Ax > 0
- A is non-singular ⇔ A is invertible ⇔ detA≠0 ⇔ there exists B such that AB = BA = I
- A is a distance matrix ⇔ A is symmetric and diag(A) = 0
- A is non-singular ⇒ AA' is positive definite
- A is symmetric ⇒ AA is positive definite