Aron Carroll

Results 14 issues of Aron Carroll

Currently we only support click and right click events, double click would be a useful addition to the macOS platform as it currently has to be manually implemented by each...

Steps to reproduce: 1. Comment out the `(mt_rand(1, 100) === 1)` conditional. 2. Call `new Model_Auth_User_Token;` Result: ``` Database_Exception [ 1103 ]: Incorrect table name '' [ DELETE FROM ``...

This would allow you to login using any parameter supported by the unique key method. For example an email address. The ORM Auth module currently supports this. Update _line 264_...

Currently when generating the scaffolded project it just prints the stdout of the subprocess directly. This makes it look like the scaffold has failed rather than just the test. It...

Currently our types are hand written. They differ from the jsdoc types in the source code in that a) they're missing documentation and b) the types are often inconsistent. Rather...

The Python library currently exports a singleton instance which can be used to run a model in a two liner: ```py import replicate replicate.run(...) ``` Our JavaScript library has a...

Fixes #187 Most ecosystems are moving towards ECMAScript modules as the primary way of writing code (see [browser](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), , [TypeScript](https://www.typescriptlang.org/docs/handbook/modules/reference.html), [bun](https://bun.sh/docs/runtime/modules#module-systems), [deno](https://docs.deno.com/runtime/manual/basics/modules/) etc). Even the node docs [describe](https://nodejs.org/api/esm.html#introduction) ESM as:...

This PR implements a new `strict` option that can be passed to `run()` to coerce the output into the same data types as defined by the model schema. ```js const...