Amazing Marvin

Results 12 comments of Amazing Marvin

I rebuilt the icon using `iconutil` and it both looks correct in Finder and fixes the build. I will leave this open since I think it might be worth panicking...

I don't have a field for `lastUpdatedAt` in this "table". And `times` are stored in an array. So either I'd have to fetch everything for this user and sort it...

This would be hard to implement server-side since the number of kudos you get depends on the entire state of the app, like what tasks you've completed today and over...

Webhooks are queued up and only fire once every 3 seconds, so that part should be fine. I've started working on the Zapier webhooks. No ETA yet but this will...

I don't know of a way to do this with couchdb other than by using `all_docs` to grab everything and then doing a depth-first search! With pouchdb it would look...

Since my app lets you drag from one section to another, I implemented a section list using one big DraggableFlatlist. The renderItem distinguishes between sections and other items, rendering them...

Here's what I'm using to scroll to the end of the list. You could modify to scroll to top: ``` scrollToEnd = () => { const items = this.getItems(); const...

Hey, sorry I haven't been checking these issues for a while! What about using: ``` POST /api/times { "date": "2022-09-12", "timeZone": -120 // GMT+2 } => ["ABC", "XYZ", ...] //...

This, and a recent bug report about 500 errors when starting/stopping time tracking, has made me rethink time tracking data. Possibly the endpoint I mentioned above will stop working. On...

The problem with this is there are a bunch of sanity checks in the server that are assuming that only one item at a time can be tracked. It would...