Just another reminder for me:
The Stout Design Blog
| Nine Total Posts | Atlanta, GA • Wednesday, June 19, 2013 | © 2010 Stout Design, Inc |
Rails 3, respond_with, RESTful resources and namespaces
| November 22, 2010 |
I struggled with the exact syntax on using respond_with within my `:admin` namespace. Failed, validations weren’t redirecting to the proper location and other strange routing issues were occuring. As usual, I was over-complicating things and I simply needed to supply the array without the square brackets. So here’s a basic example Here’s the documentation for
[Read More...]
Stout Google Calendar Released!
| November 3, 2010 |
The Stout Google Calendar plugin for WordPress has been released! You can read more about it on the Stout Google Calendar page on this site or download it from the WordPress Plugin directory. If you have any questions or suggestions, please let us know in the forum.
Rails CSV file modes
| February 23, 2010 |
r – Open a file for reading. The file must exist. w – Create an empty file for writing. If a file with the same name already exists its content is erased and the file is treated as a new empty file. a – Append to a file. Writing operations append data at the end
[Read More...]
Apache won’t restart
| February 18, 2010 |
ActiveMerchant tweaks for Authorize.net test transactions
| February 10, 2010 |
Here’s a link to an explanation and code for modifying the authorize_net.rb gateway file in ActiveMerchant. ActiveMerchant, by default, routes requests to the test server if ActiveMerchant::Billing::Base.mode = :test is set. However, you should be able to authenticate to their production server(s) and send a test transaction. The only drawback to this is that no
[Read More...]
Authorize.net test and live modes
| February 10, 2010 |
Here’s a good article to help understand what the Authorize.net’s terminology. http://drp.itdevworks.com/index.php/2009/10/authorize-net-terminology-overload-test-vs-live/
[ActionMailer] Multipart emails with attachments
| February 10, 2010 |
Need to send a multi-part email with an attachment? Here’s a post from Daniel LeBare at ELC on the correct way to do it. http://www.elctech.com/articles/-actionmailer-multipart-emails-with-attachments Here’s the idea (excerpted from the site above)
