- GUNDAM MS戦線 0079
- DRAGONBALL Z スパーキング! ネオ
- はじめてのWii
- DORAGON QUEST SWORDS
- おどる メイド イン ワリオ
- Wii Sports
2回アクセスを行うとダウンロード画面が表示される
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
class Tree < Hash | |
def self.glob(path) | |
tree = Tree.new | |
Dir::glob("#{path}/**/*").sort.each do |dir| | |
next unless File.directory? dir | |
tree[File.dirname(dir)] ||= [] | |
tree[File.dirname(dir)] << File.basename(dir) | |
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
require 'rubygems' | |
require 'uri' | |
require 'open-uri' | |
require 'net/http' | |
require 'nokogiri' | |
class Wikipedia < Citrus::Plugin | |
def initialize(*args) | |
super | |
@prefix = @config['prefix'] || '\? *?' |
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
#!/usr/bin/env ruby | |
require 'blink1' | |
require 'net/pop' | |
module MailChecker | |
class Blink | |
def self.start | |
self.new(ENV['pop_server'], ENV['pop_port'], ENV['username'], ENV['password']).run |
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
#!/usr/bin/env ruby | |
def sample(hoge: 'arg1', fuga: 0) | |
puts "hoge => #{hoge}" | |
puts "fuga => #{fuga}" | |
end | |
sample(hoge: "XXX", fuga: "YYY") | |
#=> hoge => "XXX" | |
#=> fuga => "YYY" |
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
#!/usr/bin/env ruby | |
class Hoge | |
def fuga | |
puts "HOGE#FUGA" | |
end | |
end | |
module Fuga | |
def fuga |
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
#!/usr/bin/env ruby | |
keyword = %i(hoge fuga foo bar) | |
p keyword | |
#=> [:hoge, :fuga, :foo, :bar] |
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
class Sample{ | |
public sort(Integer[] numbers){ | |
Arrays.sort(numbers, (x, y) -> y - x); | |
} | |
} |
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
// Java1.4 で書くと... | |
public class User { | |
private String name; | |
public void setName(String name){ | |
this.name = name; | |
} |