Skip to content

Instantly share code, notes, and snippets.

View yrgoldteeth's full-sized avatar

Nicholas Fine yrgoldteeth

View GitHub Profile

Statement of Vindication

  • Selection from "Diving Into The Wreck" - Adrienne Rich, read by Anne Waldman
  • Statement of Vindation - Bikini Kill
  • Help Me Mary - Liz Phair
  • Where Next Columbus? - Crass
  • Hit - Discount
  • Coatrack - Kill The Man Who Questions
  • Reject All American - Bikini Kill
  • Geld / Big Brother - Scrotum Grinder

We Will Get Fooled Again

  • "The rest is just vanity"
  • Whirlpool - They Might Be Giants (original by Meat Puppets)
  • These Pretty Pleasures - Swingin' Utters
  • I Believe - R.E.M.
  • Aim Low - Mary Lou Lord
  • Lucifer - Jay Z
  • Body Of The King - Baader Brains
  • Where Are They Now? - Cock Sparrer
@yrgoldteeth
yrgoldteeth / gist:a519f770954700dc0eed
Created September 21, 2014 07:27
christ, what an asshole.

If it is your opinion that the "core demographic" for video games is still idiot men that are scared that their video games are getting ruined by a "social agenda" being pushed by bloggers then you clearly don't actually know anything about the actual demographics of who buys and plays video games.

It's especially glaring that you're taking your cues from the always reliable and completely "objective journalism" practiced by the undead Breitbart and his posse of otherwise unemployable writers, who definitely have never pushed a social agenda of their own.

Seriously, your first pull quote from this scandalous conspiracy between gaming journalists reads "[p]eople are using your platform to harass a developer. Are you comfortable with that?" How does asking that question--especially considering Zoe Quinn has without question been harassed to a disgusting level--actually become telling "an Escapist editor how he should run his forums" without a pretty monumental leap in logic? If this is the pull quote you're

Keybase proof

I hereby claim:

  • I am yrgoldteeth on github.
  • I am ndfine (https://keybase.io/ndfine) on keybase.
  • I have a public key whose fingerprint is 7DDB CBCA 9DDC CF19 DB4E 5785 2D52 3C42 FD49 59CE

To claim this, I am signing this object:

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
var i = 0;
var slide;
function SlideShow() {
Effect.Fade($( slide[i] ), { duration:5 });
i++;
if (i == slide.length) i = 0;
Effect.Appear($( slide[i] ), { duration:5, afterFinish: function () { SlideShow(); } });
}
$(document).ready(function() {
var $tabs = $('#tabs').tabs();
$('.next').click(function() { var $tabs = $('#tabs').tabs();
var selected = $tabs.tabs('option', 'selected');
$tabs.tabs('select', selected + 1); return false;
})
$('.previous').click(function() { var $tabs = $('#tabs').tabs();
var selected = $tabs.tabs('option', 'selected');
$tabs.tabs('select', selected - 1);
return false;
#so very stolen from http://gist.github.com/145676
require 'open-uri'
def download(from, to = from.split("/").last)
#run "curl -s -L #{from} > #{to}"
file to, open(from).read
rescue
puts "Can't get #{from} - Internet down?"
exit!
end
# Nicholas Fine
# nicholas.fine@gmail.com
# This is just my general collection of useful methods, algorithms, etc.
##############################################################################
# Get the date for the nth weekday of a given month and year. Call date_for_nth_weekday({2009,3,:monday,3}) to
# get the third monday of april in 2009
def date_for_nth_weekday(h={:year, :month, :week_day, :nth})
days_of_week = {:sunday => 0, :monday => 1, :tuesday => 2, :wednesday => 3, :thursday => 4, :friday => 5, :saturday => 6}
twd = days_of_week[h[:week_day]]