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
The most important part of good guacamole is getting good avocados. Ripe avocados are somewhat soft to the touch. If you can't find ripe avocados, leave avocados in the sun for a few days and they'll be closer. | |
All proportions are vague estimates, because I don't take measurements when I make guacamole, I just do what looks and tastes right. But here are my best guesses. | |
Standard Guacamole: | |
- 6 avocados, mashed with a fork | |
- 1/2 lime, squeezed | |
- 1/2 red onion, diced | |
- 1 plum tomato, seeds removed, diced | |
- 1/4 cup cilantro, chopped |
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
Mayan Hot Chocolate | |
Makes 6-8 mugs | |
2 cups water | |
1 chile pepper, cut in half, seeds removed (with gloves) | |
5 cups light cream or whole or nonfat milk | |
1 vanilla bean, split lengthwise | |
1 to 2 cinnamon sticks | |
8 ounces bittersweet chocolate or 3 tablets Mexican chocolate, cut into 1/4-inch pieces | |
2 tablespoons sugar or honey (to taste) |
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
<!-- jade is an html templating language --> | |
<!-- say you have this html --> | |
<div class="my-btn-group"> | |
<div class="btn-group"> | |
<div class="button.btn dropdown-toggle"> | |
<i class="icon-save">Save</i> | |
</div> |
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 Model | |
# static | |
@prop: (prop) => | |
(val) => | |
# won't work - what is Model.set? | |
@set prop, val | |
# instance | |
prop: (prop) => |