data consistency for invitation registration
Chris, a great episode again! So I compared your solution to mine and my structure ended up being a bit more complex since I needed to provide users to accept/decline joining the product. So I crea...

10
General
Dynamically Defined has_many with odd behavior
Retrospecting, I should have tried to reproduce this independently of the app much, much sooner in the process. like after 15 minutes soon. Would've realized it right then.

5
General
Can I 'alias' a Rails active model to another class
Sounds like it turned out really smoothly! :D

10
General
Testing your markdown
Also, I posted this in slack, but for anyone else that sees this, I forgot that I'm using Redcarpet instead of html-pipeline anymore. It's because html-pipeline is a real pain to deploy to Heroku (...

4
Testing
Save external data in rails db, data structures
Hello,
I need some help/advise on how to save third data in my database, also I'm interested in any tutorial or info about these topic.
I'm struggling to save data from third party api.
I get...

1
General
Opinion: Namespacing Areas of the Application
I tend to use concerns for duplicate functionality rather than namespacing in this way. In your example, a positionable concern might be something to consider since you're talking about maximum 6 m...

2
General
Error: uninitialized constant HTML::Pipeline::SyntaxHighlightFilter::Pygments when installing html-pipeline
I was hable to figure out how to add the html syntax highlighting.
In turn, the actual syntax highlighting is handled by [pygments.rb](https://github.com/tmm1/pygments.rb). `Pygments.rb` can ge...

6
General
Managed hosting
I have been checking out cloud66.com as an option. Looks very interesting... anyone here ever used it?

5
Servers
Dynamic Pricing based on user country
Yeah I'm going to use the Geocoder gem as well as the built-in ip getter from Devise to accomplish that.
Thanks, Chris!

3
General
Opinion: Destroy or not destroy
Honestly, I would probably only purge their data on request. Depending on the app, if they cancel their account, you might give them the option to purge or keep their data, but it's another thing f...

4
General
How to migrate from Heroku to Digital Ocean
Chris, will you be extending Hatch to do patching/updating? tim

11
Servers
Pointing a method to a namespace, class, or something (ruby question)
Here's what I ended up doing, for posterity, and also because I'm gonna have to write this documentation again but for real:
## Context
Writing a custom API wrapper that will be used in more...

3
General
Loop through associated records and deliver as csv
Hi Chris,
many many thanks! I'll try this out.

6
General