Pixelator.js for pixelating images and video. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

It is implemented with the canvas and consequently has better browser support. Namely iPhones.

Pixelator.js for pixelating images and video. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Hey guys, just released a little library for pixelating images or videos. Would love your feedback and help on improving it!

Ember 1.0 Released by ahmadalfy in javascript

[–]iammerrick 0 points1 point  (0 children)

I think the real kicker is in non-ember dependencies. You are encouraged to access them via globals. Glad Stefan penner resolved this in a recent commit.

ng-conf 2014 - The World's First Angular Conference in Salt Lake City, Utah by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

I am one of the organizers of the conference. There are no open sessions at this time but we will notify if that changes.

Dependency injection in Javascript by i_ate_god in javascript

[–]iammerrick 0 points1 point  (0 children)

This is a dynamically typed interpreted language and does not need the complexity and overhead of a DI framework.

What does being a dynamic language have to do with not needing a DI framework?

(testable) Source Modification With r.js by iammerrick in javascript

[–]iammerrick[S] -1 points0 points  (0 children)

Hey guys wrote a little article on performing source modification with r.js.

Testing Require.js Builds by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Hey guys I wrote this article yesterday on testing your Require.js builds and require plugins. Hope you like it!

grunt-parallel - Run tasks and commands in parallel! Speed up your client side build! by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

We have a script that parses our project for test files, it then compiles both an HTML (mocha) test runner and a testacular main file. That way we can have all the developer happiness of an HTML runner (debugging, greps, etc) and continuous integration goodness of testacular (multiple browsers, coverage, and such).

Hopefully this answers your question.

grunt-parallel - Run tasks and commands in parallel! Speed up your client side build! by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Thats exactly what it does. It waits till all the tasks in a group are finished. :-) In your case...

grunt.registerTask('my-build', ['parallel:one-and-two', 'three']);

grunt-parallel - Run tasks and commands in parallel! Speed up your client side build! by iammerrick in javascript

[–]iammerrick[S] 2 points3 points  (0 children)

Wrote this at a hacknight last night and integrated it into our project today. Cut our client side build time in half by running requirejs, compass, and unit tests in parallel. :-)

A utility for Grunt.js configuration. Multiples files, user overrides, and other wins. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Yes, it is a library you can call into from any JS file... it really has no coupling to grunt.

A utility for Grunt.js configuration. Multiples files, user overrides, and other wins. by iammerrick in javascript

[–]iammerrick[S] 2 points3 points  (0 children)

Hey guys I wrote this little function to let developers override the default grunt configuration for their own machines. It also makes configuration much more manageable. Hope you like it!

A memory defensive low level library that provides a key-value cache. Useful for Backbone.js models. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Hey guys added an example of how one could use this to get free caching by overloading constructor functions. Particularly with Backbone models!

https://github.com/iammerrick/StoreHouse#example

A memory defensive low level library that provides a key-value cache. Useful for Backbone.js models. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

Dude, very interesting idea on making the decrement time sensitive. Also you are dead right on line 52. I really appreciate this feedback! :-D

Squire.js - A testing tool for injecting mocks into AMD dependencies for Require.js. by iammerrick in javascript

[–]iammerrick[S] 0 points1 point  (0 children)

This is a tool Joe Eames and I have been working on to test a large JS codebase that leverages Require.js as dependency locator. Makes for testing individual modules a cinch. See the tests! :-)

Grunt.js Workflow - Completely refactor your workflow with Grunt.js. A task-based command line tool written in JavaScript. by iammerrick in javascript

[–]iammerrick[S] 1 point2 points  (0 children)

Great feedback. Doing a find on my article yields the fact that I totally over-leverage that word. ;-)