-
rice (type: Carnaroli or Arborio)
80-100 g
per person, total:~400 g
- a bit more if you're hungry
-
one onion
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 "colorize" | |
REGISTRY = {} | |
DEBUG = false | |
SLEEP = 0.5 | |
def register(id) | |
mailbox = Queue.new | |
Thread.current[:process_id] = id | |
REGISTRY[id] = mailbox |
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
def memory_kb | |
`ps -o rss= -p #{Process.pid}`.chomp.to_i | |
end | |
MEM_LOG = "current memory: %{mem} kB (+%{incr})".freeze | |
THR_LOG = "New Thread!".freeze | |
current_mem = 0 | |
loop do | |
m = memory_kb() |
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
defmodule Timing do | |
def now do | |
:os.system_time(:milli_seconds) | |
end | |
# broken! the block is executed immediately | |
# | |
def ftime([do: block]) do | |
t0 = now | |
{ :ok, block, now - t0 } |
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
#!/bin/bash | |
middleman build && | |
echo "--- middleman build complete" | |
git checkout master && | |
echo "--- cleaning old build" | |
(ls -1 | grep -v 'build' | xargs rm -rf ) && |
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 '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 |
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
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 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 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 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 |
NewerOlder