User mlambie - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:36:11Zhttp://stackoverflow.com/feeds/user/17453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1780879/convert-xml-collection-of-pivotal-tracker-stories-to-ruby-hash-object0Convert XML collection (of Pivotal Tracker stories) to Ruby hash/objectmlambie2009-11-23T02:51:01Z2009-11-30T04:01:57Z
<p>I have a collection of stories in an XML format. I would like to parse the file and return each story as either hash or Ruby object, so that I can further manipulate the data within a Ruby script.</p>
<p>Does <a href="http://nokogiri.org" rel="nofollow">Nokogiri</a> support this, or is there a better tool/library to use?</p>
<p>The XML document has the following structure, returned via <a href="http://www.pivotaltracker.com/help/api" rel="nofollow">Pivotal Tracker's web API</a>:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<stories type="array" count="145" total="145">
<story>
<id type="integer">16376</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/16376</url>
<estimate type="integer">2</estimate>
<current_state>accepted</current_state>
<description>A description</description>
<name>Receivable index listing will allow selection viewing</name>
<requested_by>Tony Superman</requested_by>
<owned_by>Tony Superman</owned_by>
<created_at type="datetime">2009/11/04 15:49:43 WST</created_at>
<accepted_at type="datetime">2009/11/10 11:06:16 WST</accepted_at>
<labels>index ui,receivables</labels>
</story>
<story>
<id type="integer">17427</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17427</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description></description>
<name>Validations in wizards based on direction</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/17 15:52:06 WST</created_at>
</story>
<story>
<id type="integer">17426</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17426</url>
<estimate type="integer">2</estimate>
<current_state>unscheduled</current_state>
<description>Manual payment needs a description field.</description>
<name>Add description to manual payment</name>
<requested_by>Tony Superman</requested_by>
<created_at type="datetime">2009/11/17 15:10:41 WST</created_at>
<labels>payment process</labels>
</story>
<story>
<id type="integer">17636</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17636</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description>The SMS and email templates needs to be editable by merchants.</description>
<name>Notifications are editable by the merchant</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/19 16:44:08 WST</created_at>
</story>
</stories>
</code></pre>
http://stackoverflow.com/questions/463963/parallel-processing-from-a-command-queue-on-linux-bash-python-ruby-whatever7Parallel processing from a command queue on Linux (bash, python, ruby... whatever)mlambie2009-01-21T02:54:45Z2009-11-02T14:43:34Z
<p>I have a list/queue of 200 commands that I need to run in a shell on a Linux server. </p>
<p>I only want to have a maximum of 10 processes running (from the queue) at once. Some processes will take a few seconds to complete, other processes will take much longer. </p>
<p>When a process finishes I want the next command to be "popped" from the queue and executed.</p>
<p>Does anyone have code to solve this problem?</p>
<p><strong>Further elaboration:</strong></p>
<p>There's 200 pieces of work that need to be done, in a queue of some sort. I want to have at most 10 pieces of work going on at once. When a thread finishes a piece of work it should ask the queue for the next piece of work. If there's no more work in the queue, the thread should die. When all the threads have died it means all the work has been done.</p>
<p>The actual problem I'm trying to solve is using <code>imapsync</code> to synchronize 200 mailboxes from an old mail server to a new mail server. Some users have large mailboxes and take a long time tto sync, others have very small mailboxes and sync quickly.</p>
http://stackoverflow.com/questions/1245618/rails-invalidauthenticitytoken-for-json-xml-requests/1608563#16085630Answer by mlambie for rails - InvalidAuthenticityToken for json/xml requestsmlambie2009-10-22T16:54:15Z2009-10-22T16:54:15Z<p>I had a similar situation and the problem was that I was not sending through the right content type headers - I was requesting <code>text/json</code> and I should have been requesting <code>application/json</code>.</p>
<p>I used <code>curl</code> the following to test my application (modify as necessary):</p>
<pre><code>curl -H "Content-Type: application/json" -d '{"person": {"last_name": "Lambie","first_name": "Matthew"}}' -X POST http://localhost:3000/people.json -i
</code></pre>
<p>Or you can save the JSON to a local file and call <code>curl</code> like this:</p>
<pre><code>curl -H "Content-Type: application/json" -v -d @person.json -X POST http://localhost:3000/people.json -i
</code></pre>
<p>When I changed the content type headers to the right <code>application/json</code> all my troubles went away and I no longer needed to disable forgery protection.</p>
http://stackoverflow.com/questions/1592702/mysql-varchar-size-limit/1592739#15927391Answer by mlambie for mysql Varchar size limitmlambie2009-10-20T06:04:36Z2009-10-20T06:04:36Z<p>From the <a href="http://dev.mysql.com/doc/refman/5.0/en/char.html" rel="nofollow">MySQL 5.0 Manual</a>:</p>
<blockquote>
<p>Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and 0 to 65,535 in 5.0.3 and later versions. The effective maximum length of a VARCHAR in MySQL 5.0.3 and later is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used.</p>
</blockquote>
<p>I only use VARCHAR when I'm <em>certain</em> that the data the column needs to hold will never exceed a certain length, and even then I'm cautious. If I'm storing a text string I tend to use one of the TEXT types.</p>
<p>Check out the <a href="http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html" rel="nofollow">MySQL Storage Requirements</a> for more information on how the bytes are used. </p>
http://stackoverflow.com/questions/1592642/is-validatespresenceof-necessary-of-using-validateslengthof1Is validates_presence_of necessary of using validates_length_of?mlambie2009-10-20T05:29:56Z2009-10-20T06:03:53Z
<p>In an ActiveRecord model, is it considered best practice/necessary to use <code>validates_presence_of</code> when also using <code>validates_length_of</code>?</p>
<p>For example:</p>
<pre><code>class Company < ActiveRecord::Base
validates_presence_of :name
validates_length_of :name, :in => 5..30
end
</code></pre>
<p>To me, it seems redundant. Having a length between 5 and 30 means that the attribute is also present, yet I see this used everywhere. It also means users get two error messages regarding the same missing attribute, when really only one is needed.</p>
<p>Am I missing something, or are people being overly-zealous when validating data?</p>
http://stackoverflow.com/questions/1586721/implement-find-save-activerecord-methods-for-activemerchant-creditcard-objec0Implement find(), save() ActiveRecord methods for ActiveMerchant CreditCard objectmlambie2009-10-19T02:33:08Z2009-10-19T03:41:18Z
<p>What's the best way to implement ActiveRecord's <code>find()</code> and <code>save()</code> methods for an ActiveMerchant ActiveMerchant::Billing::CreditCard object in a Ruby on Rails application? </p>
<p>I'd like my credit card objects to inherit from ActiveRecord and ActiveMerchant.</p>
<p><em>Caveat: I understand that saving credit card information to a database is always considered a bad idea, and that it's preferable to use a gateway that facilitates card storage for you. Presume that it's necessary and that suitable security standards are being met (PCI DSS, filesystem and database encryption, network separation etc).</em></p>
http://stackoverflow.com/questions/1586721/implement-find-save-activerecord-methods-for-activemerchant-creditcard-objec/1586853#15868531Answer by mlambie for Implement find(), save() ActiveRecord methods for ActiveMerchant CreditCard objectmlambie2009-10-19T03:41:18Z2009-10-19T03:41:18Z<p>I've created a standard Rails ActiveRecord model using the following:</p>
<pre><code>./script/generate model CreditCard first_name:string last_name:string number:string month:integer year:integer type:string start_month:integer start_year:integer issue_number:string
</code></pre>
<p>This matches the ActiveRecord definition of a credit card.</p>
<p>Also, ActiveMerchant provides <code>ActiveMerchant::Billing::CreditCardMethods</code> which, to quote the ActiveMerchant development team are:</p>
<blockquote>
<p><em>Convenience methods that can be included into a custom Credit Card object, such as an ActiveRecord based Credit Card object.</em></p>
</blockquote>
<p>I've included <code>ActiveMerchant::Billing::CreditCardMethods</code> in my credit card model, and will translate the validations to ensure my definition of a credit card matches ActiveMerchant's.</p>
http://stackoverflow.com/questions/1586708/is-it-possible-to-do-a-facebook-status-update-programatically-in-net/1586726#15867262Answer by mlambie for Is it possible to do a Facebook status update programatically in .NET?mlambie2009-10-19T02:34:40Z2009-10-19T02:34:40Z<p>You can read all about the Facebook APIs on their developer website at <a href="http://developer.facebook.com/" rel="nofollow">http://developer.facebook.com/</a>.</p>
<p>Specifically, the <a href="http://wiki.developers.facebook.com/index.php/Status.set" rel="nofollow">Status.set</a> method is probably what you're looking for.</p>
http://stackoverflow.com/questions/714158/want-to-show-the-first-50-or-60-words-of-a-text-field-in-ruby/1485537#14855370Answer by mlambie for Want to show the first 50 or 60 words of a text field in ruby??mlambie2009-09-28T05:22:26Z2009-09-28T05:22:26Z<p>In use something very similar in a Rails application to extend ("monkey patch") the base String class.</p>
<p>I created <code>lib/core_extensions.rb</code> which contains:</p>
<pre><code>class String
def to_blurb(word_count = 30)
self.split(" ").slice(0, word_count).join(" ")
end
end
</code></pre>
<p>I then created <code>config/initializers/load_extensions.rb</code> which contains:</p>
<pre><code>require 'core_extensions'
</code></pre>
<p>Now I have the <code>to_blurb()</code> method on all my String objects in the Rails application.</p>
http://stackoverflow.com/questions/367257/automatically-reformatting-inherited-php-spaghetti-code3Automatically reformatting inherited PHP spaghetti codemlambie2008-12-15T01:23:06Z2009-08-26T17:11:09Z
<p>I've taken over a mixed PHP4/PHP5 project which has been handed down from developer to developer, with each one making things worse. Before I spend too much time on it I'd like to develop a base-standard, with consistent formatting at a minimum.</p>
<p>Can anyone recommend a utility (Linux or Mac OS X preferably) that will reformat the code?</p>
<p>If I can set parameters which influence output (like tab-indentation, brace/bracket placement, when to split array values onto new lines etc.) then that's a benefit, though not crucial.</p>
<p>Preference goes to Open Source tools, though I'd like to know your experiences with purchased software too.</p>
http://stackoverflow.com/questions/112784/what-mysql-client-application-would-you-recommend-for-mac-os-x14What MySQL client application would you recommend for Mac OS X?mlambie2008-09-22T01:40:50Z2009-08-11T18:09:58Z
<p>My colleagues and I are looking for alternative client tools for Mac OS X. </p>
<p>I tend to prefer the text-based interface and we have <a href="http://www.phpmyadmin.net/" rel="nofollow">PHPMyAdmin</a> installed on our development servers (Linux).</p>
<p>What are your recommendations?</p>
<p>(One recommendation per answer please, so people can up-mod individual recommendations).</p>
http://stackoverflow.com/questions/808536/how-can-i-convert-a-blowfish-encoded-binary-string-to-ascii-in-ruby0How can I convert a Blowfish encoded binary string to ASCII in Ruby?mlambie2009-04-30T19:02:42Z2009-07-29T08:00:03Z
<p>I would like to encode some plain text using Ruby and the <a href="http://crypt.rubyforge.org/blowfish.html" rel="nofollow">Crypt library</a>. I would like to then transmit this encrypted text (along with some other data) as an ASCII hexadecimal string within an XML file. </p>
<p>I have the following code snippet:</p>
<pre><code>require 'rubygems'
require 'crypt/blowfish'
plain = "This is the plain text"
puts plain
blowfish = Crypt::Blowfish.new("A key up to 56 bytes long")
enc = blowfish.encrypt_block(plain)
puts enc
</code></pre>
<p>Which outputs:</p>
<pre>This is the plain text
????;</pre>
<p>I believe I need to call <code>enc.unpack()</code> but I'm not sure what parameters are required to the unpack method call.</p>
http://stackoverflow.com/questions/1107782/wheres-the-best-place-to-define-a-constant-in-a-ruby-on-rails-application0Where's the best place to define a constant in a Ruby on Rails application?mlambie2009-07-10T05:02:40Z2009-07-14T06:57:41Z
<p>In a Ruby on Rails 2.3.2 application, where is the best place to define a constant?</p>
<p>I have an array of constant data that I need available across all the controllers in my application.</p>
http://stackoverflow.com/questions/1107782/wheres-the-best-place-to-define-a-constant-in-a-ruby-on-rails-application/1107796#11077960Answer by mlambie for Where's the best place to define a constant in a Ruby on Rails application?mlambie2009-07-10T05:07:41Z2009-07-10T05:07:41Z<p><a href="http://toolmantim.com/articles/consolidating%5Fyour%5Fapps%5Fconstants" rel="nofollow">This article from Tim Lucas</a> outlines a really neat way of defining application constants.</p>
http://stackoverflow.com/questions/198047/wanted-actsasnestedset-ajax-drag-and-drop-tutorial0Wanted: acts_as_nested_set, AJAX drag and drop tutorialmlambie2008-10-13T15:47:03Z2009-07-07T06:43:14Z
<p>Can anyone suggest a tutorial or sample code that implements a nested set (or similar ordered tree structure) with associated Javascript that facilitates drag and drop? I'm looking for both the display code (view) as well as the AJAX backend controller which writes the tree to the database on change.</p>
<p>I want it to represent a multi-layer menu where the ordering and depth of items is important.</p>
http://stackoverflow.com/questions/1038273/what-is-a-reliable-method-to-record-votes-from-anonymous-users-without-allowing/1039180#10391806Answer by mlambie for What is a reliable method to record votes from anonymous users, without allowing duplicatesmlambie2009-06-24T15:41:26Z2009-06-24T15:41:26Z<p>I'd collect as much data about the session as possible without asking any questions directly (browser, OS, installed plugins, all with versions numbers, IP address etc) and hash it.</p>
<p>Record the hash and increment a counter if you want multiple votes to be allowed. Include a timestamp (daily, hourly etc) in the salt to make votes time sensitive, say 5 votes per day. </p>
http://stackoverflow.com/questions/1008752/deploying-ruby-on-rails-applications-on-solaris-10/1021326#10213262Answer by mlambie for deploying ruby on rails applications on solaris 10mlambie2009-06-20T09:54:05Z2009-06-20T10:12:01Z<p>It looks like <a href="http://modrails.com" rel="nofollow">Phusion's Passenger</a> module for Apache 2 supports Solaris. </p>
<p>There's a tutorial written by <a href="http://blog.springenwerk.com" rel="nofollow">Johannes Fahrenkrug</a> from March 2009 which covers <a href="http://blog.springenwerk.com/2009/03/passenger-and-ruby-enterprise-edition.html" rel="nofollow">deploying Ruby on Rails to Solaris 10 with Passenger and Ruby Enterprise Edition</a>.</p>
<p>There's also <a href="http://www.cubiclemuses.com/cm/articles/2009/04/09/rails-passenger-open-solaris-ec2/" rel="nofollow">this article</a> which discusses deploying to Open Solaris. Whilst Open Solaris and Solaris are not the same beast, it might have some pointers you need.</p>
http://stackoverflow.com/questions/1015253/is-there-a-way-to-access-dell-xps-media-buttons-programmatically/1021354#10213541Answer by mlambie for Is there a way to access DELL XPS media buttons programmaticallymlambie2009-06-20T10:09:09Z2009-06-20T10:09:09Z<p>I had an old IBM laptop that had a keyboard light LED mounted in the top of the LCD frame (where the iSight is on a MacBook or MacBook Pro). I found that I could access this light via <code>/proc/acpi</code> under Linux. </p>
<p>I wrote a simple script that flashed the light on and off by interacting with /proc. There's a <a href="http://lambie.org/2005/07/07/flasher/" rel="nofollow">posting on my blog with the code</a>.</p>
<p>You might want to try running an Ubuntu live CD and seeing if it detects the buttons, and if you can access them via <code>/proc</code>. A quick search showed that the newer XPS systems work out of the box with Ubuntu, so it'd be a good starting point.</p>
http://stackoverflow.com/questions/1020568/how-does-one-convert-a-string-to-lowercase-in-ruby/1021299#10212993Answer by mlambie for How does one convert a string to lowercase in rubymlambie2009-06-20T09:27:57Z2009-06-20T09:27:57Z<p>You can find out all the methods available on a String by opening irb and running:</p>
<pre><code>"MyString".methods.sort
</code></pre>
<p>And for a list of the methods available for strings in particular:</p>
<pre><code>"MyString".own_methods.sort
</code></pre>
<p>I use this to find out new and interesting things about objects which I might not otherwise have known existed.</p>
http://stackoverflow.com/questions/1011008/debugging-php-code/1021284#10212840Answer by mlambie for Debugging PHP codemlambie2009-06-20T09:15:17Z2009-06-20T09:15:17Z<p>Check out FirePHP, from the makers of Firebug. They're both handy tools.</p>
http://stackoverflow.com/questions/1020568/how-does-one-convert-a-string-to-lowercase-in-ruby/1021280#10212801Answer by mlambie for How does one convert a string to lowercase in rubymlambie2009-06-20T09:10:17Z2009-06-20T09:10:17Z<p>... and the uppercase is:</p>
<pre><code>"Awesome String".upcase
=> "AWESOME STRING"
</code></pre>
http://stackoverflow.com/questions/1016591/attachment-fu-file-path/1021272#10212720Answer by mlambie for attachment fu - file pathmlambie2009-06-20T09:02:45Z2009-06-20T09:02:45Z<p>You can read about how the path is created in <a href="http://stackoverflow.com/questions/181889/alter-pathprefix-dynamically-when-calling-hasattachment-via-attachment-fu-plug">this question</a>, which was answered by Rick Olson, the author of attachment_fu.</p>
<p>It might serve as a basis for solving your problem.</p>
http://stackoverflow.com/questions/1021216/ruby-gem-loaderror-rubygems-defaults-operatingsystem/1021242#10212420Answer by mlambie for Ruby gem LoadError - rubygems/defaults/operating_systemmlambie2009-06-20T08:39:05Z2009-06-20T08:39:05Z<p>It looks like you need the mysql gem too.</p>
http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript15Syntax highlighting code with Javascriptmlambie2008-10-02T02:57:33Z2009-05-05T03:50:42Z
<p>What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?</p>
<p>(One suggestion per answer please).</p>
http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/823256#8232561Answer by mlambie for Syntax highlighting code with Javascriptmlambie2009-05-05T03:50:42Z2009-05-05T03:50:42Z<p><a href="http://www.webresourcesdepot.com/11-syntax-highlighters-to-beautify-code-presentation/" rel="nofollow">This article at the Web Resources Depot</a> lists a bunch of options for highlighting code, some of which use Javascript. It was published on 4th May 2009.</p>
http://stackoverflow.com/questions/750930/how-much-code-in-a-rails-view-is-ok/752730#7527303Answer by mlambie for How much code in a rails view is ok?mlambie2009-04-15T17:04:40Z2009-04-15T17:04:40Z<p>I use the following static method in a Site model to achieve something similar:</p>
<pre><code>class Site
def self.select_options
Site.find(:all, :order => 'UPPER(name)').collect {|s| [s.name, s.id]}
end
def
</code></pre>
<p>Then in my Domain view I call:</p>
<pre><code><%= f.select :site_id, Site.select_options %>
</code></pre>
<p>This works really well for these circumstances.</p>
<p>In your instance, you might try:</p>
<pre><code>class CodesecureProject
def self.select_options
CodesecureProject.find(:all, :order => 'name').collect {|p| [p.name, p.id]}
end
end
</code></pre>
<p>And then call it through the view with:</p>
<pre><code><%= f.select :codesecure_project_id, CodesecureProject.select_options %>
</code></pre>
http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/750475#7504752Answer by mlambie for How to access the current Subversion build number?mlambie2009-04-15T06:01:17Z2009-04-15T06:01:17Z<p>In Rails I use this snippet in my environment.rb which gives me a constant I can use throughout the application (like in the footer of an application layout).</p>
<pre><code>SVN_VERSION = IO.popen("svn info").readlines[4].strip.split[1]
</code></pre>
http://stackoverflow.com/questions/527301/should-i-name-my-page-for-the-purposes-of-custom-css-it-needs/527339#5273391Answer by mlambie for Should I 'name my page' for the purposes of custom css it needs? mlambie2009-02-09T07:24:49Z2009-02-09T07:24:49Z<p>Giving elements names makes things nice and easy when people want to mess with your rendering using tools like Greasemonkey. They might only want to "fix" your "page_products" tags.</p>
<p>For example, there's a torrent site that I'm a member off which displays a massive series of checkboxes that I don't want to look at when I'm listing the new torrents. With Greasemonkey I was able to apply some display:none CSS to the named element, making it invisible every time I go there.</p>
http://stackoverflow.com/questions/367257/automatically-reformatting-inherited-php-spaghetti-code/367488#3674880Answer by mlambie for Automatically reformatting inherited PHP spaghetti codemlambie2008-12-15T04:38:53Z2008-12-15T04:38:53Z<p>In my own searching I found <a href="http://en.wikipedia.org/wiki/Prettyprint" rel="nofollow" title="Pretty Print">the Wikipedia article on Pretty Print</a> which I think will be useful.</p>
http://stackoverflow.com/questions/233217/pass-password-to-su-sudo-ssh/351916#3519160Answer by mlambie for pass password to su/sudo/sshmlambie2008-12-09T06:04:04Z2008-12-09T06:04:04Z<p>I wrote some Applescript which prompts for a password via a dialog box and then builds a custom bash command, like this:</p>
<pre><code>echo <password> | sudo -S <command>
</code></pre>
<p>I'm not sure if this helps.</p>
<p>It'd be nice if sudo accepted a pre-encrypted password, so I could encrypt it within my script and not worry about echoing clear text passwords around. However this works for me and my situation.</p>
http://stackoverflow.com/questions/1780879/convert-xml-collection-of-pivotal-tracker-stories-to-ruby-hash-object/1780987#1780987Comment by mlambie on Convert XML collection (of Pivotal Tracker stories) to Ruby hash/objectmlambie2009-11-23T05:49:51Z2009-11-23T05:49:51ZI'm not using Rails in this instance.http://stackoverflow.com/questions/1592737/difference-between-byte-and-char-in-c/1592743#1592743Comment by mlambie on Difference between byte and char in Cmlambie2009-10-20T06:11:06Z2009-10-20T06:11:06ZValid types are listed here:
<a href="http://www.cplusplus.com/doc/tutorial/variables/" rel="nofollow">cplusplus.com/doc/tutorial/variables</a>http://stackoverflow.com/questions/1592642/is-validatespresenceof-necessary-of-using-validateslengthof/1592666#1592666Comment by mlambie on Is validates_presence_of necessary of using validates_length_of?mlambie2009-10-20T05:56:30Z2009-10-20T05:56:30ZRight, that's what I thought.
:allow_nil is only useful if the company name has to be between 5 and 30 characters, or can be missing. If you want the company name to be between 5 and 30 characters long you <i>wouldn't</i> want :allow_nil.http://stackoverflow.com/questions/1019142/filtering-by-date-substrings-in-rails/1019186#1019186Comment by mlambie on Filtering by date substrings in Railsmlambie2009-06-20T09:23:04Z2009-06-20T09:23:04Zsearchlogic looks mintox - I think it'll do what is needed here, though I have not implemented it yet myself.http://stackoverflow.com/questions/1021216/ruby-gem-loaderror-rubygems-defaults-operatingsystemComment by mlambie on Ruby gem LoadError - rubygems/defaults/operating_systemmlambie2009-06-20T09:08:33Z2009-06-20T09:08:33ZCan you find "rubygems/defaults/operating_system.rb" anywhere on your system? As of RubyGems 1.3.2 it looks like that file should be loaded, but only if it exists.
Could the file exist in the D:/ruby/... path but not the C:/Documents and Settings/... path, and context is switching from one to the other? ie, RubyGems checks D:/ path and the file exists, but then tries to load C:/ path and it fails. Just a guess...
This has more details: <a href="http://www.infoq.com/news/2009/04/rubygems-plugins" rel="nofollow">infoq.com/news/2009/…</a>http://stackoverflow.com/questions/123494/whats-your-favourite-irb-trick/229066#229066Comment by mlambie on What's Your Favourite IRB Trick?mlambie2009-06-17T01:53:49Z2009-06-17T01:53:49ZYeah looks like this link is broken. Vote to delete my answer.http://stackoverflow.com/questions/808536/how-can-i-convert-a-blowfish-encoded-binary-string-to-ascii-in-ruby/808615#808615Comment by mlambie on How can I convert a Blowfish encoded binary string to ASCII in Ruby?mlambie2009-04-30T19:42:20Z2009-04-30T19:42:20ZThat's right holychao. The string that is generated by blowfish.encrypt_string() contains control characters. I want to further convert this string to readable ASCII.http://stackoverflow.com/questions/463963/parallel-processing-from-a-command-queue-on-linux-bash-python-ruby-whatever/628543#628543Comment by mlambie on Parallel processing from a command queue on Linux (bash, python, ruby... whatever)mlambie2009-03-10T19:00:27Z2009-03-10T19:00:27ZThis looks ideal. I'll check it out next time I'm faced with a similar problem. Thanks for updating this thread with your recommendation.http://stackoverflow.com/questions/527301/should-i-name-my-page-for-the-purposes-of-custom-css-it-needs/527339#527339Comment by mlambie on Should I 'name my page' for the purposes of custom css it needs? mlambie2009-02-13T06:12:09Z2009-02-13T06:12:09ZWhy would that be the case?http://stackoverflow.com/questions/463963/parallel-processing-from-a-command-queue-on-linux-bash-python-ruby-whatever/464038#464038Comment by mlambie on Parallel processing from a command queue on Linux (bash, python, ruby... whatever)mlambie2009-01-21T07:01:36Z2009-01-21T07:01:36ZThis worked exactly as I hoped it would. I wrote some code to generate the Makefile. It ended up being over 1000 lines. Thanks!http://stackoverflow.com/questions/280155/best-practices-for-new-rails-deployments-on-linux/280840#280840Comment by mlambie on Best practices for new Rails deployments on Linux?mlambie2008-11-27T05:53:59Z2008-11-27T05:53:59Z+1 for Passenger. Deployment took me about 10 minutes, from start to finish.http://stackoverflow.com/questions/262657/the-coolest-server-names/299943#299943Comment by mlambie on The Coolest Server Namesmlambie2008-11-27T04:30:27Z2008-11-27T04:30:27ZWe use Transformers too:
prime was our first server, who was replaced with hotrod, who has again been replaced with prime.
soundwave - backup
megatron - IronPort mail
jazz - mail
mirage - database
starscream - windows
bumblebee - monitoring
ironhide - NFS
ratchet - SVN
plus about a dozen morehttp://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278536#278536Comment by mlambie on What was your biggest *nix blooper?mlambie2008-11-10T17:32:00Z2008-11-10T17:32:00Z@Moranar if your home directory is mounted then rm -f / will get to it in the end. You have to hope you CTRL-C it while it's still chewing through /bin.http://stackoverflow.com/questions/229058/interpret-n-within-irb-or-script-console/229065#229065Comment by mlambie on Interpret \n within irb or script/consolemlambie2008-10-23T09:18:56Z2008-10-23T09:18:56ZThanks very much - this is exactly what I was looking for :)http://stackoverflow.com/questions/171964/stick-with-php-or-learn-ruby-on-railsComment by mlambie on Stick with PHP or learn Ruby (on rails)mlambie2008-10-05T16:04:12Z2008-10-05T16:04:12ZI totally agree with point 3. Rails was written in Ruby with good reason.