Skip to content

Instantly share code, notes, and snippets.

View ericelliott's full-sized avatar
💭
https://leanpub.com/composingsoftware

Eric Elliott ericelliott

💭
https://leanpub.com/composingsoftware
View GitHub Profile
@ericelliott
ericelliott / applitude-tests.js
Created August 3, 2012 20:11
applitude jasmine tests
(function (app) {
'use strict';
applitude.register('mvc', {
Models: {}
});
applitude.register('mixinTest', {
mixins: 'mvc'
});
(function (app) {
describe('i18n', function () {
it('should exist', function () {
waitsFor(function () {
return app.i18n && app.i18n.whenLoaded.isResolved();
});
runs(function () {
expect(applitude.i18n).toBeDefined();
});
});
(function (app, $) {
'use strict';
var i18n = $.i18n,
whenTranslationsLoaded = app.deferred();
i18n.init({
resGetPath: app.environment.localepath + '/__lng__/__ns__.json',
fallbackLng: 'en-US',
useLocalStorage: false,
@ericelliott
ericelliott / iife.js
Created August 23, 2012 01:53
IIFE Syntax
// jQuery syntax: (outies)
(function () {
// your code here
})();
// Crockford syntax: (innies)
(function () {
// your code here
}());
@ericelliott
ericelliott / cuid.js
Created August 31, 2012 21:31
CUID - A Better Browser-side UID (Intentionally not GUID compliant)
/**
* cuid.js
* Collision-resistant UID generator for browsers and node.
* Sequential for fast db lookups and recency sorting.
* Safe for element IDs and server-side lookups.
*
* Extracted from CLCTR
*
* Copyright (c) Eric Elliott 2012
* MIT License
@ericelliott
ericelliott / lint.json
Created September 6, 2012 19:57
lint.json
{
"globals": {
"jasmine": true,
"spyOn": true,
"it": true,
"console": true,
"describe": true,
"expect": true,
"beforeEach": true,
"waits": true,
@ericelliott
ericelliott / extend.js
Created September 6, 2012 21:10 — forked from gkatsev/extend.js
A simple and naive extend implementation
function extend(obj) {
var args = [].slice.call(arguments, 1);
args.forEach(function (source) {
var prop;
for (prop in source) {
if (source.hasOwnProperty(prop)) {
obj[prop] = source[prop];
}
}
});
@ericelliott
ericelliott / library-module-pattern.js
Created September 11, 2012 06:13
Module Pattern for Browsers, Node, and Applitude
// Shim support for CommonJS variables. This greatly reduces logic needed.
// Note: all of these variables are supposed to be global, anyway.
var global = global || this, module = module || undefined;
(function (app) {
'use strict';
// replace the namespace string with the name of your library
var namespace = 'librarymodule',
@ericelliott
ericelliott / flyweight-factory-module.js
Last active November 6, 2015 21:38
Flyweight Factory Module Pattern
var myPrototype = {
methodA: function methodA() {},
methodB: function methodB() {},
methodC: function methodC() {}
};
createFoo = function createFoo() {
return (Object.create(myPrototype));
};
@ericelliott
ericelliott / new-sucks.js
Created September 13, 2012 09:25
new Breaks Factory Objects
// Create a factory object that can be used to swap out the prototype used
// to instantiate new instances.
var factory = {};
factory.proto = {foo: 'bar'};
factory.create = function () { return Object.create(this.proto); };
var t1 = factory.create();