László Monda
Member since Oct 21, 2014
- Profile: /members/12371-l-szl-monda.htm
- URL: http://monda.hu
- Comments: 8
Recent Blog Comments By László Monda
-
Creating And Extending A Lodash / Underscore Service In AngularJS
Posted on Dec 20, 2014 at 5:31 PM
@Ben, Ramda functions are curried and always take the array as the last argument unlike Underscore or Lo-Dash. This allows for more powerful functional composition. I checked the linked article and saw that you mainly use .find() and .where(). Here's how I use .find() in Ramda for various scenario... read more »
-
Creating And Extending A Lodash / Underscore Service In AngularJS
Posted on Dec 6, 2014 at 5:25 AM
Hey Ben, I like your pattern and I think it's a good practice but right now I'm dealing with a legacy application where libraries have to be referenced outside of controllers so this isn't an option yet for me. Speaking of libraries, a while ago I abandoned Underscore and Lo-Dash in favor of http... read more »
-
Implementing ngRepeat Track-By Using A Directive In AngularJS 1.0.8
Posted on Nov 5, 2014 at 1:50 PM
Thanks a ton, Ben! Great stuff!... read more »
-
Implementing ngRepeat Track-By Using A Directive In AngularJS 1.0.8
Posted on Nov 1, 2014 at 5:51 PM
Hi Ben, Why not to use filters? Could you please explain, possibly link related resources? Thanks, Laci... read more »
-
Counting The Number Of Watchers In AngularJS
Posted on Oct 28, 2014 at 3:23 PM
Looks like Angular 1.3.x natively supports a bindonce-like approach called one-time bindings. Evaluation is delayed until the values in question are other than null or undefined. Well suited for XHRs. Looks pretty sweet! https://docs.angularjs.org/guide/expression#one-time-binding... read more »
-
Counting The Number Of Watchers In AngularJS
Posted on Oct 27, 2014 at 4:13 PM
@Dustin: Thanks a ton for pointing out to bindonce, great find! Will definitely use it if the need arises.... read more »
-
Counting The Number Of Watchers In AngularJS
Posted on Oct 27, 2014 at 11:57 AM
Hey Ben, In the meantime I've done some digging and it turned out that Object.observe() won't be integrated into Angular.js 1.x but it will be into 2.x * https://github.com/angular/angular.js/issues/3601 Looks like it may result in as much as a 40x performance increase on supported browsers! * ... read more »
-
Counting The Number Of Watchers In AngularJS
Posted on Oct 21, 2014 at 8:38 AM
I remember reading that object.observe() is supposed to result in a tenfold performance increase when processing watches. So that 2,000 watch performance limit may be 20,000 in the future. I'm interested whether the latest and greatest Angular already uses object.observe() whenever possible. In any... read more »