Skip to content

Instantly share code, notes, and snippets.

View ppcano's full-sized avatar

Pepe Cano ppcano

View GitHub Profile
PhoneNumber = Ember.Object.extend({
areaCode: null,
number: null
});
Person = Ember.Object.extend({
areaCode: function() {
var areaCodes = {}, phoneNumbers = this.get('phoneNumber');
for (var i=0, l=phoneNumbers.length; i<l; i++) {
Person = Ember.Object.extend({
fullName: function() {
var gender = this.get('gender'), parts, married;
if (gender === "M") {
parts = ["Mr."];
} else if (gender === "F") {
married = this.get('married');
parts = [married ? "Mrs." : "Ms."];
} else {
@ghempton
ghempton / bound_helper.js
Created March 11, 2012 20:55
Ember Bound Handlebars Helper Utility
// This file contains utilities for creating bound helpers
// For reference: https://github.com/wagenet/ember.js/blob/ac66dcb8a1cbe91d736074441f853e0da474ee6e/packages/ember-handlebars/lib/views/bound_property_view.js
Ember.Handlebars.BoundHelperView = Ember.View.extend(Ember._Metamorph, {
context: null,
options: null,
property: null,
// paths of the property that are also observed
propertyPaths: [],
@borismus
borismus / gist:1990752
Created March 7, 2012 03:35
Ember project setup
/static/sass/:
screen.scss: (common stylesheet)
phone.scss, tablet.scss, desktop.scss: (form factor-specific styles)
/static/js/:
libs/: (external libraries - DO NOT MODIFY)
ember-and-friends.js
jquery.js
formfactor.js
views/: (form-factor specific views)
Viz.WidgetsController = Ember.ArrayController.extend
init: ->
@refresh()
setInterval (=> @refresh), 5000
refresh: ->
$.ajax
url: @get('src'),
type: "GET",
context: this,
# for good measure
@daily /etc/init.d/weinred restart
@joewest
joewest / gist:1879042
Created February 21, 2012 21:21
config.ru for rake-pipeline with proxy support
require 'rake-pipeline'
require 'rake-pipeline/middleware'
require 'net/http'
require 'net/https'
require 'uri'
module Rack
class Proxy
def initialize(app, project, opts={})
@bobspryn
bobspryn / Assetfile.rb
Created February 16, 2012 23:04
AssetFile
require "json"
require "uglifier"
require "rake-pipeline-web-filters"
# this gives you concat, coffee_script, and minispade methods
require "rake-pipeline-web-filters/helpers"
class ImportFilter < Rake::Pipeline::Filter
def generate_output(inputs, output)
inputs.each do |input|
@tj
tj / ansi.js
Created February 9, 2012 01:26
var fg = {
30: 'fg-black'
, 31: 'fg-red'
, 32: 'fg-green'
, 33: 'fg-yellow'
, 34: 'fg-blue'
, 35: 'fg-magenta'
, 36: 'fg-cyan'
, 37: 'fg-white'
@wycats
wycats / gist:1627976
Created January 17, 2012 18:26
How to debug dynamic loading
export DYLD_PRINT_OPTS="1"
export DYLD_PRINT_ENV="1"
export DYLD_PRINT_LIBRARIES="1"
export DYLD_PRINT_LIBRARIES_POST_LAUNCH="1"
export DYLD_PRINT_APIS="1"
export DYLD_PRINT_BINDINGS="1"
export DYLD_PRINT_INITIALIZERS="1"
export DYLD_PRINT_REBASINGS="1"
export DYLD_PRINT_SEGMENTS="1"
export DYLD_PRINT_STATISTICS="1"