Skip to content

Instantly share code, notes, and snippets.

@Haroperi
Haroperi / timer.rkt
Created June 28, 2012 16:00
timer with racket/gui
#lang racket/gui
; DrRacket, version 5.2.1
; 情報科学類ソフトウェアサイエンス主専攻実験
; M.NAKAJIMA
; 2012/06/29
; Create a window and show message.
(define frame (new frame% [label "Timer"]))
(define msg (new message% [parent frame]
@Haroperi
Haroperi / pankuz.js
Created June 25, 2012 05:00
パンくずリスト with js
// add following HTML to your HTML file.
// <div id="pankuz"></div>
// <script type="text/javascript" src="pankuz.js"></script>
// definition of each pages
table = {
"foo.github.ac.jp": {
"name": "foo github",
"directory": {
"name": "the title of this directory",
@Haroperi
Haroperi / listgen.rb
Created April 2, 2012 01:25
Freshman list
#coding:utf-8
#
# input:
# Fullname [TAB] College [TAB] Prefecture [TAB] School code [TAB] School name
#
require 'CSV'
require 'pp'
require 'nkf'