Skip to content

Instantly share code, notes, and snippets.

View edimoldovan's full-sized avatar

ed edimoldovan

View GitHub Profile

Keybase proof

I hereby claim:

  • I am edimoldovan on github.
  • I am edimoldovan (https://keybase.io/edimoldovan) on keybase.
  • I have a public key whose fingerprint is 8538 C210 9F2D 2343 5AD4 D6E0 01B5 CE48 4EF1 AC1D

To claim this, I am signing this object:

@edimoldovan
edimoldovan / gist:5e81c797524496b240fd
Created March 14, 2015 13:08
Nodemon error on Yosemite 10.3.3
dyld: lazy symbol binding failed: Symbol not found: _node_module_register
Referenced from: /Users/edimoldovan/www/node-engine/api/node_modules/dulcimer/node_modules/leveldown/build/Release/leveldown.node
Expected in: dynamic lookup
dyld: Symbol not found: _node_module_register
Referenced from: /Users/edimoldovan/www/node-engine/api/node_modules/dulcimer/node_modules/leveldown/build/Release/leveldown.node
Expected in: dynamic lookup
var filterTemplates = require('broccoli-template');
var uglifyJavaScript = require('broccoli-uglify-js');
var compileES6 = require('broccoli-es6-concatenator');
var compileSass = require('broccoli-sass');
var pickFiles = require('broccoli-static-compiler');
var mergeTrees = require('broccoli-merge-trees');
var findBowerTrees = require('broccoli-bower');
var env = require('broccoli-env').getEnv();
var fs = require("fs");
var pickFiles = require('broccoli-static-compiler')
@edimoldovan
edimoldovan / dabblet.css
Created August 29, 2013 14:51
Just a simple example
/**
* Just a simple example
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@edimoldovan
edimoldovan / computed
Created October 18, 2012 17:40
Computed property in handlebars template
This is the computed property, which depends on an image array, the product.images
smallImages: function() {
"use strict";
var smalls = product.images.map(function(original){
return original + "-small.png";
});
return smalls;
}.property('product.images').cacheable(),