Michael Narciso

Results 11 comments of Michael Narciso

Broken on Elementary OS 5 using kernel 5. It only seems to stop working when the touchpad goes idle or I stop using it. I've never had it just die...

UPDATE: I spoke too soon, the touchpad eventually dies even using the synaptics drivers. It does last longer but the touchpad experience is much worse with synaptics. **Conclusion: If you're...

The best thing you can do is stick to a version of the kernel that matches what shipped with the distro. I switched back to Windows but I had the...

@dsi3 I wanted to try WSL 2 since the main reason I switched was so I can get native docker support in Ubuntu. Docker in WSL 2 is not as...

The behavior feels inconsistent and slightly unintuitive. When using it in a query it works as expected. Declaring the fragment before usage feels like the correct thing to do since...

Think it would be great to be able to target with fragmentName as an optional parameter.

I am currently using Em.RSVP.on('error') to capture promise errors from Ember model that are not explicitly declared in my app. There is currently no error handler in Ember Model that...

@billdami that can easily be fixed by adding an animate out hook on the 'about.team' route: ``` javascript App.AboutTeamView = Em.View.extend({ animateOut: function(done) { Em.run.later(this, done, 1000); } }); ```...

Correct me if I'm wrong but doesn't Em.Model.load() already do this?

I wrote something that gives me exactly this. Let me know if you guys think this would be good in the ember-model library and I'll write up a pull request...