Skip to content

Instantly share code, notes, and snippets.

View TakizawaAkira's full-sized avatar

takizawa akira TakizawaAkira

View GitHub Profile
@TakizawaAkira
TakizawaAkira / server.js
Created June 24, 2017 12:30
node-server
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
var server = http.createServer();
server.on('request', doRequest);
// ファイルモジュールを読み込む
var fs = require('fs');
@TakizawaAkira
TakizawaAkira / RiotJS_BinaryClock.html
Created January 21, 2017 11:49
バイナリ時計をRiotJSに書き換え
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/riot/2.0.15/riot+compiler.min.js"></script>
</head>
<body>
<binary_clock></binary_clock>
<style>
@keyframes binary_clock_kf {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(180deg); }
@TakizawaAkira
TakizawaAkira / ThreeJSのランダムに地面生成
Last active June 26, 2016 03:00
ThreeJSで基本的なキューブ描画
<!--
lib\three.js-master\build\three.min.js
lib\three.js-master\examples\fonts\helvetiker_regular.typeface.js
lib\three.js-master\examples\js\controls\OrbitControls.js
-->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">