- 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 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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: GnuPG v1.4.11 (GNU/Linux) | |
mQINBFG5BacBEAC8rOznIaAT2l9dPVYTfQ8TWUO6lOUrmDjPNsfNlEtkpWWWfnBy | |
CUNvmbIUNhs/rqTTQa4tbkbkp0g0na2KXV/mdvxVb+vLlu0ga8SI8+74BSyrtIuo | |
bbkvOK8ezo8NgtKrZRvF4XQ73A9IS5J2as4zH8maVa/QOAR9lfbU27q8a0mPYaCX | |
TCSsL1KPw+GIa9nUEQJNtPPHdOh7tvzjZrFYPERfn3ezr6dxax/XputRdm4H7fgR | |
0Zu6CdEcJjekGy68v/QeFMC0KvQZWPWrdsZkJn9+lnentsO/KIM3OqZloBmlQJdp | |
gQ/6CY7ODZ8RsWQR0Mvt4yT1MOkyMCQ90xz0itzqre+0xwDioae6Mldmg5XL/t/U | |
rdr78+68kls1Jmgfreze+Ab/ON7znbJmqxr2fxKWl6puKNDtYYBWYNdQBYYOT/Au |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Version: OpenPGP:SDK v0.9 | |
xsBNBFG9DlkBCACmwn6bdSM5Jg5/OIIw0q8Bkt7t08cwnVT+xBfq0yZ7jErQgVXZ | |
gZKNoTMRi4gmdY0vfNDTz22egWeOgscChtkavuBu9PC6Y0SoOAUGOE3/1FASztUd | |
Dcc1MB8ps8TOYWdhJZGjjdu60xVKe09jiYaE/zxN4g5GCrn0v9BvVkoa4BrGam/r | |
o8bWe8SHtobjPlQvhh/jzV52M/x5/99MmiFB59AN52cyx1xsS89LF3tDobrxmN9N | |
v4wpkl6GtWhDRTzVjhKDc66WAjlg59RvTD8LTjIqUG95i9/7oV0d5PM4l+p13URs | |
sKGY/yxvQuCxn3rGTEO7pfrPxGkS8/FpuunhABEBAAHNJk5vb24gU2lsayAoR2Vu | |
ZXJhdGVkIGJ5IFJldHJvU2hhcmUpIDw+wsBfBBMBAgATBQJRvQ5ZCRAhDkn/QH2Z |
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
{ "version": 1.0, "class": "P", | |
"relations": { | |
"contained_in": [ | |
{"class": "NP" }, | |
{"class": "EXP" }, | |
{"class": "K", "condition": "Exponential time hypothesis", "ref": "Fake09"} | |
], | |
"equals": [ |
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
git add . && git commit -m "Auto-save." |
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
Constantly block the negative navigators. | |
Mix the adjectives. | |
Park all those malfunctions for the limes you cannot tighten. | |
Start conducting the dimmer creatings by mental acts. | |
Always go an outside love. |
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) |
OlderNewer