Dr. Derek Austin

Results 33 comments of Dr. Derek Austin

I had to add the @types/screeps package to get types. As I understand it, the @types packages were created for exactly this problem: types not exported by other npm packages....

Good point @ljharb , and in fact build tools will error on the opposite case, e.g. ``` preload={true} // OMG A BOOLEAN DIDN'T YOU MEAN ... STRING!!!?????? 🧵🧵🧵🧵 ``` vs....

> That it accepts an integer doesn't change that it's an integer in string form. TS can't type "integer" anyways. Absolutely, `tabIndex={0.1}` is way more wrong than `tabIndex="0"` -- as...

Adding "C:\Program Files\Git\bin" to my PATH environment variable fixed this error at one point, [as I described on Stackoverflow](https://stackoverflow.com/a/67132704/2167762). Maybe try that?

You might need to copy the npm binaries into PATH somehow. > Message ID: ***@***.***> >

Just `npm run test` or `yarn test` would work cross-platform, but you'll have to help everyone get everything in the correct PATH for GitHub Desktop on all the platforms. It...

I fixed this by replacing all the `` (Fragment) ` examples with `` and `` in my use of Headless UI Listbox: ``` ({open}) => ( {/* was */} Text...

I encountered this exact "memory access out of bounds" error with `stockfish-17-single.js` in my web app while using XState for logic. The issue seemed to stem from sending UCI commands...

I'm still having this issue sometimes when sending "stop" followed immediately by a go e.g. "go movetime 1000"; I guess I need to put in a delay to prevent some...

Yeah AFAIK pnpm has never worked with RN let alone Nativewind. I think the Solito starter is now outdated for use with Nativewind (or requires version locking to previous version,...