Jeremy Lu

Results 31 comments of Jeremy Lu

Sounds good to me, at least it could make those trivia warnings go away!

Take TodoMVC app for example, say I'm working with a couple of colleagues on the same list, then I jump on a plane and for the next 18 hours I...

Agreed, crdt is perfect for the job, but how do you guys normally handle conflict? A simple use case where two people modified same text field, do you just let...

How do I listen to the event whenever any TodoItem of a TodoList was removed? Here's the code I'm using now, but it works on when TodoItems was created or...

Ended up this seems to be the correct way to do it: ``` js myTodoList.on( 'rm', function( spec, val, src ){ console.log( 'TodoList > RM', arguments ); }) myTodoList.on( 'in',...

Any update?🚴

@marcin-mazurek thanks for the update, I'm a bit confused which one to use now? 1. https://github.com/marcin-mazurek/react-render-visualizer-decorator 2. https://github.com/marcin-mazurek/react-render-debugger Help?

Thanks, good job btw!

I've been using a chrome extension called livereload which works great with sublime text editor, whenever I change something in sublime editor, the extension will refresh the browser, probably they...

Is it possible to create a chrome extension (like livereload - http://goo.gl/jf6Rs) that communicate with nodev via socket so whenever there's a restart, nodev can notify the extension and trigger...