User Toby Hede - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T05:40:29Zhttp://stackoverflow.com/feeds/user/14971http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1862854/help-with-rails-and-tinymce/1863521#18635210Answer by Toby Hede for Help with rails and tinyMceToby Hede2009-12-07T22:58:26Z2009-12-07T22:58:26Z<p>TinyMCE has a couple of commercial image and file management plugins, but they are based on PHP and .Net. However, I haven't seen a Rails version. It's not particularly hard to build your own image manager using a plugin like paperclip and hook into TinyMCE. </p>
http://stackoverflow.com/questions/200721/most-interesting-non-mainstream-language/200772#20077210Answer by Toby Hede for Most interesting non-mainstream language?Toby Hede2008-10-14T11:23:52Z2009-12-06T05:58:42Z<p>I would suggest having a look at Erlang - it's been getting a bit of press recently, so some of the learning resources are excellent. If you've used OO and/or procedural languages, Erlang will definitely bend your mind in new and exciting ways.</p>
<p>Erlang is a pure functional language, with ground-up support for concurrent, distributed and fault-tolerant programs. It has a number of interesting features, including the fact that variables aren't really variables at all - they cannot be changed once declared, and are in fact better understood as a form of pattern. </p>
<p>There is some talk around the blogosphere about building on top of the Erlang platform (OTP) and machine support for other languages like Ruby - Erlang would then become a kind of virtual machine for running concurrent apps, which would be a pretty exciting possibility. </p>
http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenario/1806381#18063811Answer by Toby Hede for How to deal with rapid project spec changes in a tight deadline scenario?Toby Hede2009-11-27T01:24:01Z2009-11-27T01:24:01Z<p>This stuff is really challenging to deal with. The real problem here is that you don't actualy have a process. </p>
<p>The answer really depends on the political situation in your organisation and how much eneergy you have to drive change.</p>
<p>In the past I have attempted to introduce process change to several organisations and it has always been a struggle. It is possible, however.</p>
<p>I would have a look around at some methodologies for managing software development. I use and recommend Scrum, for example. </p>
<p>In a situation with rapid change, working on short iterations that have clearly accountable goals can be really helpful. You will probably need to champion and manage your Project Manager, but it sounds like the current "process" is clearly not working, so selling a new process actually becomes easier - you have solid business case for improvement.</p>
<p>A solid process will help you "push-back" on changing requirements. Rapid reactionary change is often a symptom of broader issues in organisational direction and strategy and it is in everyone's interest to fix this problem within the organisation.</p>
http://stackoverflow.com/questions/1799912/when-not-to-use-ajax-in-web-application-development/1801005#18010050Answer by Toby Hede for When NOT to use AJAX in web application development?Toby Hede2009-11-26T00:59:50Z2009-11-26T00:59:50Z<p>You should not use AJAX or JavaScript in cases where:</p>
<ul>
<li>your system needs to be accessible</li>
<li>your system needs to be search friendly</li>
</ul>
<p>However, by using a modern JS framework with some solid "unobtrusive" practices, you can progressively enhance pages so that they remain accessible and search-friendly while offering a slick UI to users.</p>
http://stackoverflow.com/questions/1800517/help-with-roles-in-rails/1800530#18005302Answer by Toby Hede for Help with roles in railsToby Hede2009-11-25T22:58:22Z2009-11-25T22:58:22Z<p>I would suggest having a look at a plugin like <a href="http://github.com/stffn/declarative%5Fauthorization" rel="nofollow">declarative_authorization</a> which provides a full DSL for describing roles and access permissions in your application. </p>
<p>In the link you provided, it looks like the logic is going in the view to disable access to specific features.</p>
http://stackoverflow.com/questions/1767563/verifying-if-an-object-is-in-an-array-of-objects-in-rails/1767619#17676190Answer by Toby Hede for Verifying if an object is in an array of objects in RailsToby Hede2009-11-20T00:36:24Z2009-11-20T00:36:24Z<p>You can probably add a group to the query:</p>
<pre><code>Snippet.find :all, :conditions => { :user_id => session[:user_id] }, :group => "tag.name"
</code></pre>
<p>Group will depend on how your tag data works, of course. </p>
<p>Or use uniq:</p>
<pre><code>@tags << snippet.tags.uniq
</code></pre>
http://stackoverflow.com/questions/1761295/activerecord-sum-errors-with-postgresql0ActiveRecord sum errors with postgresqlToby Hede2009-11-19T06:33:41Z2009-11-19T06:41:11Z
<p>I am using AR's sum method for a query and seeing this error when using PostgreSQL:</p>
<pre><code>PGError: ERROR: function sum(character varying) does not exist
LINE 1: SELECT sum("assets".asset_file_size) AS sum_asset_file_size ...
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
SELECT sum("assets".asset_file_size) AS sum_asset_file_size FROM "assets" [0m
</code></pre>
<p>I am using the following in my code, which works with MySQL:</p>
<pre><code>Asset.sum(:asset_file_size)
</code></pre>
<p>I am trying to get a sum of the asset_file_size column.</p>
<p>What am I missing here?</p>
http://stackoverflow.com/questions/1761295/activerecord-sum-errors-with-postgresql/1761318#17613180Answer by Toby Hede for ActiveRecord sum errors with postgresqlToby Hede2009-11-19T06:41:11Z2009-11-19T06:41:11Z<p>OH.</p>
<p>In writing my question I worked out this issue. </p>
<p>I had accidentally made the column Varchar rather than an Integer. Hence the request to "explicitly type cast".</p>
<p>We apologise for the incovenience.</p>
http://stackoverflow.com/questions/1736365/automate-deployment-of-files-to-amazon-s32Automate deployment of files to Amazon S3?Toby Hede2009-11-15T02:28:34Z2009-11-15T02:37:15Z
<p>I have a Rails project that I will be deploying to the spectacularly awesome <a href="http://heroku.com" rel="nofollow">Heroku</a>.</p>
<p>I would really like to be able to automate pushing my resources to Amazon S3 automatically, resources in this case being my images, stylesheets and javascript. </p>
<p>Obviously I can write some sort of capistrano task to do this myself, but does anyone know of something that does this already?</p>
<p>Note: I don't need to be able to upload user-files to S3 as I do that already via paperclip. I am talking about the actual project files required to run the site. </p>
http://stackoverflow.com/questions/1736313/javascript-libraries-jquery-vs-prototype-vs-mootools-vs-yahoo-ui-preferences/1736325#17363252Answer by Toby Hede for Javascript Libraries: jQuery vs Prototype vs MooTools vs Yahoo! UI, Preferences?Toby Hede2009-11-15T02:03:06Z2009-11-15T02:03:06Z<p>I vote for jQuery every time. It's driven by a philosophy of "doing less". from the website: "jQuery is designed to change the way that you write JavaScript."</p>
<p>jQuery tends to make DOM manipulations very easy and it has an increasingly large number of plugins for all sorts of common tasks. </p>
<p>I have used Prototype extensively and migrated to jQuery in the last year or two and have never looked back. I find the approach to be intuitive and concise, unlike some of the other frameworks around. </p>
<p>However, some of the other frameworks have a a different focus than jQuery and attempt to provide a complete toolset of widgets and helpers on top of the lower-level DOM API. jQuery has a set of UI elements but they aren't quite as sophisticated as some of the other tools you will find.</p>
<p>PS: I haven't done much with YahooUI but the friends I know who have to use it complain about it a lot. </p>
http://stackoverflow.com/questions/896509/rails-fragment-cache-not-expiring1Rails - fragment cache not expiringToby Hede2009-05-22T05:45:15Z2009-11-13T22:00:03Z
<p>This one has me stumped.</p>
<p>I have a view with a cached fragment:</p>
<pre><code> - cache :key=>"news" do
%h2 News
- etc
</code></pre>
<p>I have a sweeper that uses:</p>
<pre><code>def expire_home_cache
puts "expire_home_cache"
expire_fragment(:key => "news")
end
</code></pre>
<p>The sweeper is called as I can see "expire_home_cache" in the console output.</p>
<p>But the fragment is not updated ...</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1712907/ajax-and-javascript-penetration/1713016#17130161Answer by Toby Hede for ajax and javascript penetrationToby Hede2009-11-11T04:29:53Z2009-11-11T04:29:53Z<p>I don't think there is any global rule, it is really going to depend on your app and your audience. </p>
<p>For a web site as opposed to web "application", degrading into non-js views is relatively straight forward (albeit providing a clumsier user experience. </p>
<p>However, many applications straight-up simply require JavaScript - there are some use cases that cannot be done without JS in any reasonably useful way.</p>
<p>Accessibility is a big issue though. However, making a site accessible also often has a knock-on effect in making the site SEO friendly. </p>
http://stackoverflow.com/questions/177094/object-database-for-ruby-on-rails5Object database for Ruby on RailsToby Hede2008-10-07T03:03:57Z2009-11-10T05:37:12Z
<p>Is there drop-in replacement for ActiveRecord that uses some sort of Object Store?</p>
<p>I am thinking something like Erlang's MNesia would be ideal. </p>
<p><strong>Update</strong></p>
<p>I've been investigating CouchDB and I think this is the option I am going to go with. It's a toss-up between using CouchRest and ActiveCouch. CouchRest is pretty mature, and is used in the CouchDB peepcode episode, but it's not a drop-in replacement for ActiveRecord, which is a bit of a disadvantage. </p>
<p>Suffice to say CouchDB is pretty phenomenal. </p>
<p><strong>Update (November 10, 2009)</strong></p>
<p>CouchDB hasn't really worked for me. CouchDB doesn't really support arbitrary queries (queries need to be written and compiled ahead of time). It also breaks on very large datasets.</p>
<p>I have been playing with <a href="http://www.mongodb.org/" rel="nofollow">MongoDB</a> and it's really incredible. Schema-less JSON data store with queries and indexing. </p>
<p>I've even started building a management tool for it called <a href="http://github.com/tobyhede/ming/" rel="nofollow">Ming</a>. </p>
http://stackoverflow.com/questions/112687/what-tools-do-you-use-to-security-test-your-web-applications9What tools do you use to security test your web applications?Toby Hede2008-09-22T00:45:47Z2009-11-08T12:57:05Z
<p>Are there any tools you recommend for security testing your web applications?</p>
<p>I have used WebScarab from OWASP, but find it a bit difficult and unwieldy to use. </p>
<p>Is there anything else you would suggest using?</p>
http://stackoverflow.com/questions/1671111/methods-for-limiting-the-rails-render-format-to-html/1671158#16711583Answer by Toby Hede for Methods for limiting the Rails render format to htmlToby Hede2009-11-04T01:08:52Z2009-11-04T01:08:52Z<p>In your routes you can simply remove the line:</p>
<pre><code>map.connect ':controller/:action/:id.:format'
</code></pre>
<p>And the ".xyz" will no longer be routed, resulting in 404 errors/.</p>
http://stackoverflow.com/questions/592657/jquery-multiselect-submit-form-on-change0jquery MultiSelect submit form on changeToby Hede2009-02-26T22:04:20Z2009-10-28T22:39:50Z
<p>I am using the excellent jQuery MultiSelect plugin as advertised here: <a href="http://abeautifulsite.net/notebook/62" rel="nofollow">http://abeautifulsite.net/notebook/62</a></p>
<p>The problem I have is that I would like to submit the form when the values have changed.
Having all sorts of trouble getting this one working, does anyone have insight into how to achieve this?</p>
<p>Also open to alternative jQuery plugins/scripts if there are any that handle this nicely. </p>
http://stackoverflow.com/questions/1612731/best-design-pattern-for-database-table-joins/1613034#16130341Answer by Toby Hede for Best design pattern for database table joinsToby Hede2009-10-23T12:10:09Z2009-10-23T12:10:09Z<p>The way Active Record in Rails models these is by allowing Customer object to have_many Accounts - which basically translates to a collection of Account objects, which in turn have a collection of Features. The relationships can be bidirectional, so each AR model can "know" about it's relationships, depending on your needs.</p>
<p>I think it is fine for an object to have knowledge of other tables, as such relationships are fundamental to both OO and RDBMS/SQL. </p>
http://stackoverflow.com/questions/1598936/how-to-implement-active-record-inheritance-in-ruby-on-rails/1598973#15989733Answer by Toby Hede for How to implement Active Record inheritance in Ruby on Rails?Toby Hede2009-10-21T06:01:55Z2009-10-21T06:01:55Z<p>Rails supports Single Table Inheritance. </p>
<p>From the <a href="http://api.rubyonrails.org/classes/ActiveRecord/Base.html" rel="nofollow">AR docs</a>:</p>
<blockquote>
<p>Active Record allows inheritance by
storing the name of the class in a
column that by default is named "type"
(can be changed by overwriting
Base.inheritance_column). This means
that an inheritance looking like this:</p>
<pre><code>class Company < ActiveRecord::Base; end
class Firm < Company; end
class Client < Company; end
class PriorityClient < Client; end
</code></pre>
<p>When you do Firm.create(:name =>
"37signals"), this record will be
saved in the companies table with type
= "Firm". You can then fetch this row again using Company.find(:first, "name
= ‘37signals’") and it will return a Firm object.</p>
<p>If you don‘t have a type column
defined in your table, single-table
inheritance won‘t be triggered. In
that case, it‘ll work just like normal
subclasses with no special magic for
differentiating between them or
reloading the right type with find.</p>
</blockquote>
<p>A pretty good tutorial is here: <a href="http://juixe.com/techknow/index.php/2006/06/03/rails-single-table-inheritance/" rel="nofollow">http://juixe.com/techknow/index.php/2006/06/03/rails-single-table-inheritance/</a></p>
http://stackoverflow.com/questions/1591484/combining-two-rails-applications-into-one/1592029#15920290Answer by Toby Hede for Combining two Rails applications into oneToby Hede2009-10-20T01:33:07Z2009-10-20T01:33:07Z<p>You can use the new(ish) Engine feature to embed one app inside another. Your engine lives inside vendor/plugins, can have all of it's own routes and config setup just like a normal rails application but actually share the database. Makes combining applications really easy. We use it with git submodules to make management of complex applications seamless. </p>
http://stackoverflow.com/questions/1586536/how-to-detect-attribute-changes-from-model/1586551#15865510Answer by Toby Hede for How to detect attribute changes from model?Toby Hede2009-10-19T01:16:00Z2009-10-19T01:16:00Z<p>I recommend you have a look at one of the available state machine plugins:</p>
<ul>
<li><a href="http://github.com/omghax/acts%5Fas%5Fstate%5Fmachine/tree/master" rel="nofollow">acts_as_state_machine</a></li>
<li><a href="http://github.com/avdi/alter-ego/" rel="nofollow">alter_ego</a></li>
</ul>
<p>Either one will let you setup states and transitions between states. Very useful and easy way of handling your requirements.</p>
http://stackoverflow.com/questions/1583476/jquery-how-can-you-select-texts-not-surrounded-by-html-tags/1583598#15835980Answer by Toby Hede for jquery: how can you select texts not surrounded by html tags ?Toby Hede2009-10-18T00:30:57Z2009-10-18T00:30:57Z<p>It looks to me that your text should actually be a list (ol/ul). This would then give you some semantic hooks for jQuery and make things a whole lot easier.</p>
http://stackoverflow.com/questions/1355370/planning-for-2-types-of-users-on-a-rails-app/1583592#15835920Answer by Toby Hede for Planning for 2 Types of Users on a Rails AppToby Hede2009-10-18T00:28:34Z2009-10-18T00:28:34Z<p>You can also look at using a more fully-fledged authorisation plugin like:</p>
<ul>
<li><a href="http://github.com/DocSavage/rails-authorization-plugin" rel="nofollow">http://github.com/DocSavage/rails-authorization-plugin</a></li>
<li><a href="http://github.com/stffn/declarative%5Fauthorization" rel="nofollow">http://github.com/stffn/declarative%5Fauthorization</a></li>
</ul>
<p>Such a system provides you with a complete DSL for providing access to your application. </p>
http://stackoverflow.com/questions/1535319/stl-support-in-ruby/1535333#15353332Answer by Toby Hede for STL support in RubyToby Hede2009-10-08T02:38:31Z2009-10-08T02:38:31Z<p>If you are referring to something like the C++ STL, then this is largely built in to Ruby already. Ruby has a large suite of basic data structures and other utilities. </p>
http://stackoverflow.com/questions/1522706/why-does-one-of-these-jquery-selectors-work-and-the-other-not/1522754#15227540Answer by Toby Hede for Why does one of these jQuery selectors work and the other not?Toby Hede2009-10-05T22:34:06Z2009-10-05T22:34:06Z<p>find() does not search the selected elements, only their descendants ... so if the .b class is on the div.a element, you won't find it.</p>
<p>Find will find:</p>
<pre><code><div class="a">
<div class="b">
</code></pre>
<p>But not:</p>
<pre><code><div class="a b">
</code></pre>
<p>For more:
<a href="http://docs.jquery.com/Traversing/find" rel="nofollow">http://docs.jquery.com/Traversing/find</a></p>
http://stackoverflow.com/questions/1512412/model-attribute-changing-on-find-and-save-in-ruby-on-rails/1512432#15124321Answer by Toby Hede for Model attribute changing on find and save in Ruby on Rails.Toby Hede2009-10-03T00:39:54Z2009-10-03T00:39:54Z<p>Are you using any authentication plugins?</p>
http://stackoverflow.com/questions/1501553/hard-coding-routes-in-rails/1501582#15015821Answer by Toby Hede for Hard coding routes in RailsToby Hede2009-10-01T02:18:53Z2009-10-01T02:18:53Z<p>It's because you are specifying the id:</p>
<pre><code>page_path(:id => 4)
</code></pre>
<p>You could specify the path you want in this method:</p>
<pre><code>page_path(:id => "#{id}-#{title.parameterize}")
</code></pre>
<p>Where have you defined the to_param method? In the model?</p>
http://stackoverflow.com/questions/161984/using-selenium-ide-with-random-values1Using Selenium IDE with random valuesToby Hede2008-10-02T12:21:33Z2009-09-30T15:01:36Z
<p>Is it possible to create Selenium tests using the Firefox plugin that use randomly generated values to help do regression tests?</p>
<p><strong>The full story:</strong>
I would like to help my clients do acceptance testing by providing them with a suite of tests that use some smarts to create random (or at least pseudo-random) values for the database. One of the issues with my Selenium IDE tests at the moment is that they have predefined values - which makes some types of testing problematic. </p>
http://stackoverflow.com/questions/193632/where-can-i-find-good-examples-of-rails-applications/193689#19368936Answer by Toby Hede for Where can I find good examples of Rails applications?Toby Hede2008-10-11T05:27:10Z2009-09-25T03:32:52Z<p>On my drive I have a number of open-source Rails apps I have used for reference while learning Rails as also sanity checking that I am doing things the "rails-way":</p>
<ul>
<li><a href="http://www.pragprog.com/titles/rails2/agile-web-development-with-rails" rel="nofollow">Depot</a> (from the Agile Dev with Rails book)</li>
<li><a href="http://beast.caboo.se/" rel="nofollow">Beast</a> (forum)</li>
<li><a href="http://mephistoblog.com/" rel="nofollow">Mephisto</a> (blogging)</li>
<li><a href="http://radiantcms.org/" rel="nofollow">Radiant</a> (cms)</li>
<li><a href="http://code.google.com/p/substruct/" rel="nofollow">Substruct</a> (ecommerce) </li>
<li><a href="http://www.rousette.org.uk/projects/" rel="nofollow">Tracks</a> (to-do list and task manager)</li>
</ul>
<p><strong>Beast</strong> and <strong>Mephisto</strong> are particularly valuable as they have been developed by high-profile members of the Rails community. </p>
http://stackoverflow.com/questions/1442435/how-to-load-test-php-web-forum-software/1463037#14630370Answer by Toby Hede for How to load test PHP Web Forum Software?Toby Hede2009-09-22T22:44:52Z2009-09-22T22:44:52Z<p>I use and recommend <a href="http://www.hpl.hp.com/research/linux/httperf/" rel="nofollow">httperf</a> and <a href="http://tsung.erlang-projects.org/" rel="nofollow">Tsung</a>.</p>
<p>httperf simplifies running multiple concurrent requests against a URL. </p>
<p>Tsung lets you script a user flow through the application. </p>
http://stackoverflow.com/questions/559134/how-can-what-should-i-implement-a-database-that-scales-to-the-upper-tens-of-tho/1463023#14630230Answer by Toby Hede for (How can/What should) I implement a database that scales to the upper tens of thousands requests/second?Toby Hede2009-09-22T22:41:59Z2009-09-22T22:41:59Z<p>I doubt any system will give you the out-of-the-box performance that you need. You are probably going to start hitting hard limits on the machine you are on (with just about any write-intensive db you will hit I/O limits pretty fast). Some analysis might be required, but the disk is nearly always the bottleneck. More RAM will help, as will using Solid State Disks.</p>
<p>However, you will probably need clustering of some kind regardless of which actual db you use. You can shard the data itself, or with MySQL, setting up read-slaves will spread the load across nodes and should give you the throughput you are looking for.</p>
<p>Also: MongoDB is awesome. Might be worth a look. </p>
http://stackoverflow.com/questions/1829843/sending-large-of-amounts-of-data-cross-domainComment by Toby Hede on Sending large of amounts of data cross domainToby Hede2009-12-02T00:18:26Z2009-12-02T00:18:26ZCan you please clarify what do you mean by "Does Google use it?". Do you mean will such a technique be SEO-friendly? Or that Google have an example of the technique being used?http://stackoverflow.com/questions/195103/any-tools-to-measure-bandwidth-usage-on-mac-os-xComment by Toby Hede on Any tools to measure bandwidth usage on Mac OS X?Toby Hede2009-12-02T00:12:21Z2009-12-02T00:12:21ZServer Fault didn't exist when this was written :phttp://stackoverflow.com/questions/1824947/can-i-program-a-website-with-ruby-on-rails-and-not-have-speghetti-codeComment by Toby Hede on Can I Program a Website with Ruby on Rails and NOT have Speghetti Code?Toby Hede2009-12-01T10:09:00Z2009-12-01T10:09:00ZThe question is pretty loaded. Writing non-spaghetti code is a function of pattern as much as it is of language. A solid MVC framework can do wonders for PHP. I'd still vote for a better language though.http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenario/1806381#1806381Comment by Toby Hede on How to deal with rapid project spec changes in a tight deadline scenario?Toby Hede2009-11-27T01:24:43Z2009-11-27T01:24:43ZBy "struggle" I mean that on more than one occasion I eventually left the company.http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenarioComment by Toby Hede on How to deal with rapid project spec changes in a tight deadline scenario?Toby Hede2009-11-27T01:16:48Z2009-11-27T01:16:48ZI don't think you are missing the M from the PM. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282505#282505Comment by Toby Hede on What are five things you hate about your favorite language?Toby Hede2009-11-25T08:54:53Z2009-11-25T08:54:53ZI find it interesting that 3 of these are to do with people and not the language itself. Ruby remains the language I hate least. http://stackoverflow.com/questions/1664364/how-to-handle-ruby-on-rails-error-please-install-the-postgresql-adapter-gem-i/1664382#1664382Comment by Toby Hede on How to handle Ruby on Rails error: "Please install the postgresql adapter: `gem install activerecord-postgresql-adapter'"Toby Hede2009-11-19T06:00:38Z2009-11-19T06:00:38ZThis one did not work for me ... still looking for a solution. http://stackoverflow.com/questions/1736365/automate-deployment-of-files-to-amazon-s3Comment by Toby Hede on Automate deployment of files to Amazon S3?Toby Hede2009-11-16T02:34:50Z2009-11-16T02:34:50ZI have been reading the information here regarding File Sizes and Slugs: <a href="http://docs.heroku.com/constraints#large-static-assets" rel="nofollow">docs.heroku.com/constraints#large-static-assets/…</a>http://stackoverflow.com/questions/551261/is-there-a-sample-rails-application-with-a-number-of-cucumber-stories/552264#552264Comment by Toby Hede on Is there a sample Rails application with a number of cucumber stories?Toby Hede2009-11-15T08:15:42Z2009-11-15T08:15:42ZI agree with you on that point.
And, to be honest, I've started doing much the same thing myself since I originally wrote this comment.
I don't test everything, but I use it to help myself reason about what I am doing.
In my day job we have dedicated BA and QA resources, so we use cucumber a lot. http://stackoverflow.com/questions/1736365/automate-deployment-of-files-to-amazon-s3/1736379#1736379Comment by Toby Hede on Automate deployment of files to Amazon S3?Toby Hede2009-11-15T04:32:56Z2009-11-15T04:32:56ZLooks great, cheershttp://stackoverflow.com/questions/1736313/javascript-libraries-jquery-vs-prototype-vs-mootools-vs-yahoo-ui-preferences/1736323#1736323Comment by Toby Hede on Javascript Libraries: jQuery vs Prototype vs MooTools vs Yahoo! UI, Preferences?Toby Hede2009-11-15T02:03:51Z2009-11-15T02:03:51ZCheck this recent sitepoint article on closure: <a href="http://www.sitepoint.com/blogs/2009/11/12/google-closure-how-not-to-write-javascript/" rel="nofollow">sitepoint.com/blogs/2009/…</a>http://stackoverflow.com/questions/1612731/best-design-pattern-for-database-table-joins/1613034#1613034Comment by Toby Hede on Best design pattern for database table joinsToby Hede2009-10-27T00:15:41Z2009-10-27T00:15:41ZActive Record in Rails is pretty sophisticated. The default behaviour is that collections will be lazy-loaded, which can mean extra queries. However data can be eager-loaded by using an "include" mechanism on the initial find (so when you load a Customer, you tell it to load the Accounts as well and AR will create a join for you). Specific fields can also be loaded - you simply tell it which fields to load. http://stackoverflow.com/questions/1582687/save-in-activerecord/1583572#1583572Comment by Toby Hede on Save in ActiveRecordToby Hede2009-10-18T00:23:45Z2009-10-18T00:23:45Z+1: AR generates the accessor methods for you from your DB table. No need to override. http://stackoverflow.com/questions/1542130/how-do-i-have-plugin-architecture-in-ruby-on-railsComment by Toby Hede on How do I have plugin architecture in Ruby on Rails?Toby Hede2009-10-09T09:03:55Z2009-10-09T09:03:55ZRails is a bit lower-level than Joomla ... you might need to build some of the infrastructure yourself, or use an existing Rails application.http://stackoverflow.com/questions/1542672/how-does-one-use-rescue-in-rails-without-the-begin-and-end-block/1542682#1542682Comment by Toby Hede on How does one use rescue in Rails without the begin and end block.Toby Hede2009-10-09T09:02:28Z2009-10-09T09:02:28Zneat ... did not know that one.