User Mike Woodhouse - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T06:10:43Zhttp://stackoverflow.com/feeds/user/1060http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902744/when-is-eval-in-ruby-justified/1903124#19031241Answer by Mike Woodhouse for When is `eval` in Ruby justifiedMike Woodhouse2009-12-14T19:59:31Z2009-12-14T19:59:31Z<p>When is it justified? I'd say when there's no reasonable alternative. I was able to think of one use where I can't think of an alternative: irb, which, if you dig deep enough (to <code>workspace.rb</code>, around line 80 in my copy if you're interested) uses eval to execute your input:</p>
<pre><code>def evaluate(context, statements, file = __FILE__, line = __LINE__)
eval(statements, @binding, file, line)
end
</code></pre>
<p>That seems pretty reasonable to me - a situation where you specifically don't know what code you're going to have to execute until the very moment that you're asked to do so. Something dynamic and interactive seems to fit the bill.</p>
http://stackoverflow.com/questions/1895164/ruby-in-comparison-of-fixnum-with-array-failed-argumenterror/1896141#18961411Answer by Mike Woodhouse for Ruby: "in `<=': comparison of Fixnum with Array failed (ArgumentError)"Mike Woodhouse2009-12-13T10:47:45Z2009-12-13T10:47:45Z<p>The code as published doesn't look like it should give the error described unless you inadvertently feed it an array.</p>
<p>You might want to look at the divmod() function, which could clean up the inner loop somewhat. And you're going to perform a lot of unnecessary integer divisions should your smallest prime factor be large.</p>
<p>It's not the answer you're looking for, but a particularly elegant Ruby prime factor solution can be found <a href="http://www.benrady.com/2009/12/katarubytail-recursive-prime-factors.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1895828/question-about-ruby-on-rails-constants-belongsto-database-optimization-perfo/1896114#18961140Answer by Mike Woodhouse for Question about Ruby on Rails, Constants, belongs_to & Database Optimization/PerformanceMike Woodhouse2009-12-13T10:31:41Z2009-12-13T10:31:41Z<p>Have you tried the alternative on a representative database? From the example given, I'm a little sceptical that it's going to make much difference, you see. If there are only three statuses then a query by status may be better-off not using an index at all.</p>
<p>Say "completed" comprises 80% of your table - with no other indexed column involved, you're going to be requiring <em>more</em> reads if the index is used than not. So a query of that type is almost certainly going to get slower as the table grows. "incomplete" and "pending" queries would probably still benefit from an index, however; they'd only be affected as the total number of rows with those statuses grew.</p>
<p>How often do you look at everything, complete and otherwise, without some more selective criterion? Could you partition the table in some (internal or external) way? For example, store completed transactions in a separate table, moving new ones there as they reach their final (?) state. I think internal database partitioning was introduced in MySQL 5.1 - looking at the <a href="http://dev.mysql.com/doc/refman/5.1/en/partitioning-types.html" rel="nofollow">documentation</a> it seems that a RANGE partition might be appropriate.</p>
<p>All that said, I do think there's probably some benefit to moving away from storing statuses as strings. Storage and bandwidth considerations aside, it's a lot less likely that you'll inadvertently mis-spell an integer or, better yet, a constant or symbol.</p>
http://stackoverflow.com/questions/14435/class-designer/14483#144832Answer by Mike Woodhouse for Class designerMike Woodhouse2008-08-18T11:47:26Z2009-12-09T08:46:01Z<p>It's easy, while in the paper-and-pen (or whatever non-code equivalent you prefer) stage, to overstay, falling prey to the dreaded <a href="http://en.wikipedia.org/wiki/You%5FAin%27t%5FGonna%5FNeed%5FIt" rel="nofollow">YAGNI</a> syndrome. How many of us have carefully designed in some "sexy" feature that ended up never being used? (Raises hand. Hands.)</p>
<p>Small iterative test-driven steps and frequent refactoring - let the code tell you what it wants to be.</p>
<p>Most of my projects start out with the only certainty being that we won't end up where we currently think we will. So spending very much time on Big Up-Front Design (or <a href="http://c2.com/cgi/wiki?BigDesignUpFront" rel="nofollow">Big Design Up Front</a> if you prefer) is wasteful - better to start with the first thing we want to do and see where we end up.</p>
<p>It kind of depends on where you consider design to end. I read an article a few years back that presented the idea that coding is design - or for the Big Process fans at least it's the back-end of design. It rang true to me and changed forever the way I viewed the stages of the development process. Of course, I've just googled like crazy for the darn thing. Could I find it? Could I heck. Perhaps I dreamed the article and it's all my own idea. Yeah, that'll be it.</p>
http://stackoverflow.com/questions/1861091/default-scope-in-older-rails-versions/1861601#18616013Answer by Mike Woodhouse for default scope in older rails versionsMike Woodhouse2009-12-07T17:39:08Z2009-12-07T17:39:08Z<p>You might consider back-porting the default_scope functionality into your project.</p>
<p>I think <a href="http://github.com/rails/rails/commit/2530d0eea8eaecd2c61f99225f050ff47973e9a0" rel="nofollow">this is the commit</a> that added default_scope.</p>
<p>You shoujld only need to make the changes shown in <a href="http://github.com/rails/rails/commit/2530d0eea8eaecd2c61f99225f050ff47973e9a0#diff-1" rel="nofollow">active_record/base.rb</a>. The other parts are documentation and test, which you should consider adding but are not essential.</p>
http://stackoverflow.com/questions/1850640/objective-reasons-for-using-python-or-ruby-for-a-new-rest-web-api/1852162#18521620Answer by Mike Woodhouse for Objective reasons for using Python or Ruby for a new REST Web APIMike Woodhouse2009-12-05T13:05:49Z2009-12-05T13:05:49Z<p>Either will do a great job and you'll gain in other ways from learning something new. Why not spend as couple of days with each? See how far you can get with a simple subset of the problem, then see how you feel. For bonus points report back here and answer your own question! </p>
http://stackoverflow.com/questions/1837585/whats-the-best-air-ruby-integration-tool-framework/1838617#18386171Answer by Mike Woodhouse for What's the best AIR & Ruby integration tool/framework?Mike Woodhouse2009-12-03T08:58:33Z2009-12-03T08:58:33Z<p>I think the better question might have been "is there an AIR/Ruby integration framework?" because I don't recall ever having seen such a thing...</p>
<p>Did you consider <a href="http://www.google.co.uk/search?q=ruby+air+adobe" rel="nofollow">Google</a> as a possible first port-of-call? ;-)</p>
<p>First result I got was some info at <a href="http://www.rubyinside.com/adobe-integrated-runtime-air-resources-roundup-for-ruby-on-rails-developers-531.html" rel="nofollow">RubyInside</a>.</p>
<p>However, the fact that this question is (as I write this) the #8 search result suggests that there may may not be much <em>to</em> find.</p>
<p>Beyond that, I'd also suggest taking a look at <a href="http://wxruby.rubyforge.org/wiki/wiki.pl" rel="nofollow">WxRuby</a>, which seems - from a Windows-only perspective so far - to produce nicely native-looking UIs.</p>
http://stackoverflow.com/questions/1831237/my-plan-for-being-a-great-web-developer-with-ruby-on-rails-specialty/1831852#18318527Answer by Mike Woodhouse for My Plan for Being a Great Web Developer (with Ruby on Rails specialty)Mike Woodhouse2009-12-02T09:54:20Z2009-12-02T09:54:20Z<p>Nice ambition.</p>
<p>Start with #5. You'll get practical exposure from the beginning and #1 and #2 will happen as you go. Don't worry about #3 until you need it, which may be never. If you've built a site that gets large (lucky!) enough to have scaling problems, that will be the time to figure out what to do.</p>
<p>I don't know about #4 - should you be expert in one CSS framework or familiar with several? What if a client required that you use, say, YUI? I think I'd rather see some evidence that you really understand Javascript, AJAX and at least one major framework. JQuery and Prototype for a start, plus customized solutions.</p>
<p>What about templating and markup alternatives? HAML? erb? Builder?</p>
<p>Testing? Which framework? test/unit? minitest? shoulda? rspec? riot? What's your view on mocking?</p>
<p>Something else that may be missing: you should have some practical skills with database design and SQL. The ORMs available in Ruby (you should probably have some working knowledge of at least one alternative to ActiveRecord, for that matter - Datamapper, Sequel, something like that) </p>
<p>Daunting, isn't it? ;-)</p>
<p>Hence the "start with #5" idea: pick a (somewhat non-trivial) application and a set of technologies and apply them. Then build another one (or the same one) with a completely different set. See what happens. </p>
<p>Learn. Have fun. Live long and prosper.</p>
http://stackoverflow.com/questions/1831270/excel-macro-to-save-as-filename-excel-file-and-close-open-excel-file/1831779#18317790Answer by Mike Woodhouse for excel macro to save as filename excel file and close open excel fileMike Woodhouse2009-12-02T09:38:35Z2009-12-02T09:38:35Z<p>You could use something as simple as this, which I put in another workbook and executed from the Tools...Macros menu (Alt+F8) after activating the workbook to be saved.</p>
<pre><code>Public Sub SaveAsAndClose()
ActiveWorkbook.SaveAs "finaloutput.xls"
ActiveWorkbook.Close
End Sub
</code></pre>
http://stackoverflow.com/questions/1829219/dynamically-create-arrays-in-ruby/1829255#18292550Answer by Mike Woodhouse for Dynamically Create Arrays in RubyMike Woodhouse2009-12-01T22:02:46Z2009-12-01T22:02:46Z<p>Are you happy to end up with an array of arrays? In which this might be useful:</p>
<pre><code>book_sales = books_array.collect do |book|
puts "Please input weekly sales of #{books_array[0]} separated by a comma."
gets.chomp.split(",").collect{ |s| s.to_i }
end
</code></pre>
<p>Looking at it, you might prefer a hash, keyed by book. Something like this:</p>
<pre><code>book_sales = books_array.inject({}) do |hash, book|
puts "Please input weekly sales of #{books_array[0]} separated by a comma."
weekly_sales = gets.chomp.split(",").collect{ |s| s.to_i }
hash[book] = weekly_sales
end
</code></pre>
http://stackoverflow.com/questions/1823777/how-to-call-a-c-dll-in-ruby/1824795#18247952Answer by Mike Woodhouse for How to call a C# dll in ruby?Mike Woodhouse2009-12-01T08:37:41Z2009-12-01T08:37:41Z<p>I can think of a few possibilities:</p>
<ul>
<li>Write (or get someone to write) a COM wrapper for your DLL, if it doesn't already have one, then use Ruby's <code>WIN32OLE</code> library to call it;</li>
<li>Take a look at <a href="http://rubyforge.org/projects/rubyclr/" rel="nofollow">RubyCLR</a>, one of the authors of which was <a href="http://www.iunknown.com/" rel="nofollow">John Lam</a>, who went on to work on IronRuby at Microsoft. (I don't think it's maintained any longer, and it may not support .Net versions above 2.0);</li>
<li>As already mentioned elsewhere, look at using <a href="http://ironruby.net/" rel="nofollow">IronRuby</a>, if that's a technical option for you.</li>
</ul>
<p>There's a thread on the topic <a href="http://www.mombu.com/programming/c-net/t-net-dll-in-ruby-1453524.html" rel="nofollow">here</a>. Note that the last post is actually from John Lam (looks like March 2009) where he seems comfortable asserting that RubyCLR is still functional...</p>
http://stackoverflow.com/questions/1819429/macro-too-big-to-run-keeps-not-responding/1819543#18195430Answer by Mike Woodhouse for Macro too big to run, keeps 'not responding'.Mike Woodhouse2009-11-30T12:30:23Z2009-11-30T12:30:23Z<p>I don't know if it's the query that's causing the problem, but that would be my first concern - it's horrible. I can't see any reason for all those correlated sub-queries. Nor can I see any purpose in the self-join. It looks like you're trying to get the maximum value for each sample for each value of <code>A</code>? Without anything on which to test it, I'm only guessing, but I'd say that this:</p>
<pre><code>Dim sampno As Integer
strSQL = "SELECT a.[A], Max(a.Serial) As Serial"
For sampno = 1 To 187
strSQL = strSQL & ", Max(a.Sample" & sampno & ") As Sample" & sampno
Next
strSQL = strSQL & " From [Data$] a" _
& " GROUP BY a.[A]"
</code></pre>
<p>would give the same results.</p>
<p>400 fields would be a problem in any version of Excel pre-2007 (because those versions only supported 256 columns), otherwise 400 should be fine.</p>
http://stackoverflow.com/questions/1818518/question-about-overriding-initialize-method/1818589#18185891Answer by Mike Woodhouse for question about overriding initialize methodMike Woodhouse2009-11-30T08:53:20Z2009-11-30T08:53:20Z<p>It looks like there's some type checking occurring in <code>BigDecimal.new()</code>, which is getting upset before your overridden <code>initialize</code> is reached. See point 19 in <a href="http://rubylearning.com/satishtalim/ruby%5Fsummary5.html" rel="nofollow">this list</a></p>
<p>It's not often an issue (I remembered something but still had to look it up) but there's a <code>new</code> class method that, if I recall correctly, actually creates the object and then calls <code>initialize</code>.</p>
<p>Overriding <code>new</code> on the class, thus:</p>
<pre><code>class Test2 < BigDecimal
def Test2.new(a, b)
puts a
puts b
end
end
Test2.new('42', 'banana')
</code></pre>
<p>gives the hoped-for answer.</p>
http://stackoverflow.com/questions/1815276/how-do-you-remove-the-documentation-installed-by-gem-install/1815326#18153260Answer by Mike Woodhouse for How do you remove the documentation installed by gem install?Mike Woodhouse2009-11-29T11:45:34Z2009-11-29T11:45:34Z<p>Gem documentation is installed in [RUBY]/lib/ruby/gems/doc, where [RUBY] is the directory into which you installed Ruby (C:/ruby on my machine).</p>
<p>I don't see why you shouldn't just delete the folders representing the gems for which don't don't need documentation: you can always regenerate it.</p>
http://stackoverflow.com/questions/1813196/hasmany-in-rails-uses-a-join/1813249#18132491Answer by Mike Woodhouse for has_many in Rails uses a JOINMike Woodhouse2009-11-28T18:09:53Z2009-11-28T18:09:53Z<p>In ActiveRecord (which is the ORM used by default within Rails but not the only one possible) a <code>has_many</code> relationship will typically involve two models and hence two tables. So these models:</p>
<pre><code>class Order < ActiveRecord::Base
has_many :order_items
end
class OrderItem < ActiveRecord::Base
belongs_to :order
end
</code></pre>
<p>...will reference <code>orders</code> and <code>order_items</code> tables, the latter having a foreign_key <code>order_id</code> reference to its parent order.</p>
<pre><code>Order.find(some_id)
</code></pre>
<p>will retrieve a single order. <code>order_items</code> won't be touched unless you reference it explicitly, or add directives into your class definition to require the the association always be navigated.</p>
<p>I'm not sure why you're so concerned about using joins though. With appropriate indexing almost any modern DBMS will be highly efficient: it's what they're designed to do.</p>
http://stackoverflow.com/questions/1807942/overcoming-a-basic-problem-with-csv-parsing-using-the-fastercsv-gem/1808300#18083000Answer by Mike Woodhouse for Overcoming a basic problem with CSV parsing using the FasterCSV gemMike Woodhouse2009-11-27T11:50:43Z2009-11-27T11:50:43Z<p>I had hoped that the <code>:col_sep</code> option might allow a regular expression, but it seems to be used for both reading and writing, which is a shame. The <a href="http://fastercsv.rubyforge.org/classes/FasterCSV.html" rel="nofollow">documentation</a> doesn't hold out much hope and your need is probably more immediate than could be satisfied by requesting a change or submitting a patch ;-)</p>
<p>If you're calling <code>#parse_line</code> explicitly, then you could always call </p>
<pre><code>gsub(/,\s*/, ',')
</code></pre>
<p>on your input line. That regular expression might need to change significantly if you anticipate the possibility of comma-space within quoted strings. (I'd suggest reposting such a question here with a suitable tag and let the RegEx mavens loose on it should that be the case).</p>
http://stackoverflow.com/questions/1795414/exceldna-managed-xll-excel-interop/1796445#17964451Answer by Mike Woodhouse for ExcelDNA / Managed XLL / Excel InteropMike Woodhouse2009-11-25T11:47:26Z2009-11-25T11:47:26Z<p>The obvious practical problem with the <a href="http://msdn.microsoft.com/en-us/vsto/default.aspx" rel="nofollow">VSTO</a>/COM Interop technology is the overhead incurred when transitioning between worksheet and managed code. (And if you're trying to talk to Excel without the help of VSTO, stop doing so and save yourself some huge headaches). I thought VSTO did a pretty good job of providing a close analog of the Excel object model in the managed environment - certainly I didn't need to spend much time trying to understand much more about .NET Interop.</p>
<p>For longer-running automation activities the overhead's not so much of a problem, similar concerns to VBA automation apply: reduce calls across the interface as far as possible to get best performance.</p>
<p>For smaller, faster worksheet function-type work (the sort of thing where we might write an XLL, say) that overhead can be a killer. <a href="http://groups.google.com/group/exceldna/files" rel="nofollow">ExcelDNA</a> seems to be a great way into delivering managed code through the XLL model - and the price is right.</p>
http://stackoverflow.com/questions/1762038/how-can-ruby-do-this-task-case-insensitive-string-search-replace-in-ruby/1762429#17624291Answer by Mike Woodhouse for How can ruby do this task (Case-insensitive string search & replace in Ruby)?Mike Woodhouse2009-11-19T10:46:39Z2009-11-19T10:46:39Z<p>The important thing to take account of in all 3 answers so far, is the use of the "i" modifier on the regular expression. This is the shorthand way to specify the use of the <code>Regexp::IGNORECASE</code> option.</p>
<p>A useful Ruby Regexp tutorial is <a href="http://www.regular-expressions.info/ruby.html" rel="nofollow">here</a> and the class is documented <a href="http://ruby-doc.org/core/classes/Regexp.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1759599/viability-of-ruby-for-cross-platform-development-with-native-toolkits/1761983#17619831Answer by Mike Woodhouse for Viability of Ruby for Cross-Platform Development With Native Toolkits?Mike Woodhouse2009-11-19T09:26:48Z2009-11-19T09:26:48Z<p>It's possible, although I'd be a little wary of the approach you've outlined: IronRuby isn't 1.0 yet, for example.</p>
<p>Are you expecting much OS-specific work beyond the UI? If not then I'd start by looking at <a href="http://wxruby.rubyforge.org/wiki/wiki.pl" rel="nofollow">WxRuby</a>, which is a (fairly thin) wrapper of the cross-platform <a href="http://www.wxwidgets.org/" rel="nofollow">WxWidgets</a> library. Don't work too hard looking for good documentation of the Ruby wrapper, btw - painful experience has taught me to look at the example code, which is actually very comprehensive.</p>
<p>Other platform specific stuff should probably be abstracted/encapsulated away behind some sort of wrapper/facade/api/proxy (pick your pattern).</p>
<p>You say "closed source" - did you have a strategy for that in a Ruby context? While there are at least a couple of tools (ruby2exe and <a href="http://www.erikveen.dds.nl/rubyscript2exe/" rel="nofollow">RubyScript2exe</a>) that I've seen, I don't know how hidden your Ruby code will actually be. Does it need to be a standalone, deployed executable at all, or could it be browser-based? That would solve all the cross-platform issues (although you might be running face-first into cross-browser ones instead).</p>
<p>There's some more discussion (including Python, which is another alternative) in <a href="http://stackoverflow.com/questions/940149/distributing-ruby-python-desktop-apps">this SO question</a></p>
http://stackoverflow.com/questions/1758570/filtering-activerecord-queries-by-multiple-unique-attributes-and-combining-result/1758603#17586032Answer by Mike Woodhouse for Filtering ActiveRecord queries by multiple unique attributes and combining resultsMike Woodhouse2009-11-18T19:51:49Z2009-11-18T19:51:49Z<p>Unless I've misunderstood, I think you might be looking for this:</p>
<pre><code>@contests.group_by { |c| [c.geo, c.office, c.cd] }
</code></pre>
<p>It gives you a Hash, keyed on <code>[c.geo, c.office, c.cd]</code>, each entry of which contains an Array of the contests that share the combination.</p>
http://stackoverflow.com/questions/1749600/iterating-through-a-class-in-excel-vba/1750029#17500292Answer by Mike Woodhouse for Iterating Through a Class in Excel VBAMike Woodhouse2009-11-17T16:22:57Z2009-11-17T16:22:57Z<p>You already have the big saving (switching off auto-calculation while writing) but there are a few other little tricks to keep in mind for the future.</p>
<p>Firstly, every time you write a cell from VBA there's an overhead caused by VBA going to the workbook/wootksheet/cell address and performing the write. Writing many cells in one call incurs that overhead only once. So packing several values into an array and writing that array across several cells gains time. Not worth it for a few lines, but well worth the effort for hundreds.</p>
<p>Further, there's another little overhead for each "dot". The terms in a "dotted" expression such as <code>Sheets("Terminal Summary").Cells(rowNumber, colNumber + 2)</code> require Excel/VBA to determine which objects are involved in each call. In some cases (particularly when referencing remote objects) that overhead can be substantial. VB gives us the <code>With...End With</code> construct to reduce the need to keep resolving those references: every expression that starts with a dot automatically references the object in the next outermost <code>With</code>.</p>
<p>So we might get something like this:</p>
<pre><code>With Sheets("Terminal Summary")
.Cells(rowNumber, colNumber + 2).Resize(1, 8) = terminal.InfoArray
.Cells(rowNumber, colNumber + 10).FormulaR1C1 = "=IFERROR(RC[-4]/RC[-8],0)"
.Cells(rowNumber, colNumber + 11).FormulaR1C1 = "=IFERROR(RC[-4]/RC[-8],0)"
.Cells(rowNumber, colNumber + 12).FormulaR1C1 = "=IFERROR(RC[-8]/RC[-10],0)"
.Cells(rowNumber, colNumber + 13).FormulaR1C1 = "=IFERROR(RC[-8]/RC[-10],0)"
.Cells(rowNumber, colNumber + 14).FormulaR1C1 = "=IFERROR(RC[-10]/(RC[-8] / 100),0)"
.Cells(rowNumber, colNumber + 15).FormulaR1C1 = "=IFERROR(RC[-10]/(RC[-8] / 100),0)"
.Cells(rowNumber, colNumber + 16).FormulaR1C1 = "=IFERROR(RC[-12]/RC[-8],0)"
.Cells(rowNumber, colNumber + 17).FormulaR1C1 = "=IFERROR(RC[-12]/RC[-8],0)"
End With
</code></pre>
<p>I'd tuck the array thing into the Terminal class, something like this:</p>
<pre><code>Public Property Get InfoArray() As Variant
InfoArray = Array(iBShipments, oBShipments, iBNetRevenue, oBNetRevenue, iBWeight, oBWeight, iBMileage, oBMileage)
End Property
</code></pre>
<p>The formulae might be output more efficiently by writing them once per column after the Terminal information is all done.</p>
<p>Some things to consider, at least...</p>
http://stackoverflow.com/questions/1727550/starting-out-with-rails-suggestions-for-sdks-plug-ins-etc/1727990#17279902Answer by Mike Woodhouse for Starting out with rails. Suggestions for SDKs plug-ins etc?Mike Woodhouse2009-11-13T08:53:03Z2009-11-13T08:53:03Z<p>If you want to be marketable, I'd start with learning the lowest common denominator, the default Rails stack, to get broad appeal. Then maybe consider acquiring some more niche skills to raise your value to a subset of potential clients/employers.</p>
<p>That pretty much means targeting MRI 1.8.6/7, Rails 2.3.4 (consider learning at least HAML and rspec in addition to erb and test/unit) and MySQL in an Apache *nix world.</p>
<p>I wouldn't recommend learning much about deploying to a Windows stack - the target for servers is overwhelmingly Linux or perhaps some other *nix flavour. For development web server purposes, Mongrel works fine on Windows.</p>
<p>Build on Windows by all means - I do, without too much pain - but be aware that the visible part of the Ruby/Rails community (the people who mostly develop the libraries and frameworks and most of those who write about it online) are predominantly OSX or Linux users, so there's often a delay in the trickle-down to Windows users, especially where OS interaction is called for or where there are compiled elements to libraries. Also, I'm reliably informed that Rails startup is <em>much</em> slower on Windows. I don't want to confirm it personally - I might get upset.</p>
<p>MSSQL works fine with Rails, but I'd be cautious about using any platform-specific features for reasons mentioned above: you're unlikely to find a site that will be happy to deploy to a mixed Win-*nix environment. The MSSQL ActiveRecord code may also not be quite as hardened as MySQL or SQLite - the one bug I ever found in any version of any Rails-related code was in there. That said, if you don't use any MS-specific features you'll find porting easy. But then if you don't use any extra stuff, why not skip it completely? There are enough differences (the query "optimizer" in MySQL for one takes some getting used to) that you're probably better off learning the platform you're most likely to be targeting.</p>
<p>As for Eclipse, it's obviously a mature development environment but I'm not sure how good the Rails plugins are (and as a hostage to Lotus Notes I'm allergic to using Eclipse any more than absolutely necessary). If you can't live without an IDE (and I'd recommend that you try - you'll learn more) then there are <a href="http://stackoverflow.com/search?q=rails+ide">several SO questions</a> that cover the alternatives.</p>
http://stackoverflow.com/questions/1721032/giving-duplicates-in-excel-a-unique-identifier/1722058#17220582Answer by Mike Woodhouse for Giving duplicates in Excel a unique identifierMike Woodhouse2009-11-12T13:05:39Z2009-11-12T13:05:39Z<p>If this is a one-off thing, then I'd consider doing it in the worksheet and bulk cut-pasting. I'd try something like this:</p>
<ol>
<li>Sort my data on the post code column</li>
<li>In a new column, add a function to count the number of post codes below the current row that are duplicates of the code on that row (see below)</li>
<li>Save (copy/paste-special-values) the values obtained</li>
<li>Sort by duplicate number</li>
<li>Cut and paste blocks by duplicate number to new sheets</li>
</ol>
<p>Say I have 20 values between 1 and 5 in column G. I put the following formula in H1:</p>
<pre><code>=SUM(IF(G1:$G$20=G1,1,0))
</code></pre>
<p>... and (important bit) enter it as an <em>array formula</em> using <strong>Control+Shift+Enter</strong>. Now I copy that formula down (for speed, double-click the "fill handle" on the bottom right-hand corner of the cell). Here's my result:</p>
<pre><code>1 2
1 1
2 2
2 1
3 8
3 7
3 6
3 5
3 4
3 3
3 2
3 1
4 2
4 1
5 6
5 5
5 4
5 3
5 2
5 1
</code></pre>
<p>Now I can copy column H and Edit...Paste Special...Values to fix the values. Sort by H to get this:</p>
<pre><code>1 1
2 1
3 1
4 1
5 1
1 2
2 2
3 2
4 2
5 2
3 3
5 3
3 4
5 4
3 5
5 5
3 6
5 6
3 7
3 8
</code></pre>
<p>Now I have sets of records to copy to each of the 8 sheets that I now know are needed.</p>
<p>Of course, if you're going to be doing this a lot, then a macro would be useful. It needn't be much more complex than automating the above.</p>
http://stackoverflow.com/questions/1718839/is-rails-hard-to-understand-for-a-php-developer/1718943#17189430Answer by Mike Woodhouse for Is Rails hard to understand for a PHP developer?Mike Woodhouse2009-11-12T00:00:40Z2009-11-12T00:00:40Z<p>Taking the questions in order - </p>
<p>These days I understand a fair bit of what's going on inside the framework - not something that was at all true when I began working with Rails (although I had been dabbling with Ruby for a few years previously)</p>
<p>You don't have to understand Rails, but it really, <em>really</em> helps to understand the MVC (Model-View-Controller) pattern. You can get a long way very quickly, but as with most things, producing something really high quality is going to require the hard work.</p>
<p>There are substantial differences in philosophy between Ruby and PHP as languages (IMO). Ruby is more consistent in syntax but its strong OO background means there's a non-trivial learning curve to negotiate. I think it's worth it, <a href="http://www.urbandictionary.com/define.php?term=YMMV" rel="nofollow">YMMV</a>, why not take it for a test drive?</p>
http://stackoverflow.com/questions/1706494/how-can-i-use-index-or-rindex-with-a-block-in-ruby/1706577#17065775Answer by Mike Woodhouse for How can I use index or rindex with a block in Ruby?Mike Woodhouse2009-11-10T09:13:33Z2009-11-10T14:43:51Z<p>I don't think there's anything built-in, at least I didn't notice anything previously undetected in the <a href="http://ruby-doc.org/core/classes/Array.html" rel="nofollow">Array</a> or <a href="http://ruby-doc.org/core/classes/Enumerable.html" rel="nofollow">Enumerable</a> docs.</p>
<p>This is pretty terse, though:</p>
<pre><code>(0..ar.size-1).select { |i| ar[i] > 4 }
</code></pre>
<p>EDIT: Should have mentioned this is Ruby 1.8.6.</p>
<p>ANOTHER EDIT: forgot triple-dot, which saves a whole character, as well as cleaning up the <code>-1</code>, which I wasn't comfortable with:</p>
<pre><code>(0...ar.size).select { |i| ar[i] > 4 }
</code></pre>
http://stackoverflow.com/questions/1699675/ruby-library-gem-for-game-graphics/1700384#17003842Answer by Mike Woodhouse for Ruby library/gem for game graphics?Mike Woodhouse2009-11-09T11:08:18Z2009-11-09T11:08:18Z<p>As well as Gosu, mentioned elsewhere, there's <a href="http://rubygame.org/" rel="nofollow">Rubygame</a> which also appears to be regularly updated.</p>
<p>No opinion on either, suggested as an alternative for comparison.</p>
http://stackoverflow.com/questions/1692700/does-ordering-by-lot-of-columns-hit-the-performance-badly/1692715#16927150Answer by Mike Woodhouse for does ordering by lot of columns hit the performance badly?Mike Woodhouse2009-11-07T11:10:46Z2009-11-07T11:10:46Z<p>If the business requirement stipulates that results be sorted by five columns then the only question to answer, assuming that there are at least a client and a server involved, is where to perform the sort?</p>
<p>So I'd guess that any answer to the question about good practice is going to have a huge dose of "it depends".</p>
<p>As to performance, if the requirement is for the sort, and performance is an issue, then again, look to see if there's a chance that sorting could be carried out away from the server.</p>
http://stackoverflow.com/questions/1680627/activerecord-findarrayofids-preserving-order/1683067#16830670Answer by Mike Woodhouse for ActiveRecord.find(array_of_ids), preserving orderMike Woodhouse2009-11-05T19:47:12Z2009-11-05T19:47:12Z<p>Under the hood, <code>find</code> with an array of ids will generate a <code>SELECT</code> with a <code>WHERE id IN...</code> clause, which should be more efficient than looping through the ids.</p>
<p>So the request is satisfied in one trip to the database, but <code>SELECT</code>s without <code>ORDER BY</code> clauses are unsorted. ActiveRecord understands this, so we expand our <code>find</code> as follows:</p>
<pre><code>Something.find(array_of_ids, :order => 'id')
</code></pre>
<p>If the order of ids in your array is arbitrary and significant (i.e. you want the order of rows returned to match your array irrespective of the sequence of ids contained therein) then I think you'd be best server by post-processing the results in code - you could build an <code>:order</code> clause but it would be fiendishly complicated and not at all intention-revealing.</p>
http://stackoverflow.com/questions/1682751/model-class-inheritance-problem-with-view/1682978#16829780Answer by Mike Woodhouse for model class inheritance (problem with view)Mike Woodhouse2009-11-05T19:32:43Z2009-11-05T19:32:43Z<p>From the code posted, <code>@hosting</code> is only defined for <code>format=xml</code>, it won't exist for the HTML view.</p>
http://stackoverflow.com/questions/1670785/ruby-on-rails-with-repository-pattern/1673033#16730333Answer by Mike Woodhouse for Ruby on Rails with Repository Pattern?Mike Woodhouse2009-11-04T10:51:38Z2009-11-04T10:51:38Z<p>Does ActiveRecord even really constitute the "data layer", I wonder? After all, its purpose is to abstract (to a fairly reasonable extent) the actual interaction storage. If I have a model that inherits from <code>ActiveRecord::Base</code> and I reference that model in a controller, am I really interacting with the data layer? </p>
<p>Looking at a brief description of the <a href="http://martinfowler.com/eaaCatalog/repository.html" rel="nofollow">Repository Pattern</a> I'd say that methods of the <code>find_by_</code> are already giving you much of what it describes, which is good, isn't it? OK, the abstraction layer is leaky (one might more generously say "pragmatic") in that we can go a lot closer to the metal if need be, and <code>find_by_sql</code> for example will pretty much make it obvious that we're dealing with a relational database of some kind. </p>
<p>I'd recommend never (or maybe I should say "rarely and not without extreme justification" - it's always tricky using absolutes) putting code in controllers that makes it possible to infer the data platform being used. It should all be pushed into the models - <code>named_scope</code> can be very useful here. For complex results, consider using "presentation" objects as the interface (<code>Struct</code> and my personal favourite <code>OpenStruct</code> can be very useful here).</p>
<p>While ActiveRecord is the <em>de facto</em> standard, given that it installs with Rails, it's not the only game in town. For non-SQL databases, something different is necessary, but even in the SQL domain there's Datamapper (is that based on the <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">eponymous PoEAA pattern</a>?)</p>
<p>In Rails 3.0 it's going to be a lot easier to <a href="http://yehudakatz.com/2008/12/23/rails-and-merb-merge/" rel="nofollow">pick and choose components</a> such as the ORM as <a href="http://stackoverflow.com/users/122162/yehuda-katz">Yehuda</a> and the boys unpick and clean up the interfaces.</p>
http://stackoverflow.com/questions/1904097/how-to-calculate-how-many-years-passed-since-a-given-date-in-ruby/1904349#1904349Comment by Mike Woodhouse on How to calculate how many years passed since a given date in Ruby?Mike Woodhouse2009-12-15T08:54:08Z2009-12-15T08:54:08Z+1, but what if I was born on, say Date.new(1980, 2, 29) ? ;-)http://stackoverflow.com/questions/1900285/good-ruby-shell/1900324#1900324Comment by Mike Woodhouse on Good Ruby shell?Mike Woodhouse2009-12-14T12:09:15Z2009-12-14T12:09:15ZI use some parts of the [utility_belt](<a href="http://utilitybelt.rubyforge.org/" rel="nofollow">utilitybelt.rubyforge.org</a>) gem - it takes some fooling around with before anything works nicely in Windows, but it's helpful.http://stackoverflow.com/questions/1859747/static-block-in-rubyComment by Mike Woodhouse on Static block in RubyMike Woodhouse2009-12-07T12:54:26Z2009-12-07T12:54:26ZWhat is your question? The part about rules in initialize? What have you tried so far? What problems have you encountered?http://stackoverflow.com/questions/1837585/whats-the-best-air-ruby-integration-tool-framework/1838617#1838617Comment by Mike Woodhouse on What's the best AIR & Ruby integration tool/framework?Mike Woodhouse2009-12-07T09:57:37Z2009-12-07T09:57:37Zre "doesn't exist yet/unanswered": no disagreement here!http://stackoverflow.com/questions/1850756/how-do-i-find-index-of-a-multidimensional-arrayComment by Mike Woodhouse on How do I find .index of a multidimensional arrayMike Woodhouse2009-12-05T12:57:58Z2009-12-05T12:57:58ZOne thing I didn't see mentioned in the (several very good ) answers was that Ruby doesn't really support 2D arrays - they're really arrays of arrays, hence the two-level search.
http://stackoverflow.com/questions/1846070/ruby-array-group-and-average-by-hour/1846233#1846233Comment by Mike Woodhouse on Ruby Array group and average by hourMike Woodhouse2009-12-04T11:07:24Z2009-12-04T11:07:24ZNote that Enumerable#reduce was introduced in 1.8.7 as the newly-preferred alias for #inject (I didn't know that, so others may also be unaware of it)
http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore/1839247#1839247Comment by Mike Woodhouse on SQL query to replace all occurrences of space in a table with underscoreMike Woodhouse2009-12-03T11:25:56Z2009-12-03T11:25:56Z+1 400K rows in Access shouldn't pose too much of a problem. I wonder what he wants to do if there are values with > 1 consecutive space?http://stackoverflow.com/questions/1839196/sql-query-to-replace-all-occurrences-of-space-in-a-table-with-underscore/1839235#1839235Comment by Mike Woodhouse on SQL query to replace all occurrences of space in a table with underscoreMike Woodhouse2009-12-03T11:19:45Z2009-12-03T11:19:45ZIt won't even begin to work, I'm afraid: Access comes from an entirely different code base to SQL Server.http://stackoverflow.com/questions/1838032/obscure-your-ruby-codeComment by Mike Woodhouse on Obscure your Ruby code?Mike Woodhouse2009-12-03T11:16:29Z2009-12-03T11:16:29ZNot sure why you would want to hide source code from the client who's paying for it. Or am I missing something? ;-)http://stackoverflow.com/questions/1830420/is-it-possible-to-compare-private-attributes-in-ruby/1832634#1832634Comment by Mike Woodhouse on Is it possible to compare private attributes in Ruby?Mike Woodhouse2009-12-02T22:04:20Z2009-12-02T22:04:20Z+1 for sheer length ;-)http://stackoverflow.com/questions/1830247/is-using-get-set-properties-of-c-considered-good-practiceComment by Mike Woodhouse on Is using get set properties of C# considered good practice?Mike Woodhouse2009-12-02T10:09:39Z2009-12-02T10:09:39ZProfessors should be smart enough to know not to use absolutes! Unless he's redefined "never" to mean "not without an understanding and acceptance of the possible consequences"...http://stackoverflow.com/questions/1827148/how-to-make-a-modulino-in-ruby/1827191#1827191Comment by Mike Woodhouse on How to make a modulino in Ruby ? Mike Woodhouse2009-12-01T16:45:36Z2009-12-01T16:45:36ZI find it a handy way to work on (usually) small independent modules when they're still "young" - especially when I'm working in an editor within which I can execute immediately (like SciTE). It's obviously less of an issue where you have larger bodies of code and/or AutoTest. But I don't live in that world ;-)http://stackoverflow.com/questions/1823152/can-anyone-please-help-me-with-this-sql-query-works-in-sqlite-db-browser-but-noComment by Mike Woodhouse on Can anyone please help me with this SQL Query (works in SQLite DB Browser, but not in Rails)Mike Woodhouse2009-12-01T08:48:23Z2009-12-01T08:48:23ZAs @Staelen points out, there's a strange character immediately before the "S" of "SELECT" in the code you've posted here. I don't think it's actually a dot: if I copy-paste it into a text editor, I see a "?", so it's probably something unprintable.http://stackoverflow.com/questions/1823777/how-to-call-a-c-dll-in-rubyComment by Mike Woodhouse on How to call a C# dll in ruby?Mike Woodhouse2009-12-01T08:23:40Z2009-12-01T08:23:40Znot a dupe (of the question cited, at least) - that was about calling unmanaged code, this one's about managed.http://stackoverflow.com/questions/1819429/macro-too-big-to-run-keeps-not-respondingComment by Mike Woodhouse on Macro too big to run, keeps 'not responding'.Mike Woodhouse2009-11-30T13:00:57Z2009-11-30T13:00:57Z@pjp: I can see what you're thinking, but it's VBA (and from the use of ActiveWorkbook, specifically Excel). VBScript doesn't allow Dim As - everything's a Variant. I'd prefer to see evidence of explicit references to ADO and early binding using <code>Set .. As New ...</code> but the CreateObject - which is being used in a very VBScript-y way, stuff is hardly the biggest problem. :-)