- Get the bacon pieces fried, about 10 slices. Save the grease, set it aside.
- Beat two eggs till frothy
- To the eggs, add:
- 1 cup yellow cornmeal
- 1 can creamed corn
- 1/2 teaspoon baking soda plus 3/4 cup milk ( this helps to dissolve the soda so you wont get lumps(yuk) poor milk slowly into soda, just enough to dissolve it, then use rest of milk to clean extra that may sit on the bottom of the cup.
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
from itertools import izip, product, tee | |
# Logic functions: take and return iterators of truth values | |
def AND(a, b): | |
for p, q in izip(a, b): | |
yield p and q | |
def OR(a, b): | |
for p, q in izip(a, b): |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<interface> | |
<!-- interface-requires gtk+ 3.0 --> | |
<object class="GtkListStore" id="myliststore"> | |
<columns> | |
<!-- column-name code --> | |
<column type="gchararray"/> | |
<!-- column-name legible --> | |
<column type="gchararray"/> | |
</columns> |
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
# Lets get the apt stuff taken care of first. | |
sudo add-apt-repository -y ppa:webupd8team/sublime-text-3 | |
sudo add-apt-repository -y ppa:numix/ppa | |
sudo apt-get update | |
sudo apt-get install --yes \ | |
sublime-text-installer \ | |
numix-gtk-theme \ | |
numix-icon-theme-circle \ | |
curl \ | |
ttf-inconsolata |
Noon - 3.PM.
- Portfolio
- Code Snippets
- Ruby Lesson
- Repair Linux Parition
- The Ponies svg tilemap
- Github Markdown Wiki Link compatability with gollum
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
// ==UserScript== | |
// @name New Script | |
// @include http://mlp-fim-wallpapers.deviantart.com/ | |
// @exclude http://mlp-fim-wallpapers.deviantart.com/ | |
// ==/UserScript== | |
console.log('Deviant Art Pony Wallappers!'); | |
galleryPages = document.querySelectorAll('.tv150'); | |
thumbNails = document.querySelectorAll('.thumb'); |
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
[ | |
{ "keys": ["ctrl+q"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+q"], "command": "toggle_comment", "args": { "block": true } }, | |
{ "keys": ["ctrl+shift+w"], "command": "close" }, | |
{ "keys": ["ctrl+space"], "command": "auto_complete" }, | |
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context": | |
[ | |
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" }, | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }, | |
{ "key": "setting.tab_completion", "operator": "equal", "operand": true } |
NewerOlder