Skip to content

Instantly share code, notes, and snippets.

View kennygoff's full-sized avatar

Kenny Goff kennygoff

View GitHub Profile
@kennygoff
kennygoff / readme.txt
Created May 8, 2019 20:12
ESC (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@kennygoff
kennygoff / pair-programming-bunny.js
Last active May 3, 2018 22:46
Bunny with sign ascii art meme with "this is your spot" for sharing code tasks with developers
//
// | ̄ ̄ ̄ ̄ ̄ ̄|
// | this is |
// | your |
// | spot |
// |__________|
// (\__/) ||
// (•ㅅ•) ||
// / づ
//
@kennygoff
kennygoff / getline.swift
Last active August 29, 2015 14:02
Swift getline
/**
* Unfortunately, this is the only working method I've found to get
* command line user input. Right in the Swift book, Apple writes:
* "You don’t need to import a separate library for functionality
* like input/output or string handling."
* I shouldn't need to define this function.
* As I learn more about Swift I hope to replace this. #FingersCrossed
* [via http://stackoverflow.com/a/24021467/1235893]
*
* <3 @kennygoff