Skip to content

Instantly share code, notes, and snippets.

View bryanveloso's full-sized avatar
😵‍💫

Bryan Veloso bryanveloso

😵‍💫
View GitHub Profile
@bryanveloso
bryanveloso / intros.md
Created October 21, 2013 19:15
A developing list of my favorite anime intro songs.

This is a work-in-progress list of my favorite anime intros. While I am not as dedicated to anime as I am to the JRPG, I have watched a good amount. That said, my memory sucks, so this list will definitely be missing a lot.

  • Tank, Seatbelts -- Cowboy Bebop (opening)
  • A Cruel Angel's Thesis, Yoko Takahashi -- Neon Genesis Evangelion (opening)
  • Period, Chemistry -- Fullmetal Alchemist: Brotherhood (fourth opening)
  • Guren no Yumiya, Linked Horizon -- Attack on Titan (first opening)
  • Ready Steady Go, L'Arc-en-Ciel -- Fullmetal Alchemist (second opening)
  • We Gotta Power, Hironobu Kageyama -- Dragonball Z (second opening)
  • Cha-La Head-Cha-La, Hironobu Kageyama -- Dragonball Z (first opening)
@bryanveloso
bryanveloso / fix_airplay.sh
Created March 11, 2013 19:02
Fix AirPlay audio when OS X refuses to select an AppleTV as an audio output.
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`
@bryanveloso
bryanveloso / S1Engine.ini
Last active July 9, 2020 02:32
My edited S1Engine configuration for TERA Online.
[URL]
Protocol=unreal
Name=Player
Map=Start.gmp
LocalMap=Start.gmp
TransitionMap=Start.gmp
MapExt=gmp
EXEName=S1Game.exe
DebugEXEName=DEBUG-S1Game.exe
SaveExt=usa
@bryanveloso
bryanveloso / ff_favorites.rst
Last active September 16, 2025 03:43
I live for the J/RPG.

This is an opinionated list of my favorite "mainline" entries in the Final Fantasy series.

  1. Final Fantasy IV
  2. Final Fantasy XIV
  3. Final Fantasy XVI
  4. Final Fantasy VII: Rebirth (Tentative)
  5. Final Fantasy VII: Remake
  6. Final Fantasy XV
  7. Final Fantasy Tactics (Preference given to the "War of the Lions" remake.)
  8. Final Fantasy XII
@bryanveloso
bryanveloso / we-support-rest.rst
Created July 19, 2012 20:52
Love for reStructuredText.
import unittest

from fake_github_api_of_death import close_issue

class Highlighting(unittest.TestCase):

    def setUp(self):
        self.tagline = "HIGHLIGHT ALL OF THE REST CODE BLOCKS!?"
@bryanveloso
bryanveloso / albums.md
Created March 20, 2012 22:55
Bryan's Favorite Final Fantasy Albums.

My Favorite Final Fantasy Albums

This is a list, but certainly not an exhaustive list of my favorite Final Fantasy albums. Albums marked in italics signify that the album contains tracks from Final Fantasy but also from other Square, SquareSoft and Square ENIX games.

As you can see, there are no 3rd party albums listed here. While I am a fan of fan and cover band remixes of Final Fantasy music, in my view they hardly beat the first party content that was created by Nobuo Uematsu and those who followed in his footsteps, such as Masashi Hamauzu.

Original Soundtracks

  • Final Fantasy IV Original Sound Version
  • Final Fantasy IX Original Soundtrack
@bryanveloso
bryanveloso / loadtweetsfromjson.php
Created January 12, 2012 02:55
A horrible, simply horrible hack to getting TweetNest to read JSON. Copy this to the /maintenance/ folder of your TweetNest installation.
<?php
// TWEET NEST
// Load tweets (from JSON)
error_reporting(E_ALL ^ E_NOTICE); ini_set("display_errors", true); // For easy debugging, this is not a production page
@set_time_limit(0);
require_once "mpreheader.php";
$p = "";
// The below is not important, so errors surpressed
@bryanveloso
bryanveloso / Procfile.dev
Created January 1, 2012 22:52
A sample Procfile.
compass: compass watch static
db: postgres -D /usr/local/var/postgres
redis: redis-server /usr/local/etc/redis.conf
web: python ranking/manage.py runserver
@bryanveloso
bryanveloso / brew-services.rb
Created December 8, 2011 09:39 — forked from lwe/brew-services.rb
External script for homebrew to simplify starting services via launchctl, out of the box support for any formula which implements #startup_plist. (This version fixes the deprecation warning raised on Formula.resolve_alias.)
#!/usr/bin/env ruby -w
# brew-services(1) - Easily start and stop formulas via launchctl
# ===============================================================
#
# ## SYNOPSIS
#
# [<sudo>] `brew services` `list`<br>
# [<sudo>] `brew services` `restart` <formula><br>
# [<sudo>] `brew services` `start` <formula> [<plist>]<br>
@bryanveloso
bryanveloso / gist:1130902
Created August 7, 2011 23:01
The form code I used to customize PayPal's "Buy Now" button, leveraging Harmony's template system.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="(your e-mail address)">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Honeyfund: {{ item.title }}">
<input type="hidden" name="amount" value="{{ item.data.price }}">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="no_shipping" value="1">