Skip to content

Instantly share code, notes, and snippets.

@sessa
sessa / image-search.js
Created April 29, 2014 17:01
moar objects
Object
.keys(this._sources)
.map(function(source) {
return this._sources[source].resultColumn;
}.bind(this))
.forEach(function(column) {
var colHeight = column.getHeight();
if (scrollBottom + this._loadMoreOffset > colHeight) {
console.log('LOAD MORE');
75825 http://www.youtube.com/watch?feature=player_profilepage&v=3wbvpOIIBQA
75615 http://www.youtube.com/watch?v=f2JuxM-snGc
75311 https://www.youtube.com/watch?v=G33DdYQZbas
75279 http://www.youtube.com/v/isWyYDxFS8w?color2=FBE9EC&amp
75071 https://www.youtube.com/watch?v=TYytErqGdC4
75003 https://www.youtube.com/watch?v=TYytErqGdC4
74789 http://www.youtube.com/watch?v=nRckgn36lzY
74427 https://www.youtube.com/watch?feature=player_embedded&v=bhhpz9pKyj8
74313 http://www.youtube.com/watch?v=1MwWZEZox2w
74099 http://www.youtube.com/watch?v=7SSXLIZkM3E
@sessa
sessa / app.js
Created March 3, 2014 22:52 — forked from mdellanoce/app.js
var express = require('express'),
requirejs = require('requirejs'),
app = module.exports = express.createServer();
app.configure('development', function(){
// Use development version of static files
app.use(express.static(__dirname + '/public'));
});
app.configure('production', function(){
// preserve Twitter's style of JSON string encoding...
// escape higher value unicode (lowercase hex)
// escape < and > (uppercase hex)
// escape / in strings (\/)
// hugs! https://gist.github.com/1306986
// http://stackoverflow.com/questions/4901133/json-and-escaping-characters
function escapedStringify(s, emit_unicode) {
var json = JSON.stringify(s);
return emit_unicode ? json : json.replace(/\//g,
function(c) {
@sessa
sessa / app.coffee
Created February 5, 2014 14:50 — forked from aseemk/app.coffee
bunyan = require 'bunyan'
restify = require 'restify'
requireDir = require 'require-dir'
middleware = requireDir './middleware'
routes = requireDir './routes'
settings = require './settings'
app = restify.createServer
name: 'Foo Bar API'
[user]
name = Anthony Sessa
#email = sessa@fourfiftynine.com
email = anthonysessa@gmail.com
[github]
username = sessa
token = f9b994cde7777d72a5d40512f6abb137
[core]
excludefile = /Users/anthonysessa/.gitignore_global
excludesfile = /Users/anthonysessa/.gitignore_global
$state_list = array('AL'=>"Alabama",
'AK'=>"Alaska",
'AZ'=>"Arizona",
'AR'=>"Arkansas",
'CA'=>"California",
'CO'=>"Colorado",
'CT'=>"Connecticut",
'DE'=>"Delaware",
'DC'=>"District Of Columbia",
'FL'=>"Florida",
@sessa
sessa / ios-test.css
Created December 6, 2012 22:09 — forked from tonywok/ios-test.css
iOS Media Queries
// iOS Media Queries
// Goal: capture styles for iPhone, iPhone 3G, iPhone 3GS, iPhone 4, iPhone 4S, iPad, and iPad 2
//
// Author: Tony Schneider (@tonywok)
// Please tell me where I fail. :)
// iPhone v(4,4S) portrait
// test: black text (overwritten by v* portrait) with blue background
@media all and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
a {
@sessa
sessa / emailer.rb
Created October 6, 2012 20:51 — forked from mweppler/emailer.rb
A ruby emailer
# http://ruby-doc.org/stdlib-1.9.3/libdoc/net/smtp/rdoc/Net/SMTP.html
require 'digest/md5'
require 'mime/types'
require 'net/smtp'
require 'optparse'
require 'ostruct'
require 'yaml'
class Emailer
@sessa
sessa / .gitignore
Created August 16, 2012 18:32 — forked from redoPop/.gitignore
Template .gitignore file for WordPress projects
# This is a template .gitignore file for git-managed WordPress projects.
#
# Fact: you don't want WordPress core files, or your server-specific
# configuration files etc., in your project's repository. You just don't.
#
# Solution: stick this file up your repository root (which it assumes is
# also the WordPress root directory) and add exceptions for any plugins,
# themes, and other directories that should be under version control.
#
# See the comments +below for more info on how to add exceptions for your