Skip to content

Instantly share code, notes, and snippets.

View shipstar's full-sized avatar

Kyle Shipley shipstar

  • Fishers, IN
View GitHub Profile
@shipstar
shipstar / test.lua
Created May 9, 2022 15:44
lua test
function sayHello()
print("hello world")
end
@shipstar
shipstar / cipher.md
Last active October 4, 2015 18:28
Vigenere Cipher Example -- Landsliders puzzle

You'll need to use the Vigenère table to calculate the encrypted text.

I'll walk through the encryption first; decryption just involves working backwards.

WARNING: There are spoilers below about the outcome of the Landsliders puzzle.

  1. Write the phrase you want to encrypt:
WWWWHATHAPPENEDINLANDSLIDERSCOM
@shipstar
shipstar / examples.txt
Created September 7, 2015 12:17
Falcor + React Examples I've found
https://github.com/ekosz/postcard-sender
- Incorporated with React router
- Parent needs to know all fields children will use
https://gist.github.com/btholt/a5908e50eec2941ae6d7
- Does some light query consolidation (see `_.union(Plot.queries.movie(), Title.queries.movie(), Year.queries.movie())`)
- Doesn't use Flux, but I can see how it could be adapted
@shipstar
shipstar / simple.rb
Last active April 11, 2017 19:14
Kyle's solutions to Winston's thing
def find_duplicates(arr)
arr \
.group_by(&:itself)
.map { |el, appearances| el if appearances.size > 1 }
.compact
end
# Walkthrough:
# 1. [1,2,2,3,3,3].group_by(&:itself)
# => { 1 => [1], 2 => [2,2], 3 => [3,3,3] }
@shipstar
shipstar / games.md
Last active August 29, 2015 14:05
Toumey's Games We Don't Own

SNES

  • Bubsy 2
  • Contra 3
  • Earthworm Jim
  • Fatal Fury
  • Super Gameboy?
  • Super R-Type
  • Turtles in Time

N64

@shipstar
shipstar / services.md
Last active May 6, 2019 05:10
GitHub + Kanban

Spent a couple minutes poking around at kanban-like alternatives/supplements to labeling:

GitHub uses this and Huboard internally for some projects. Supported by Rally, so probably not going away anytime soon.

GitHub uses this and Waffle internally for some projects.

Looks interesting. (Marking issues from the command-line? Sweet!) It's also pricey.

@shipstar
shipstar / npm list
Last active August 29, 2015 14:02
node modules
generic-rpg@0.0.0 /Users/kshipley/Programming/games/generic-rpg
├─┬ aliasify@1.4.0
│ └─┬ browserify-transform-tools@1.2.1
│ ├─┬ falafel@0.3.1
│ │ └── esprima@1.1.0-dev (git://github.com/substack/esprima#0a7f8489a11b44b019ce168506f535f22d0be290)
│ └── through@2.3.4
├─┬ browserify@4.1.2
│ ├─┬ assert@1.1.1
│ │ └── util@0.10.2
│ ├─┬ browser-pack@2.0.1
@shipstar
shipstar / links.txt
Created May 11, 2014 13:16
Lean Workshop
@shipstar
shipstar / anime.md
Last active September 19, 2022 06:18
Anime recommendations / thoughts

This list is like noob anime central. It's basically like saying, "Do you like jazz? I love jazz! Miles Davis is my favorite!"

(I'm not sure that I actually like anime. I just like anime auteurs like Shinichiro Watanabe, Hayao Miyazaki, Satoshi Kon, etc.)

tl;dr: Watch Cowboy Bebop/Samurai Champloo for a series and anything Miyazaki or Grave of the Fireflies for a movie.

Series

  • Cowboy Bebop (One of the greatest things ever, although the movie was meh. Also one of the only ones I can safely reocmmend in English.)
  • Samurai Champloo
  • Kids on the Slope (I generally don't like "slice-of-life," but I love jazz and Yoko Kanno and Shinichiro Watanabe, so I loved this.)
@shipstar
shipstar / 0_reuse_code.js
Created January 23, 2014 22:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console