├── .gitignore ├── Rakefile ├── day0.json ├── day1.json ├── day2.json ├── index.haml ├── index.html ├── render.rb └── schedule.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /.cache 2 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/Rakefile -------------------------------------------------------------------------------- /day0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/day0.json -------------------------------------------------------------------------------- /day1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/day1.json -------------------------------------------------------------------------------- /day2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/day2.json -------------------------------------------------------------------------------- /index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/index.haml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/index.html -------------------------------------------------------------------------------- /render.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/render.rb -------------------------------------------------------------------------------- /schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miyagawa/yapcasia2015/HEAD/schedule.yml --------------------------------------------------------------------------------