時間 | 内容 |
---|---|
1000-1010 | オープニング |
1010-1030 | Session1 |
1030-1050 | Session2 |
1050-1105 | 休憩 |
1105-1125 | Session3 |
1125-1145 | Session4 |
1145-1245 | お昼休み |
1245-1305 | Session5 |
This file contains hidden or 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
// ==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, "状大"); |
This file contains hidden or 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
[package] | |
name = "hello_world" | |
version = "0.1.0" | |
authors = [ "Your name <[email protected]>" ] |
This file contains hidden or 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
fn main() { | |
println!("Hello, world!"); | |
} |
This file contains hidden or 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
(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) |
This file contains hidden or 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
(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" |
This file contains hidden or 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
// ==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"); |