- 集まりやすい花まるに凸する
- 時間をずらして列に並ぶ時間を極力短くする
- みんなの都合の良い時間に集まって、無理なら東京駅近辺で他のものを食べる
- 八重洲の地下にいくつか思い当たるお店があったようななかったような
- 押上のトリトンに凸する
- 時間をずらして列に並ぶ時間を極力短くする
- みんなの都合の良い時間に集まって、ソラマチで何か食べる
- 錦糸町で何か食べる
- @hokkai7go の勤務先の近くにある寿司屋に行く
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 'rubygems' | |
require 'net/irc' | |
class ExampleClient < Net::IRC::Client | |
def hash_make | |
@hash = Hash.new | |
@hash["hokkai7go"] = 0.to_i | |
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
@data = Array.new() | |
Num = 5 | |
Height = 10 | |
Not_line = " " | |
Line = "---" | |
def make_data | |
Height.times do |h| | |
@data << make_line(Num) | |
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
- Taiwan | |
- NZL |
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 '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.65.tar.gz' | |
md5 '376967de2ec738eaec27f7dcf58c3c66' | |
depends_on 'readline' | |
def options |
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
/Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/engine/cairo.rb:152:in `restore': out of memory | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/engine/cairo.rb:152:in `restore_context' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/kernel.rb:58:in `ensure in draw_slide' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/kernel.rb:58:in `draw_slide' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/display/drawing-area-base.rb:307:in `draw_slide' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/element/slide-element.rb:33:in `draw' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/display/drawing-area-primitive.rb:157:in `draw_current_slide' | |
from /Users/hokkai7go/.rvm/gems/ruby-1.9.2-p290/gems/rabbit-2.0.5/lib/rabbit/renderer/display/drawing-area-primitive |
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 "net/http" | |
require "json" | |
request = Net::HTTP::Get.new("/search.json?q=railsgirls") | |
http = Net::HTTP.start('search.twitter.com') | |
response = http.request(request) | |
puts JSON.parse(response.body) |
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
Generated at Tue Apr 09 13:24:35 +0900 2013 | |
NameError: Cannot find a resource for apt_repository on ubuntu version 10.04 | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/resource_platform_map.rb:126:in `get' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/resource.rb:837:in `resource_for_platform' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/resource.rb:854:in `resource_for_node' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/mixin/recipe_definition_dsl_core.rb:58:in `method_missing' | |
/tmp/vagrant-chef-1/chef-solo-1/cookbooks/td-agent/recipes/default.rb:36:in `from_file' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/cookbook_version.rb:558:in `load_recipe' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/mixin/language_include_recipe.rb:46:in `load_recipe' | |
/opt/vagrant_ruby/lib/ruby/gems/1.8/gems/chef-10.14.2/bin/../lib/chef/mixin/language_include_recipe.rb:33:in `include_reci |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "precise32" |
OlderNewer