Alex Browne

Results 69 issues of 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...

enhancement
help wanted

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....

enhancement

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...

enhancement

https://demo.0x.org/marketplace#/erc721/ currently shows three different Cheeze Wizards. One of them has a price of -906.50 ETH. ![Screen Shot 2019-12-05 at 3 03 26 PM](https://user-images.githubusercontent.com/800857/70281714-9746d880-1770-11ea-9fb7-6582918c4ab2.png) 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: ![Screen Shot 2019-12-05 at 3 28 00 PM](https://user-images.githubusercontent.com/800857/70282932-4d5ff180-1774-11ea-9f41-576d9b0954da.png)

# 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...

db
performance

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.

db
performance

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...

db
tech debt