I hereby claim:
- I am seitensei on github.
- I am seitensei (https://keybase.io/seitensei) on keybase.
- I have a public key whose fingerprint is 9AEF C648 EF05 FCC5 8018 BBFD 1B23 9D2C 3CF5 69A0
To claim this, I am signing this object:
| import java.util.ArrayList; | |
| fun main(args: Array<String>) { | |
| var i:Int = 1 | |
| var count:Int = 0 | |
| var xlist = ArrayList<Int>() | |
| while(i < 101) { | |
| if((i % 3 == 0) && (i % 2 ==0)) { | |
| count++ | |
| xlist.add(i) |
| public GameStatus getGameStatus() { | |
| // iterate for both players | |
| for(int p = 0; p < 2; p++) { | |
| int counter = 0; | |
| // Check1 | |
| for(int r = 0; r < 3; r++) { | |
| // rows 0,1,2 | |
| for (int c = 0; c < 3; c++) { | |
| // columns 0,1,2 |
I hereby claim:
To claim this, I am signing this object:
| :340 | |
| throw err; | |
| ^ | |
| Error: Cannot find module 'text-buffer' | |
| at Function.Module._resolveFilename (module.js:338:15) | |
| at Function.Module._load (module.js:280:25) | |
| at Module.require (module.js:364:17) | |
| at require (module.js:380:17) | |
| at Object.<anonymous> (/usr/local/lib/node_modules/slap/lib/ui/Editor.js:10:18) | |
| at Module._compile (module.js:456:26) |
| #!/usr/bin/env python | |
| def is_function(d): | |
| """Takes a dictionary and determines if function""" | |
| for k,v in d.items(): | |
| if len(v) == 0: | |
| # Not a Function if No Output for Input | |
| return False | |
| if len(v) > 1: | |
| # Not a Function if Input has Multiple Output | |
| return False |
| source 'https://rubygems.org' | |
| gem 'rake' | |
| gem 'rack' | |
| gem 'puma' | |
| gem 'roda' | |
| gem 'haml' | |
| gem 'inflecto' | |
| gem 'rom' | |
| gem 'rom-roda' |
| #ifndef CONFIGURATION_H | |
| #define CONFIGURATION_H | |
| #include "boards.h" | |
| // This configuration file contains the basic settings. | |
| // Advanced settings can be found in Configuration_adv.h | |
| // BASIC SETTINGS: select your board type, temperature sensor type, axis scaling, and endstop configuration | |
| //=========================================================================== |
| //============================================================================= | |
| // tnsi_quest_core.js | |
| //============================================================================= | |
| var Imported = Imported || {}; | |
| Imported.tnsi_quest_core = "0.0.1"; | |
| /*: | |
| * @plugindesc Common quest format |
After you made some cool games or apps with Pythonista, you may want to make it run as a standaone app on iPad/iPhone and possibly share it on the AppStore. This how-to tells you how to do it.
| package com.github.seitensei; | |
| import java.net.*; | |
| import java.io.*; | |
| public class IPFinder2 { | |
| public static void main(String[] args) throws IOException { | |
| // Get name and IP address of local host |