Skip to content

Instantly share code, notes, and snippets.

View shizone's full-sized avatar

SUMIDA Yuki shizone

View GitHub Profile
@shizone
shizone / gbdaitokai_timetable2016.md
Last active June 6, 2016 09:20
合同勉強会 in 大都会岡山 -2016 Winter-のタイムテーブル案
時間 内容
1000-1010 オープニング
1010-1030 Session1
1030-1050 Session2
1050-1105 休憩
1105-1125 Session3
1125-1145 Session4
1145-1245 お昼休み
1245-1305 Session5
// ==UserScript==
// @name Joudai
// @namespace http://shizone.github.io/
// @description Joudai
// @include http://www.apple.com/jp/ipad-pro/
// ==/UserScript==
(function() {
document.body.innerHTML = document.body.innerHTML.replace(
/壮大/g, "状大");
@shizone
shizone / Cargo.toml
Last active August 29, 2015 14:21
Cargo setting file
[package]
name = "hello_world"
version = "0.1.0"
authors = [ "Your name <you@example.com>" ]
@shizone
shizone / main.rs
Created May 22, 2015 10:47
Hello Rust
fn main() {
println!("Hello, world!");
}
@shizone
shizone / greatest-common-divisor.clj
Last active August 29, 2015 14:19
最大公約数
(defn greatest-common-divisor [x y]
(loop [n (min x y)]
(if (and (= (rem x n) 0) (= (rem y n) 0))
n
(recur (dec n))
)
)
)
(greatest-common-divisor 12 18)
(defn reverse [x]
(loop [result nil acc (vec x)]
(if (empty? acc)
(apply str result)
(recur (conj result (first acc))
(rest acc)))))
(reverse "qwerty")
"ytrewq"
@shizone
shizone / dankogai.user.js
Created February 5, 2015 12:38
DanKogai
// ==UserScript==
// @name DanKogai
// @namespace http://shizone.github.io/
// @description DanKogai
// @include http://droidkaigi.github.io/
// ==/UserScript==
(function() {
document.title = document.title.replace(
/DroidKaigi/g, "DanKogai");
@shizone
shizone / order.scala
Created November 5, 2014 17:49
gbdaitokai2014winter order
import java.util.Random
val s = List(
"Koutarou Ishizaki",
"ryosms",
"Takafumi Yoshida",
"英吉",
"Katsuhiro Masaki",
"山本裕介",
"Tomohiko Himura",