Skip to content

Instantly share code, notes, and snippets.

View masakick's full-sized avatar

Masaki Yamabe masakick

View GitHub Profile
@masakick
masakick / index.html
Last active August 28, 2015 07:42
TOKYO2020 first proposal
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
@masakick
masakick / test.txt
Created July 31, 2015 07:28
this is test
aaa
bbb
ccc
<html>
<head><title>test</title></head>
<body>
<h1>hello world</h1>
<p>just test</p>
</body>
</html>
@masakick
masakick / 0_reuse_code.js
Last active August 29, 2015 14:26
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@masakick
masakick / index.html
Last active August 29, 2015 14:26
TOKYO2020
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
@masakick
masakick / index.html
Last active August 29, 2015 14:26
TOKYO2020 Interactive
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
@masakick
masakick / index.html
Created November 8, 2015 05:48
perlin walk
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>p5.js practice</title>
</head>
<body>
<script src="http://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.js"></script>
<script>
/*
* Swarm trajectory
Copyright (c) 2015 Masaki Yamabe.
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
* note
it's required 'Processing v2.2.1' and 'iGeo v0.9.1.6'
@masakick
masakick / 01_01_variables.pde
Last active April 20, 2016 04:14
変数の代入や計算
int a, b, c;
a = 10;
b = 5;
c = a + b;
println(c);
float d,e,f;
d = 3.14;
e = 1.68;
f = d - e;
@masakick
masakick / sfc_design_and_programing.md
Last active April 26, 2016 17:33
SFC春学期「デザインとプログラミング」授業メモ