Tyler Eon
Tyler Eon
Pardon any ignorance I show, as I'm still relatively new to backbone.js, but the behavior being discussed sounds like `Model.fetch`. The [description](http://backbonejs.org/#Model-fetch) says: > Resets the model's state from the...
@samhamilton Based on my conversations with the maintainer(s) of the Waffle project, it sounded like they took over the code starting at v0.11. To my knowledge, there haven't been any...
You should be striving for "small modules that do one thing well." A friend showed me [this video](https://vimeo.com/131757761) about a developer programming a board game using Elixir. In it the...
Ok, I see what you're doing there. You're relying on `commerce_billing` to have the separation between payment methods, addresses, etc, and your own code is focusing solely on parsing request...
Just wanted to chime in because I was also experiencing this issue. I had to add the whole `Process.trap` stuff to my `GenServer` stuff because I was incorrectly assuming that...
Updated; removed the general "atom" line and only use true and false now.
Right now a proto message will raise a syntax error if it includes the packed option. If we want to leave it like that, because there is no formal handling...
I feel like categories are more like "tags", but you can have nested tags so if you belong to a child tag you basically belong to its parent tag. That...
I double-checked the documentation to see if there was any mention about the need to specify these limits when using file-based storage but the only thing I could find was...
> With no limits set - max age, max bytes etc - you are saying never discard anything. @ripienaar Hmmm, I guess that's a matter of interpretation. To me, it...