James Bell

Results 6 comments of James Bell

What about receiving the debounce function as an argument? ``` import { debounce } from 'lodash/fp'; function App() { let windowWidth = useWindowWidth(); let debouncedWindowWidth = useWindowWidth(debounce(500)) return [ Debounced:...

@camflan the `lodash/fp` package is for functional programming and should be data last and currying for arguments. No changes should be needed :)

Web Push support (GCM) from Service Worker pushManager would be great as electron doesn't support it: https://github.com/electron/electron/issues/6697

I don't have much time to contribute to this project right now. This feature will take me around 5 hours to implement. You can partially or fully donate below to...

For both SEO and performance when delivering dynamic content, SSR with Hydration is the most common method used. You can also try "Client Side Rendering with Prerendering" by delivering static...

Problem with Solution 2, how will `foo.html.twig` know to access `foo` from `this` instead of `_context`. Writing to `_context` seems better to me, but there is probably a solution we...