Skip to content

Instantly share code, notes, and snippets.

View edwardhotchkiss's full-sized avatar

Edward Hotchkiss edwardhotchkiss

View GitHub Profile
@edwardhotchkiss
edwardhotchkiss / open.sh
Created July 26, 2012 17:09
open hacker news
$ open http://news.ycombinator.com/
@edwardhotchkiss
edwardhotchkiss / flush-cache.sh
Created July 26, 2012 17:08
flush osx dns cache
$ dscacheutil -flushcache
@edwardhotchkiss
edwardhotchkiss / hosts.bash
Created July 26, 2012 17:04
edit hosts file
$ sudo vim /etc/hosts
error: Error running command deploy
error: Nodejitsu Error (500): Internal Server Error
error:
error: There was an error while attempting to start your application.
error: Error spawning drone
error: Script prematurely exited
error:
error: This type of error is usually a user error.
error: Error output from your application:
error:
/**
* @application
* @file /app/helpers/models.js
**/
Spine.Model.extend({
toJSON: function(){
var attributes = this.attributes();
attributes['id'] = attributes['_id'];
return attributes;
restart = ->
child = exec('coffee server.coffee', (_error, _stdout, _stderr) ->
if _error
throw new Error(_error)
else
console.log '> server.coffee restarted successfully!'
)
# end
# end
https://gist.github.com/2989407
###
@class BaseProject
@description Base Project Class
###
# Dependencies
ErrorHandler = require './ErrorHandler'
# BaseProject Class
class BaseProject
###
@class ErrorHandler
@description Error Delegation
###
class ErrorHandler
constructor: (@name) ->
console.log? @name or 'ErrorHandler'
window.onerror = (msg, url, line) ->
###
@class MyProject
@description Main Application
###
# Dependencies
BaseProject = require './BaseProject'
# MyProject Class, returned in embed
class MyProject extends BaseProject