- 2 C water (room temp)
- 2 packages quick-rise yeast or 4 1/2 tsp
- 1/2 C Vegetable Oil
- 4 T Olive Oil
- 5 1/2 C Bread Flour (I prefer King Arthur, the blue bag)
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
import os | |
import sys | |
from PIL import Image | |
""" | |
Version 0.1.0 | |
(c) 2013 John DeWyze | |
License: MIT | |
See README.md for usage guidelines | |
""" |
I hereby claim:
- I am dewyze on github.
- I am dewyze (https://keybase.io/dewyze) on keybase.
- I have a public key whose fingerprint is 25E0 E90A 6202 9B51 C006 C37D F335 437E DE58 A0E0
To claim this, I am signing this object:
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
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
# By Uğur Özyılmazel, @vigobronx | @ugurozyilmazel | |
# http://vigodome.com | http://ugur.ozyilmazel.com | http://github.com/vigo | |
def get_paged_memory_usage(match_string, paging=4096) | |
mvar = 3 | |
if match_string.split(/[^\\w]/).length > 1 | |
mvar = 4 |
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
for family in UIFont.familyNames() { | |
let familyString = family as NSString | |
println(familyString) | |
for name in UIFont.fontNamesForFamilyName(familyString) { | |
println(name) | |
} | |
} |
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
var ignore = [8,9,13,33,34,35,36,37,38,39,40,46]; | |
$('textarea[maxlength]') | |
.live({ | |
keypress: function(event) { | |
var self = $(this), | |
maxlength = self.attr('maxlength'), | |
code = $.data(this, 'keycode'); | |
// check if maxlength has a value. |