- 1.5 pounds Ground Beef (I Used Ground Round)
- 1 Tablespoons Olive Oil
- 1 whole Large Yellow Onion, Diced
- 1 whole Green Bell Pepper, Seeded And Diced
- 3 cloves Garlic, Minced
- 1/3 cup Wine (or Low Sodium Beef Broth If You Prefer)
- 2 lbs tomatoes, peeled & crushed
- 1.5 oz tomato paste
- 1/2 teaspoon Ground Oregano
- 1/2 teaspoon Ground Thyme
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlueColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECYw | |
LjExMTU1NjIxNzEgMC4xNDQyMDcxMDUgMC41ODIxMTkxNjY5ABABgALSEBESE1okY2xh | |
c3NuYW1lWCRjbGFzc2VzV05TQ29sb3KiEhRYTlNPYmplY3RfEA9OU0tleWVkQXJjaGl2 |
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
Calculating ------------------------------------- | |
dup 5.339k i/100ms | |
deep_dup 4.367k i/100ms | |
Hash[] 5.156k i/100ms | |
------------------------------------------------- | |
dup 54.493k (± 7.2%) i/s - 272.289k | |
deep_dup 45.231k (± 9.1%) i/s - 227.084k | |
Hash[] 59.868k (± 7.5%) i/s - 299.048k | |
Comparison: |
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
require 'benchmark/ips' | |
def quux(hash_arg) | |
hash_arg = hash_arg.dup | |
10.times { |i| hash_arg.merge!({ "num_#{i}" => i }) } | |
end | |
def corge(hash_arg) | |
hash_arg = Hash[hash_arg] | |
10.times { |i| hash_arg.merge!({ "num_#{i}" => i }) } |
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
require 'weather-api' | |
woeid = '12761740' | |
response = Weather.lookup(woeid, Weather::Units::FARENHEIT) | |
puts "#{response.condition.temp}\u00B0 #{response.condition.text}" |
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
require 'nokogiri' | |
require 'open-uri' | |
url = 'http://wfmu.org/currentliveshows_aggregator.php?ch=1,4,6,7,8&_=1422680555670' | |
body = open(url) | |
document = Nokogiri::HTML(body) | |
song = document.css('.bigline')[0].text.gsub(/[\n\r]/, ' ').strip | |
show = document.css('.smallline')[0].text.gsub(/[\n\r]/, ' ').strip |
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
/* | |
From https://gist.github.com/GordonDiggs/9d9eb3007055fa04f0c4 | |
Add this to your caveatPatchor.js file | |
(located at ~Library/Application Support/Propane/unsupported/caveatPatchor.js) | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
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
var clickFirst = function() { | |
var $link = $('.pretty-button.positive:not(.pressed):first'); | |
if($link.length > 0) { | |
console.log("clicking"); | |
$link.click(); | |
} else { | |
console.log("no more links"); | |
} | |
}; |
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
irb(main):001:0> defined? Object | |
=> "constant" | |
irb(main):002:0> defined? Foo | |
=> nil | |
irb(main):003:0> defined? bar | |
=> nil | |
irb(main):004:0> bar = "sup" | |
=> "sup" | |
irb(main):005:0> defined? bar | |
=> "local-variable" |
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
module Enumerable | |
def without(value) | |
reject { |i| i == value } | |
end | |
end | |
# irb(main):006:0> [1,2,3].without(2) | |
# => [1, 3] |