2
votes
3answers
271 views
Viewing Rails model page works on first view but not subsequent views
This is using Rails 2.2.2
I have a model that uses the acts_as_flaggable plugin, and on the page I use to display an instance of the model, I list any flags that the model has.
When …
0
votes
How can I cache a calculated column in rails?
I've found that sometimes there is good reason to de-normalize information in your database. I have something similar in an app that I am working on and I just re-calculate that field anytime the c …
1
vote
Friendly Form Validations (Rails)
Just to add to the above, I use the Ruby URI module to parse URLs for validity.
http://www.ruby-doc. …
2
votes
Recurring billing with Rails and ActiveMerchant: Best practices, pitfalls, gotchas?
Peepcode has a PDF for sale(70 pages) that details various aspects of payment processing and industry practices for this. It may be worth checking out:
…
0
votes
Programming a simple IRC (Internet-Relay-Chat) Client.
Not exactly an answer to your question, but it may be helpful. If you are using Ruby, I have found the Autumn Leaves project to be a great way to build an IRC bot using Ruby:
…
0
votes
size limit of a mysql query ruby/mysql
I'm definitely not a MySQL expert, but in my experience I have found that using sub-SELECTs can be the source of some performance troubles.
I try to avoid using them, but it isn't always p …
