Skip to content

Instantly share code, notes, and snippets.

時間
11:00 受付開始
11:30 登利平が届く
12:40 講演者接続チェック
会議開始
13:00-13:05 オープニング
13:05-13:40 Yuguiさん講演 最後5分は質疑応答
13:40-13:50 休憩
13:50-14:15 須藤さん講演 最後5分は質疑応答
@track8
track8 / countdown_timer.rb
Last active December 14, 2015 01:29
タイマ習作
# -*- coding: utf-8 -*-
require 'gtk2'
class CountdownTimer
def initialize(minutes, &block)
@default_block = block
reset(minutes, &block)
end
def expected_time
@track8
track8 / config.ru
Created February 6, 2013 14:49
>> rackup
# config.ru
require 'rack'
require 'gdk_pixbuf2'
class AvatarClone
def call(env)
request = Rack::Request.new(env)
case request.request_method
when 'GET'
begin
#http://icpc2010.honiden.nii.ac.jp/domestic-contest/problems#section_A
class Kaku
def initialize(paterns)
@paterns = paterns
end
def ans
return "1 1" if @paterns.empty?
coordinates = @paterns.inject([[0, 0]]) do |c, p|
i = c[p[0]]
@track8
track8 / gist:3446989
Created August 24, 2012 07:09
C# hash
using System;
using System.Collections.Generic;
using System.Linq;
namespace Sample
{
class Program
{
static void Main(string[] args)
{