Josef Brandl

Results 11 comments of Josef Brandl

A flag is not necessarily needed. Here're two ideas: - https://www.npmjs.com/package/trash It's an npm package that moves files into the trash instead of deleting them outright (cross plattform). - Or...

> It doesn't matter whether the thing you add an event handler to is a custom element or not @arthurevans I need to chime in on this. 😊 I'm very...

@arthurevans Perfect. It took me quite a while to figure out all the nuances of events. Good docs/guidelines on the subject are important :) - BTW you're doing great work...

@oxygen Thanks a lot for sharing this! Here's the code I'm now using: ```JS let isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0 let isChrome =...

Any chance for a grunt-emblem based on PhantomJS?

The `isAlive` issue is now fixed https://github.com/Ligio/hacc-ozmo/issues/24

More details about my workaround: Calling `StatusBar.show()` synchronously in the callbacks of `downloadExpansionIfAvailable()` didn't work. I now call it repeatedly via this monstrosity: `callRepeatedly(() => StatusBar.show(), 2000)` Works, but it's...

Will the `stm32f103xx-hal` crate eventually replace the `stm32f103xx` crate?

@therealprof Thx for the clarification! I've now created an issue for this. I'd be good if there was a quick explanation in the `stm32f103xx` readme about how the two crates...

Had the same issue. Turns out, the trick is to add `:direct` at the end: `k3d cluster create --port "8080:8080@server:0:direct" --no-lb` Only two containers will be created, in particular the...