Alex Browne
Alex Browne
Currently, there is a process during initialization in which a pool pings all the other pools to determine if any of them have gone down. If they have, any jobs...
Currently, if you cause a worker pool process to quit by sending a UNIX signal (e.g. by pressing ctrl-c), it will quit immediately without waiting for jobs to finish executing....
Every job has a status. Currently there is a sorted set for each status, where all jobs that have that status are stored. Technically only the "queued" set needs to...
https://demo.0x.org/marketplace#/erc721/ currently shows three different Cheeze Wizards. One of them has a price of -906.50 ETH.  Clicking on this Cheeze Wizard leads...
I had a bug in my code that caused `signatureUtils.ecSignOrderAsync` [to reject/throw here](https://github.com/0xProject/0x-launch-kit-frontend/blob/3b20cbd7d4bd0efd9227ad3f1b969d2d93713205/src/store/blockchain/actions.ts#L484). It was difficult to track down what was going on because AFAICT the error is just being...
[CollectibleLinkText](https://github.com/0xProject/0x-launch-kit-frontend/blob/f98d78ce09f29ba53aae80c25de0c04e73c1f9a8/src/components/erc721/collectibles/collectible_sell_modal.tsx#L313) in the collectible sell modal is hard-coded to "CryptoKitties". I think this should be the value of `REACT_APP_COLLECTIBLE_NAME`. See this screenshot: 
# Context In https://github.com/0xProject/0x-mesh/pull/618 we switched to using Go Modules for dependency management within Mesh. However, we are still not 100% compatible with Go Modules, especially for Go developers who...
Our database implementations for both SQL and Dexie.js are only as optimized as they need to be for current usage/demand of Mesh. However, there are a few known areas where...
https://github.com/0xProject/0x-mesh/pull/878/ added logs for slow Dexie.js queries. We should do the same for SQL as this can help us improve performance over time as needed.
One remaining task mentioned in https://github.com/0xProject/0x-mesh/pull/793 that we have not implemented yet is database migrations. In short, [database migrations](https://en.wikipedia.org/wiki/Schema_migration) are a way to change or modify the schema of our...