Miller Medeiros
Member since Oct 27, 2011
- Profile: /members/9169-miller-medeiros.htm
- URL: http://blog.millermedeiros.com
- Comments: 4
Recent Blog Comments By Miller Medeiros
-
Writing A RequireJS Plugin To Load Remote jQuery Templates
Posted on Nov 11, 2011 at 3:32 PM
If you want you can run the optimizer on Rhino (Java), I've been favoring this approach on most of my projects since installing nodejs on windows is hard and most of my coworkers already have Ant installed on their machines (Ant comes pre-installed on Mac and some IDEs) - here is an Ant task for it:... read more »
-
Writing A RequireJS Plugin To Load Remote jQuery Templates
Posted on Nov 11, 2011 at 2:39 PM
RequireJS is indeed very useful and plugins make it even more awesome, been using it on most projects and the AMD format helps a lot the development process since you can split your code into multiple files during development (good for organization) and just run the optimizer before deployment to co... read more »
-
Using One Object Per Event Type With Publish And Subscribe (Pub/Sub)
Posted on Oct 29, 2011 at 4:37 PM
Yep Guillaume, it's very similar to Qt, AS3-Signals (js-signals was based on AS3-Signals) was based on Qt signals/slots and C# Events. ActionScript 3 native Events are very similar to DOM2 events (in fact it was based on DOM3 events), and still a lot of AS3 developers started using Signals i... read more »
-
Using One Object Per Event Type With Publish And Subscribe (Pub/Sub)
Posted on Oct 27, 2011 at 3:12 PM
Nice write-up and video, I hope more people understands the benefits of having a concrete object to each event type and not relying on strings. I'm not sure if it was by coincidence but [DART DOM event system](www.dartlang.org/articles/improving-the-dom) is very similar to Signals, they use a names... read more »