Thomas Boyt
Thomas Boyt
Before, this AST: ``` js b.newExpression( b.logicalExpression( '||', b.identifier('One'), b.identifier('Two') ), [b.identifier('foo')] ); ``` would print as: ``` js new One || Two(foo) ``` This fixes it to print as:...
I've encountered an issue where, when I have an unhandled Axios error in my Nuxt `fetch()` hook, I wind up with an odd "Maximum call stack size exceeded" exceeded error....
I've got a fairly simple payment form in my app, with the usual fields (card number, CVV, expiration date, and zip code). The form has frontend validation for the simple...
I've got a somewhat-complex use case for p2, and I think I need the ability to step individual objects in the world to make it best work. I may be...
On Windows 10 build 10074, it seems like DS4Windows is no longer able to hide the DS4 controller. I've tried every combination of reinstalling the drivers, reinstalling DS4Windows, and restarting...
Noticed that this question is easily solvable without using the `MAX` function as intended: ```sql select joindate as latest from cd.members order by joindate desc limit 1 ``` This just...
We have a service that makes gRPC calls (via grpc-js) to other backend services, while serving its own HTTP endpoints. We'd like to use the JSON representation of protobufs in...
https://github.com/thomasboyt/coquette-inspect/blob/master/src/ui/actions/GameActions.js ew That could be replaced by allowing the UI to directly `sendMessage` instead of calling actions, and for [AgentHandler](https://github.com/thomasboyt/coquette-inspect/blob/master/src/ui/AgentHandler.js) to directly dispatch events. The latter should definitely happen, the...