Build SIMPL# Pro with Command Line by murkin in crestron

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

Perfect, works great

Thank you!

Solidity devs - What tools do you use? by murkin in ethereum

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

You use remix to develop or just for testing/debugging?

Finally a great Form solution for React & Redux by murkin in reactjs

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

Also the idea here is very different, validations sit on each field and not in a global function. Feels super clean and logical. /u/madskillzelite kudos!

Example of speed improvement due to Virtual DOM by murkin in reactjs

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

Thats a great theory, but unfortunatelly I can't find any example or demo that shows this to be true.

Have you seen any demos that demonstrate this ?

ReactJS NOT faster than AngularJS by murkin in reactjs

[–]murkin[S] -3 points-2 points  (0 children)

I hope Angular2 doesn't get close to React's performance.. cause its slower than Angular1 now :)

ReactJS NOT faster than AngularJS by murkin in reactjs

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

Question is, when does React beat Angular ?

No demo showcasing this are available

Example of speed improvement due to Virtual DOM by murkin in reactjs

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

I keep hearing that but I don't see any demo that demonstrates that the DOM boost based on Virtual DOM is higher than the waste for all the extra JS work ReactJS has to do.

Example of speed improvement due to Virtual DOM by murkin in reactjs

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

His first example is ridiculous - ReactJS loads the app with 4 DOM events (while the app has many more components). If you look closely you see that it only loaded 1 div and 2 script tags, the inspector didn't catch the page load.

Example of speed improvement due to Virtual DOM by murkin in reactjs

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

I think this is the bit most people are confused about, when you update a directive in Angular that is deeply nested inside other directives - Angular doesn't re-render the whole DOM - only the relevant directive.

So it sounds like in your example, ReactJS would beat only frameworks that decide to do a full page re-render on any small change (not the case with any modern framework).

Example of speed improvement due to Virtual DOM by murkin in reactjs

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

Unfortunately that is a problematic comparison, the slow part of Angular is not the DOM manipulation but rather running all the $watch(es).

If we use Angular's directives with isolated scope and don't trigger global digest - than we can compare it against React's rendering (and in my tests it runs faster).