(for 4 servings)
- 1/2 cup brown rice syrup
- 1/4 cup rice wine vinegar
- 2 1/2 teaspoons cornstarch (for thickening)
- 2 teaspoons tamari (or soy sauce)
| git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/" |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "time" | |
| "github.com/aws/aws-sdk-go/aws" | |
| "github.com/aws/aws-sdk-go/aws/session" | |
| "github.com/aws/aws-sdk-go/service/ec2" |
| # Install with: | |
| # bash < <(curl -L https://raw.github.com/gist/1333785) | |
| # | |
| # Reference: http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug | |
| echo "Installing ruby-debug with ruby-1.9.3-p0 ..." | |
| curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem | |
| curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem |
| require "rubygems" | |
| require "builder" | |
| builder = Builder::XmlMarkup.new | |
| xml = builder.bla "☃" | |
| puts xml | |
| __END__ | |
| <bla>☃</bla> |
| <entry> | |
| <forum-id>21</forum-id><title><![CDATA[Quick Start]]></title><body><![CDATA[ | |
| <h1><a name="quick_start" id="quick_start">Quick Start</a></h1> | |
| <div class="level1"> | |
| <p> | |
| <style type="text/css"> | |
| div.quickstart {clear:both; float:left; width: 832px; margin-top: -30px;} | |
| .quickstart ul {clear:both !important; float:left !important; line-height:0 !important; margin:0px !important; padding:0px !important;} |
| require "rubygems" | |
| require "benchmark" | |
| require "action_view" | |
| obj = { | |
| :stuff => %w[ ant bee cat dog eel fly gnu ], | |
| :yeah => { | |
| :nacho => "cheese" | |
| }, | |
| :junk => [12,2312,223,33,434,45,454,345345,213,32,32,45,45,54,45,456,56,56,234,34,34,56,56,56,56,56,5677,567,234,34,234,345,345,435,345,3456] |
| require "rubygems" | |
| require "benchmark" | |
| require "rinku" | |
| require "action_view" | |
| require "erb" | |
| include ActionView::Helpers::TextHelper | |
| include ActionView::Helpers::TagHelper | |
| include ERB::Util |
| require "benchmark" | |
| N = 300_000 | |
| Benchmark.bmbm do |x| | |
| x.report("define_method") do | |
| class Foo | |
| (1..N).each do |i| | |
| define_method "method_#{i}".to_sym do | |
| "bla_#{i}" | |
| end |
| diff --git a/Library/Formula/mysql.rb b/Library/Formula/mysql.rb | |
| index 43962b6..c504dd7 100644 | |
| --- a/Library/Formula/mysql.rb | |
| +++ b/Library/Formula/mysql.rb | |
| @@ -2,8 +2,8 @@ require 'formula' | |
| class Mysql <Formula | |
| homepage 'http://dev.mysql.com/doc/refman/5.1/en/' | |
| - url 'http://mysql.mirrors.pair.com/Downloads/MySQL-5.1/mysql-5.1.57.tar.gz' | |
| - md5 '8d6998ef0f2e2d1dac2a761348c71c21' |