-
rice (type: Carnaroli or Arborio)
80-100 gper person, total:~400 g- a bit more if you're hungry
-
one onion
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
| require 'securerandom' | |
| REGEX = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])((?=.*[^\w])|(?=.*_))/ | |
| def run | |
| times = 0 | |
| word = begin | |
| times += 1 | |
| SecureRandom.urlsafe_base64 |
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
| module SendMethodList | |
| def send_method_list(*methods) | |
| results = methods.map do |sym| | |
| begin | |
| self.send(sym) | |
| rescue => error | |
| error | |
| end | |
| end | |
| end |
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
| def set_context(c) | |
| @context = c | |
| end | |
| def context | |
| @context | |
| end | |
| def with_context(cont, &block) |
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
| module Kernel | |
| TABLE_FLIP = <<-EOS | |
| (╯°□°)╯︵ ┻━┻ | |
| EOS | |
| alias_method :original_puts, :puts |
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
| # impersonation_utilities.rb | |
| require 'digest/md5' | |
| module ImpersonationUtilities | |
| SHARED_SECRET = "I'm a secret string!" | |
| TOKEN_VALID_FOR_DAYS = 1 | |
| class << self |
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
| require 'active_support/core_ext/object/try' | |
| module TryChain | |
| def try_chain | |
| @proxy = Proxy.new(self) | |
| end | |
| class Proxy |
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
| # Issue on github: | |
| # https://github.com/rack/rack/issues/337 | |
| # | |
| # Possible patch: | |
| # https://gist.github.com/psychocandy/3130349 | |
| # but I don't like the idea of monkeypatching the standard library | |
| # | |
| # Rack middleware: | |
| # http://stackoverflow.com/questions/16269897/rails-argumenterror-invalid-encoding | |
| # |
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
| i = 1000 | |
| f1 = Proc.new { |x| x * x } | |
| f2 = -> (func, int) { puts "the result is: '#{func.call(int)}', i is: '#{i}'" } | |
| def run(range, operation, printer) | |
| range.each do |i| | |
| printer.call(operation, i) | |
| end | |
| end |
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
| require 'digest/md5' | |
| require 'base32' | |
| require 'rqrcode' | |
| require 'rotp' | |
| def print_as_qr(string) | |
| qrcode = RQRCode::QRCode.new(string) | |
| filename = File.expand_path "~/Desktop/qr_#{rand(10_000)}.png" | |
| qrcode.as_png.save(filename, :fast_rgb) | |
| end |