Alex Gleason
Alex Gleason
Fucking Gmail
Right now the code coverage for tests is only 40%. I think this is because we're only testing the models, not the views, URLs, or anything else. The views in...
Unfortunately `dev.sh` doesn't scale very well and maybe I'm not as clever as I thought. As soon as we want to add another service like redis or memcached it changes...
Here's how admins invite GMs: 1. Create a garden in the admin 2. Assign themself as a GM on that garden 3. In the main UI of the site, they...
Right now we're assuming everything is in EST. However, it's possible for a garden or user to be in a timezone outside of EST. To account for this, each garden...
For example, bell peppers can be green, yellow, or red depending on how ripe they are. There needs to be some way to convey that a bell pepper should be...
Info on caching in Django: https://docs.djangoproject.com/en/dev/topics/cache/ We're using the default cache, [`LocMemCache`](https://docs.djangoproject.com/en/dev/topics/cache/#local-memory-caching), which requires no special configuration but it's not as fast as other caches. We can speed this up...
We're starting to do pretty awful hacky things with the templates right now, and I'm starting to feel that continuing to invest in the default Django templates isn't worth it....
It would be interesting to be able to send a photo of the pick to the order requestor, but also for garden managers to track donations over time.
I looked into the code for grouping, and it's a great idea to solve some problems I'm having. But it looks like it just piggybacks off existing REQs? Am I...