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
[user] | |
name = Mike Lyons | |
email = [email protected] | |
[github] | |
user = mrlyons | |
token = LOLITSASECRET | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse |
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
<script> | |
/* | |
See the full details here: | |
http://www.snipe.net/2012/02/jquery-mobile-add-remove-fields-dynamically/ | |
Based on the great post by Charlie Griefer, available here: | |
http://charlie.griefer.com/blog/2009/09/17/jquery-dynamically-adding-form-elements/ | |
*/ |
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
# http://rubyquiz.com/quiz126.html | |
#!/usr/bin/env ruby -w | |
1.upto(100) do |i| | |
if i % 5 == 0 and i % 3 == 0 | |
puts "FizzBuzz" | |
elsif i % 5 == 0 | |
puts "Buzz" | |
elsif i % 3 == 0 | |
puts "Fizz" |
NewerOlder