- jenkins-runner.sh (下にあるやつ)
- jenkins.plist (下にあるやつ)
- jenkins.war http://mirrors.jenkins-ci.org/war/latest/jenkins.war
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.yaraki.playground | |
import android.app.Application | |
import android.arch.lifecycle.AndroidViewModel | |
import android.content.Context | |
class MainViewModel(application: Application) : AndroidViewModel(application) { | |
companion object { | |
const val PREF = "main" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var SCREEN_SIZE = 500; // キャンバスの幅 | |
var SIDE_CELLS = 200; // 一辺のセルの数 | |
var CELL_SIZE = SCREEN_SIZE / SIDE_CELLS; // セルの幅 | |
var FPS = 10; // フレームレート | |
var canvas; //= document.getElementById('world'); | |
var context; //= canvas.getContext('2d'); | |
window.onload = function() { | |
var field = new Array(SIDE_CELLS*SIDE_CELLS); // フィールド情報 | |
var tempField = new Array(SIDE_CELLS*SIDE_CELLS); // フィールド情報の一時記憶用 |