- 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).
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
(* | |
This script analyzes the dependencies between top level types in a .NET Assembly. | |
It is then used to compare the dependency relationships in some F# projects with those in some C# projects. | |
Note that no attempt has been made to optimize the code yet! | |
REQUIRES: | |
* Mono.Cecil for code analysis | |
From http://www.mono-project.com/Cecil#Download |
This file contains 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
I wasn't first to get the key. Nor was I second, third, or even fourth. I'm probably not even the | |
10th to get it. But I'm happy that I was able to prove to myself that I too could do it. | |
The sleepless adventure began yesterday afternoon, 2014-04-12 15:19:04.827516279 -0700. | |
First, I have to admit I was a skeptic. Like the handful of other dissenters, I had initially | |
believed that it would be highly improbable under normal conditions to obtain the private key | |
through exploiting Heartbleed. So this was my motivation for participating in Cloudflare's | |
challenge. I had extracted a lot of other things with Heartbleed, but I hadn't actually set out to | |
extract private keys. So I wanted to see first-hand if it was possible or not. |
This file contains 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
{-# LANGUAGE BangPatterns #-} | |
-- Preview on Youtube: http://www.youtube.com/watch?v=bK01Bgh32Sc | |
import Data.Complex | |
type C = Complex Float | |
type Color = (Float,Float,Float) | |
type Point = (Float,Float) |
This file contains 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
#!/usr/bin/env node | |
// npm install connect | |
var port = process.argv[2]; | |
var cwd = process.cwd(); | |
if(! port) { | |
throw("Usage: serve <port>"); | |
} |
This file contains 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
{-# LANGUAGE QuasiQuotes #-} | |
import Text.InterpolatedString.Perl6 -- For tests | |
import System.Environment (getArgs) | |
import Data.List.Split (splitOn) | |
import Data.List (intercalate) | |
-- IO: | |
main :: IO () |
This file contains 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 the Beginning was the Command Line | |
by Neal Stephenson | |
About twenty years ago Jobs and Wozniak, the founders of Apple, came up with the very strange idea of selling information processing machines for use in the home. The business took off, and its founders made a lot of money and received the credit they deserved for being daring visionaries. But around the same time, Bill Gates and Paul Allen came up with an idea even stranger and more fantastical: selling computer operating systems. This was much weirder than the idea of Jobs and Wozniak. A computer at least had some sort of physical reality to it. It came in a box, you could open it up and plug it in and watch lights blink. An operating system had no tangible incarnation at all. It arrived on a disk, of course, but the disk was, in effect, nothing more than the box that the OS came in. The product itself was a very long string of ones and zeroes that, when properly installed and coddled, gave you the ability to manipulate other very long strings of o |
This file contains 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/bash | |
cabal init \ | |
--version="0.1.0.0" \ | |
--non-interactive \ | |
--no-comments \ | |
--minimal \ | |
--license=MIT \ | |
--author="Lyndon Maydwell" \ | |
[email protected] \ |
This file contains 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/bash | |
echo 'digraph {' | |
data="$(grep '^data' Prototype.hs | sed 's/data //; s/ .*//')" | |
for i in $data | |
do | |
echo "$i;" | |
targets="$(grep "data $i .*=" Prototype.hs -A 6 \ | |
| sed '/^$/,$d' \ | |
| grep '::' \ |
OlderNewer