Laurent Payot

Results 164 comments of Laurent Payot

Very helpful, as `Url.Parser.parse` usage wasn't obvious for newcomers like me. I'm wondering why it is not merged yet. Just a question: shouldn't the `init` route be `(toRoute url)` instead...

I've seen several people describing CoffeeScript as a "pythonic" JavaScript. I like the [pythonic approach of OOP](http://exampleproblems.com/wiki/index.php/Python_programming_language#Object-oriented_programming): > Many Python users don't feel the need for private variables, though. The...

I'm struggling to make Flow work with [coffeescript 2 type annotations](http://coffeescript.org/#type-annotations) inside webpack :sweat: Has anyone ever been able to use CS2 with Flow inside webpack??? A template would be...

@AlvinKonda you can add this in your `workboxOptions` of your **vue.config.js** file: ```js runtimeCaching: [ { // Google fonts urlPattern: new RegExp('https://fonts.'), handler: 'cacheFirst', options: { cacheName: 'fonts' } }...

Oh sorry wrong repo. I gave you a solution I use with [vue CLI 3](https://github.com/vuejs/vue-cli), where plugins are used instead of templates. You should move to Vue CLI 3 as...

It used to work for me when I was using this template. Service worker only work in production mode so that's normal.

@alexplumb To write the same code on the front end and the back end with v9 I ended up writing a compatibility module: https://github.com/firebase/firebase-admin-node/discussions/1238#discussioncomment-682804

I ran into this error yesterday too. It caused a loop in the browser and a continuous memory usage increase. - **Elm**: 0.19.1-5 - **Browser**: Chrome beta 99.0.4844.51 - **Operating...

I don't understand the hype around mixing view code and controller code. Seems like a step back to me, maybe younger coders never had to deal with the issues that...

I see what you mean. For now I'm just waiting for web components to arrive to see if they are less messy.