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
body { | |
position : absolute; | |
top : 0px; | |
bottom : 0px; | |
left : 0px; | |
right : 0px; | |
padding : 0px; | |
margin : 0px; | |
} |
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
# encoding: utf-8 | |
class Module | |
def decorator name, &wrapper | |
define_singleton_method name do |*names, **opts| | |
if names.length != 0 | |
@ignore_wrap = true | |
names.each do |nm| | |
define_method nm, &wrapper.call(instance_method(nm), **opts) |
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
var Tetrao = { | |
BLOCKS : [ | |
'p', 'blockquote', 'div', 'address' | |
], | |
LINE_WIDTH : 80, | |
normalize : function (s) { | |
s = s.replace(new RegExp(' ', 'gm'), ' '); |
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
function FindProxyForURL(url, host) { | |
if (dnsDomainIs(host, ".i2p")) { | |
return "PROXY 127.0.0.1:4444"; | |
} else { | |
return "DIRECT"; | |
} | |
} |
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
# encoding: utf-8 | |
require 'drb' | |
# DRb.start_service | |
a = DRbObject.new nil, 'druby://localhost:9000' | |
p a.alpha(1) | |
p a.alpha(nil) | |
p a.alpha("beta") |
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
# encoding: utf-8 | |
class Alpha | |
attr_accessor :alpha | |
def beta | |
self.alpha = 1 | |
alpha = 2 | |
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
# encoding: utf-8 | |
puts 'begin' | |
th = Thread.new do | |
(1..3).each { |i| puts i } | |
end | |
# sleep 0 | |
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
# encoding: utf-8 | |
require './prop00' | |
class Alpha | |
property :alpha, :beta | |
attr_accessor :gamma | |
end | |
a = Alpha.new |
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
# encoding: utf-8 | |
def log msg, file, line | |
$stderr.puts "[#{file}:#{line}] #{msg}" | |
end | |
log 'Сообщение', __FILE__, __LINE__ |
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
# encoding: utf-8 | |
require 'pp' | |
require 'rack' | |
app = proc do |env| | |
[ | |
200, | |
{ 'Content-Type' => 'text/plain' }, | |
[ env.pretty_inspect ] |
OlderNewer