Skip to content

Instantly share code, notes, and snippets.

View masakick's full-sized avatar

Masaki Yamabe masakick

View GitHub Profile
@masakick
masakick / test.json
Last active August 6, 2023 03:28
test.json
[
{
"hoge": 0,
"piyo": 1
}
]
@masakick
masakick / index.html
Last active January 24, 2017 00:26
67ws example IOT for PC
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<title>PC側</title>
</head>
<body>
<div id="output"></div>
<script src="https://cdn.mlkcca.com/v0.6.0/milkcocoa.js"></script>
<script src="main-pc.js"></script>
</body>
@masakick
masakick / index.html
Last active January 24, 2017 00:25
67ws example IOT for SP
<body>
<div id="output"></div>
<script src="https://cdn.mlkcca.com/v0.6.0/milkcocoa.js"></script>
<script src="main-sp.js"></script>
</body>
@masakick
masakick / .block
Last active May 1, 2016 07:42
basic_rotate02 | experiments for generating pattern like tokyo2020
license: gpl-3.0
@masakick
masakick / sfc_design_and_programing.md
Last active April 26, 2016 17:33
SFC春学期「デザインとプログラミング」授業メモ
@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;
/*
* 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 / 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>
@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 / 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>