Skip to content

Instantly share code, notes, and snippets.

View Tsutomu-KKE's full-sized avatar

Saito Tsutomu(Pr) Tsutomu-KKE

View GitHub Profile
@Tsutomu-KKE
Tsutomu-KKE / Calendar
Created July 4, 2014 22:15
カレンダー
{
"metadata": {
"name": "",
"signature": "sha256:b45ceea927045afbfe8a38cf913bda18cfa4f98fb523884ab69f9d98cdbbb699"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@Tsutomu-KKE
Tsutomu-KKE / 90ルール
Created July 4, 2014 22:05
セル・オートマトン
{
"metadata": {
"name": "",
"signature": "sha256:6a4d0c3abef8b78599e962cd0beef599a2b447b41801ce31cf34ad2157c5eaa3"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
@Tsutomu-KKE
Tsutomu-KKE / Logo
Last active August 29, 2015 14:03
LOGO - turtle graphics
@Tsutomu-KKE
Tsutomu-KKE / Controls.OfType
Created August 25, 2012 05:36
Set Checked=true of all controls which is CheckBox in a GroupBox
foreach (var cb in groupBox1.Controls.OfType<CheckBox>()) cb.Checked = true;