Roberto Kok

Results 6 comments of Roberto Kok

@RetroRodent Thank you, it worked like a charm! Steps for me using PlayOnLinux and Wine v5 as instructed in [this guide](https://www.gamersonlinux.com/forum/threads/grand-theft-auto-2-guide.3090/): 1. Rename ddraw.dll to dsound.dll 2. In POL, under...

Hacky workaround for npm using a postinstall script: ```json # package.json { "scripts": { "cleanup-hookrouter-types": "rm -f node_modules/hookrouter/dist/index.d.ts* # See https://github.com/Paratron/hookrouter/issues/147", "postinstall": "npm run cleanup-hookrouter-types" } } ```

My own spin on @koistya's answer to show that data is loading while displaying the previous data. ```tsx export function useRecoilValueBackgroundLoadable( data: RecoilValue ): [Loadable, { isLoading: boolean }] {...

@kyeotic Is there any workaround for this one that allows us to still have dots in paths?

@kyeotic Understood. Well, I'm all for expanding it as one of the projects I'm working on requires dots in a path part matcher at the moment. :-) How do you...

@kyeotic Upon closer inspection, it turned out that it wasn't Raviger, but **Vite** that was causing my problem with dots: https://github.com/vitejs/vite/issues/2245 :dizzy_face: Nevertheless I wrote a PR anyway - it's...