- Dragon Quest VIII: Journey of the Cursed King
- Shin Megami Tensei: Nocturne
- Tales of the Abyss
- Rogue Galaxy
- Shin Megami Tensei: Persona 4
This file contains 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
#! /usr/bin/env bash | |
# install: | |
# wget https://gist.githubusercontent.com/vaxinate/2d85f54ae6d279531f45bb8ec5dcd1a8/raw/1b89b34bdedea60394c445e97688d90924022af6/slackdarkmode.sh | |
# sudo cp slackdarkmode.sh /usr/bin/fixslack | |
# usage: | |
# fixslack | |
fixslack(){ | |
FILEPATH=/Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js |
This file contains 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
# Write a method called `word_wrap` that takes 1 to 2 arguments. | |
# The first argument is a string. | |
# The second argument is optional, and represents a maximum line length. The | |
# default value should be 80. | |
# `word_wrap` should a string formatted such that no line is longer than the | |
# line length specified by the second argument (i.e. no more than N characters | |
# between newlines). | |
# You should not break words apart, however, you can assume that the line width | |
# will never be shorter than the longest word. |
This file contains 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
#!/usr/bin/env ruby | |
require 'open-uri' | |
require 'json' | |
`say #{JSON.parse(open('https://raw.github.com/ChaseFlorell/jQuery.ProfanityFilter/master/swearWords.json').read).sample}` |
This file contains 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
/** | |
* Intelligent Traceroute | |
* | |
* Do a traceroute on a domain, prints a json array | |
* of the hops with their physical locations. | |
* | |
* //Example | |
* node trace.js google.com | |
* | |
* npm install traceroute async underscore request |
This file contains 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
class Player | |
def initialize(window) | |
@bandit_sprite = Gosu::Image.new(window, "bandit.bmp", false) | |
@x = @y = 0 | |
end | |
def draw | |
@bandit_sprite.draw(24*@x, 24*@y, 1) | |
end |