kedniko

Results 5 comments of kedniko

I use `ALT-96` ( backtick = \` ) a lot when I program in javascript. The problem with `emulate_alt_codes: true` is that when I select a word (i.e. in VSCode)...

> Already implemented via `all` method, [see here](https://github.com/bramus/router/blob/master/src/Bramus/Router/Router.php#L96) Are you sure it is already implemented for the "**Before** Route Middleware"? `all()` method does not change the `beforeRoutes` array

Solved by calling `getToken()` twice. The docs are confusing and outdated. **What should be the name of the service worker?** `firebase-messaging-sw.js` (as shown [here](https://firebase.google.com/docs/cloud-messaging/js/client?hl=en#access_the_registration_token)) or `service-worker.js` (as shown [here](https://firebase.google.com/docs/cloud-messaging/js/receive?hl=en)) **What...

Simple example with `import { renderToString } from 'vue/server-renderer'` ```ts import { renderToString } from 'vue/server-renderer' import { h } from 'vue' const htmlString = await renderToString(h('div', 'Hello world')) {{...