Skip to content

Instantly share code, notes, and snippets.

View nucleardreamer's full-sized avatar
🚀
obviously jammin'

Flynn Joffray nucleardreamer

🚀
obviously jammin'
View GitHub Profile
This file has been truncated, but you can view the full file.
[
{
"id": "001",
"name": "Bulbasaur",
"img": "http://img.pokemondb.net/artwork/bulbasaur.jpg",
"type": [
"Grass",
"Poison"
],
"stats": {
@nucleardreamer
nucleardreamer / gist:5359656
Created April 11, 2013 00:23
All console games.
This file has been truncated, but you can view the full file.
[{"nes":[["10-Yard Fight","Football","0.87","B000FIN2W0","56245528"],["150 in 1 Cartridge","Action & Adventure","50.00","",""],["190 in 1 Cartridge","Other","41.00","",""],["1942","Other","3.97","B000FE5LMS","4294"],["1943: The Battle of Midway","Other","4.49","B000E7CT6W","6654"],["3-D WorldRunner","Action & Adventure","1.40","B0009JOA1M","6256"],["720","Sports","0.87","B00004SVMA","4285"],["76 in 1 Cartridge","Other","21.50","",""],["8 Eyes","Action & Adventure","2.15","B00004SVMB","6412"],["Abadox","Action & Adventure","2.10","B000A40S44","5721"],["A Boy and His Blob Trouble on Blobolonia","Action & Adventure","4.14","B000J42FM8","6266"],["Action 52","Action & Adventure","329.99","B002G7INFY","6598"],["Addams Family","Action & Adventure","7.38","B00004SVMC","4070"],["Addams Family Pugsley's Scavenger Hunt","Action & Adventure","14.00","B00004SVTE","5015"],["Advanced Dungeons and Dragons Dragon Strike","Strategy","17.30","B00004SVP6","5948"],["Advanced Dungeons and Dragons Heroes of the Lance","Strategy","7
@nucleardreamer
nucleardreamer / gist:6704080
Last active December 23, 2015 22:29
ipad media blocks
/* iPad in portrait & landscape */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) { /* STYLES GO HERE */}
/* iPad in landscape */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) { /* STYLES GO HERE */}
INSERT INTO movies ('id','mediatype','description','title','date','type','licenseurl','downloads','week','month','num_reviews','avg_rating','identifier','subject','format','collection','oai_updatedate') VALUES ('','movies','You can find more information regarding this film on <a href="http://www.imdb.com/title/tt0029532/" rel="nofollow">its IMDb page</a>.','Secret Valley','1937-01-01T00:00:00Z','MovingImage','http://creativecommons.org/licenses/publicdomain/','10264','1','1','3','2','secret_valley','["western"]','["512Kb MPEG4","Animated GIF","Archive BitTorrent","MPEG2","Metadata","Ogg Video","Thumbnail"]','["feature_films","moviesandfilms"]','["2004-06-18T21:40:30Z","2004-09-20T21:21:42Z","2012-07-31T06:24:31Z","2010-02-06T15:03:17Z"]')
• Install Xcode (https://developer.apple.com/xcode/)
• Install Command line tools from Xcode
Xcode => Preferences => Downloads => Components => Command Line Tools
• Install node.js
Download and install Node.js v 0.10.12 (http://nodejs.org/dist/v0.10.12/node-v0.10.12.pkg)
(function(D) {
/**
* Constructor
*/
var VariableHeightLayoutManager = function(){}
// Shorthand prototype storage (might trim down code for many functions)
var fn = VariableHeightLayoutManager.prototype;
<?php
// Group detection by IP address
//
// [Region Abbreviation, Military/Government]
// Force Varnish to NEVER Cache this page
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
// JSON Headers
var path = require('path'),
gulp = require('gulp'),
stylus = require('gulp-stylus'),
nib = require('nib'),
mincss = require('gulp-minify-css'),
uglify = require('gulp-uglify'),
concat = require('gulp-concat'),
watch = require('gulp-watch'),
clean = require('gulp-clean'),
nodemon = require('gulp-nodemon'),

Keybase proof

I hereby claim:

  • I am nucleardreamer on github.
  • I am nucleardremaer (https://keybase.io/nucleardremaer) on keybase.
  • I have a public key whose fingerprint is 5237 C963 C340 D9A7 8223 31E1 CC03 8B5E D082 5EA7

To claim this, I am signing this object:

var _ = require('underscore'),
util = require('util');
// intercept stdout, passes thru callback
// also pass console.error thru stdout so it goes to callback too
// (stdout.write and stderr.write are both refs to the same stream.write function)
// returns an unhook() function, call when done intercepting
module.exports = function interceptStdout(callback) {
var old_stdout_write = process.stdout.write,
old_console_error = console.error;