- A box of shells
- 6 Tbsp. butter
- 1 C. unseasoned breadcrumbs
- 1/4 C. all-purpose flour
- 1/8 C. minced leeks
- 2 C. milk
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
<div style="width:100%; font-family:serif;font-size:16px;text-align:justify;"> | |
<div style="font-weight:900;text-align:center;font-size:48px;border-bottom:3px solid black;font-variant:small-caps;margin-bottom:0px;"> | |
The Eggbug Times | |
</div> | |
<div style="font-style:italic; font-size:18px;text-align:center;"> | |
the fourth website to ever exist | |
</div> | |
<div style="text-transform:uppercase;font-size:48px;text-align:center;"> |
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
class Mapping { | |
// Subclasses define at least @@iterator(). | |
@@iterator() { | |
throw TypeError("abstract operation") | |
} | |
// Mutable subclasses also define set() and delete(). | |
set(key, value) { | |
throw TypeError("mapping is not mutable"); | |
} |
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Espresso Soda.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
".gitkeep", | |
"dump.rdb" | |
], |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: