User Toby Hede - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:40:29Z http://stackoverflow.com/feeds/user/14971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1862854/help-with-rails-and-tinymce/1863521#1863521 0 Answer by Toby Hede for Help with rails and tinyMce Toby Hede 2009-12-07T22:58:26Z 2009-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#200772 10 Answer by Toby Hede for Most interesting non-mainstream language? Toby Hede 2008-10-14T11:23:52Z 2009-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#1806381 1 Answer by Toby Hede for How to deal with rapid project spec changes in a tight deadline scenario? Toby Hede 2009-11-27T01:24:01Z 2009-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#1801005 0 Answer by Toby Hede for When NOT to use AJAX in web application development? Toby Hede 2009-11-26T00:59:50Z 2009-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#1800530 2 Answer by Toby Hede for Help with roles in rails Toby Hede 2009-11-25T22:58:22Z 2009-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#1767619 0 Answer by Toby Hede for Verifying if an object is in an array of objects in Rails Toby Hede 2009-11-20T00:36:24Z 2009-11-20T00:36:24Z <p>You can probably add a group to the query:</p> <pre><code>Snippet.find :all, :conditions =&gt; { :user_id =&gt; session[:user_id] }, :group =&gt; "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 &lt;&lt; snippet.tags.uniq </code></pre> http://stackoverflow.com/questions/1761295/activerecord-sum-errors-with-postgresql 0 ActiveRecord sum errors with postgresql Toby Hede 2009-11-19T06:33:41Z 2009-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#1761318 0 Answer by Toby Hede for ActiveRecord sum errors with postgresql Toby Hede 2009-11-19T06:41:11Z 2009-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-s3 2 Automate deployment of files to Amazon S3? Toby Hede 2009-11-15T02:28:34Z 2009-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#1736325 2 Answer by Toby Hede for Javascript Libraries: jQuery vs Prototype vs MooTools vs Yahoo! UI, Preferences? Toby Hede 2009-11-15T02:03:06Z 2009-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-expiring 1 Rails - fragment cache not expiring Toby Hede 2009-05-22T05:45:15Z 2009-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=&gt;"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 =&gt; "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#1713016 1 Answer by Toby Hede for ajax and javascript penetration Toby Hede 2009-11-11T04:29:53Z 2009-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-rails 5 Object database for Ruby on Rails Toby Hede 2008-10-07T03:03:57Z 2009-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-applications 9 What tools do you use to security test your web applications? Toby Hede 2008-09-22T00:45:47Z 2009-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#1671158 3 Answer by Toby Hede for Methods for limiting the Rails render format to html Toby Hede 2009-11-04T01:08:52Z 2009-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-change 0 jquery MultiSelect submit form on change Toby Hede 2009-02-26T22:04:20Z 2009-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#1613034 1 Answer by Toby Hede for Best design pattern for database table joins Toby Hede 2009-10-23T12:10:09Z 2009-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#1598973 3 Answer by Toby Hede for How to implement Active Record inheritance in Ruby on Rails? Toby Hede 2009-10-21T06:01:55Z 2009-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 &lt; ActiveRecord::Base; end class Firm &lt; Company; end class Client &lt; Company; end class PriorityClient &lt; 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#1592029 0 Answer by Toby Hede for Combining two Rails applications into one Toby Hede 2009-10-20T01:33:07Z 2009-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#1586551 0 Answer by Toby Hede for How to detect attribute changes from model? Toby Hede 2009-10-19T01:16:00Z 2009-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#1583598 0 Answer by Toby Hede for jquery: how can you select texts not surrounded by html tags ? Toby Hede 2009-10-18T00:30:57Z 2009-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#1583592 0 Answer by Toby Hede for Planning for 2 Types of Users on a Rails App Toby Hede 2009-10-18T00:28:34Z 2009-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#1535333 2 Answer by Toby Hede for STL support in Ruby Toby Hede 2009-10-08T02:38:31Z 2009-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#1522754 0 Answer by Toby Hede for Why does one of these jQuery selectors work and the other not? Toby Hede 2009-10-05T22:34:06Z 2009-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>&lt;div class="a"&gt; &lt;div class="b"&gt; </code></pre> <p>But not:</p> <pre><code>&lt;div class="a b"&gt; </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#1512432 1 Answer by Toby Hede for Model attribute changing on find and save in Ruby on Rails. Toby Hede 2009-10-03T00:39:54Z 2009-10-03T00:39:54Z <p>Are you using any authentication plugins?</p> http://stackoverflow.com/questions/1501553/hard-coding-routes-in-rails/1501582#1501582 1 Answer by Toby Hede for Hard coding routes in Rails Toby Hede 2009-10-01T02:18:53Z 2009-10-01T02:18:53Z <p>It's because you are specifying the id:</p> <pre><code>page_path(:id =&gt; 4) </code></pre> <p>You could specify the path you want in this method:</p> <pre><code>page_path(:id =&gt; "#{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-values 1 Using Selenium IDE with random values Toby Hede 2008-10-02T12:21:33Z 2009-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#193689 36 Answer by Toby Hede for Where can I find good examples of Rails applications? Toby Hede 2008-10-11T05:27:10Z 2009-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#1463037 0 Answer by Toby Hede for How to load test PHP Web Forum Software? Toby Hede 2009-09-22T22:44:52Z 2009-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#1463023 0 Answer by Toby Hede for (How can/What should) I implement a database that scales to the upper tens of thousands requests/second? Toby Hede 2009-09-22T22:41:59Z 2009-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-domain Comment by Toby Hede on Sending large of amounts of data cross domain Toby Hede 2009-12-02T00:18:26Z 2009-12-02T00:18:26Z Can you please clarify what do you mean by &quot;Does Google use it?&quot;. 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-x Comment by Toby Hede on Any tools to measure bandwidth usage on Mac OS X? Toby Hede 2009-12-02T00:12:21Z 2009-12-02T00:12:21Z Server Fault didn't exist when this was written :p http://stackoverflow.com/questions/1824947/can-i-program-a-website-with-ruby-on-rails-and-not-have-speghetti-code Comment by Toby Hede on Can I Program a Website with Ruby on Rails and NOT have Speghetti Code? Toby Hede 2009-12-01T10:09:00Z 2009-12-01T10:09:00Z The 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#1806381 Comment by Toby Hede on How to deal with rapid project spec changes in a tight deadline scenario? Toby Hede 2009-11-27T01:24:43Z 2009-11-27T01:24:43Z By &quot;struggle&quot; 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-scenario Comment by Toby Hede on How to deal with rapid project spec changes in a tight deadline scenario? Toby Hede 2009-11-27T01:16:48Z 2009-11-27T01:16:48Z I 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#282505 Comment by Toby Hede on What are five things you hate about your favorite language? Toby Hede 2009-11-25T08:54:53Z 2009-11-25T08:54:53Z I 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#1664382 Comment by Toby Hede on How to handle Ruby on Rails error: "Please install the postgresql adapter: `gem install activerecord-postgresql-adapter'" Toby Hede 2009-11-19T06:00:38Z 2009-11-19T06:00:38Z This one did not work for me ... still looking for a solution. http://stackoverflow.com/questions/1736365/automate-deployment-of-files-to-amazon-s3 Comment by Toby Hede on Automate deployment of files to Amazon S3? Toby Hede 2009-11-16T02:34:50Z 2009-11-16T02:34:50Z I 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/&hellip;</a> http://stackoverflow.com/questions/551261/is-there-a-sample-rails-application-with-a-number-of-cucumber-stories/552264#552264 Comment by Toby Hede on Is there a sample Rails application with a number of cucumber stories? Toby Hede 2009-11-15T08:15:42Z 2009-11-15T08:15:42Z I 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#1736379 Comment by Toby Hede on Automate deployment of files to Amazon S3? Toby Hede 2009-11-15T04:32:56Z 2009-11-15T04:32:56Z Looks great, cheers http://stackoverflow.com/questions/1736313/javascript-libraries-jquery-vs-prototype-vs-mootools-vs-yahoo-ui-preferences/1736323#1736323 Comment by Toby Hede on Javascript Libraries: jQuery vs Prototype vs MooTools vs Yahoo! UI, Preferences? Toby Hede 2009-11-15T02:03:51Z 2009-11-15T02:03:51Z Check 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/&hellip;</a> http://stackoverflow.com/questions/1612731/best-design-pattern-for-database-table-joins/1613034#1613034 Comment by Toby Hede on Best design pattern for database table joins Toby Hede 2009-10-27T00:15:41Z 2009-10-27T00:15:41Z Active 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 &quot;include&quot; 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#1583572 Comment by Toby Hede on Save in ActiveRecord Toby Hede 2009-10-18T00:23:45Z 2009-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-rails Comment by Toby Hede on How do I have plugin architecture in Ruby on Rails? Toby Hede 2009-10-09T09:03:55Z 2009-10-09T09:03:55Z Rails 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#1542682 Comment by Toby Hede on How does one use rescue in Rails without the begin and end block. Toby Hede 2009-10-09T09:02:28Z 2009-10-09T09:02:28Z neat ... did not know that one.