Skip to content

Instantly share code, notes, and snippets.

View shigehiro-yanbe's full-sized avatar

shigehiro.yanbe shigehiro-yanbe

View GitHub Profile
@shigehiro-yanbe
shigehiro-yanbe / Program.cs
Last active October 4, 2018 09:40
IronPythonを利用してC#からpythonを呼んでみるテスト
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Scripting.Hosting;
using SheetType = System.Collections.Generic.List<
System.Collections.Generic.Dictionary< string, object > >;
using RecordType = System.Collections.Generic.Dictionary< string, object >;
@shigehiro-yanbe
shigehiro-yanbe / constants.js
Last active April 24, 2017 05:36
ライフゲーム
var PIXEL_SIZE = 8;
var ModelEvent = {
Update: 0,
Play: 1,
Stop: 2,
SizeChange: 3,
}