User mlambie - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T04:36:11Z http://stackoverflow.com/feeds/user/17453 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780879/convert-xml-collection-of-pivotal-tracker-stories-to-ruby-hash-object 0 Convert XML collection (of Pivotal Tracker stories) to Ruby hash/object mlambie 2009-11-23T02:51:01Z 2009-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>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;stories type="array" count="145" total="145"&gt; &lt;story&gt; &lt;id type="integer"&gt;16376&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/16376&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;accepted&lt;/current_state&gt; &lt;description&gt;A description&lt;/description&gt; &lt;name&gt;Receivable index listing will allow selection viewing&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;owned_by&gt;Tony Superman&lt;/owned_by&gt; &lt;created_at type="datetime"&gt;2009/11/04 15:49:43 WST&lt;/created_at&gt; &lt;accepted_at type="datetime"&gt;2009/11/10 11:06:16 WST&lt;/accepted_at&gt; &lt;labels&gt;index ui,receivables&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17427&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17427&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;&lt;/description&gt; &lt;name&gt;Validations in wizards based on direction&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:52:06 WST&lt;/created_at&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17426&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17426&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;Manual payment needs a description field.&lt;/description&gt; &lt;name&gt;Add description to manual payment&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:10:41 WST&lt;/created_at&gt; &lt;labels&gt;payment process&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17636&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17636&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;The SMS and email templates needs to be editable by merchants.&lt;/description&gt; &lt;name&gt;Notifications are editable by the merchant&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/19 16:44:08 WST&lt;/created_at&gt; &lt;/story&gt; &lt;/stories&gt; </code></pre> http://stackoverflow.com/questions/463963/parallel-processing-from-a-command-queue-on-linux-bash-python-ruby-whatever 7 Parallel processing from a command queue on Linux (bash, python, ruby... whatever) mlambie 2009-01-21T02:54:45Z 2009-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#1608563 0 Answer by mlambie for rails - InvalidAuthenticityToken for json/xml requests mlambie 2009-10-22T16:54:15Z 2009-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#1592739 1 Answer by mlambie for mysql Varchar size limit mlambie 2009-10-20T06:04:36Z 2009-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-validateslengthof 1 Is validates_presence_of necessary of using validates_length_of? mlambie 2009-10-20T05:29:56Z 2009-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 &lt; ActiveRecord::Base validates_presence_of :name validates_length_of :name, :in =&gt; 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-objec 0 Implement find(), save() ActiveRecord methods for ActiveMerchant CreditCard object mlambie 2009-10-19T02:33:08Z 2009-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#1586853 1 Answer by mlambie for Implement find(), save() ActiveRecord methods for ActiveMerchant CreditCard object mlambie 2009-10-19T03:41:18Z 2009-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#1586726 2 Answer by mlambie for Is it possible to do a Facebook status update programatically in .NET? mlambie 2009-10-19T02:34:40Z 2009-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#1485537 0 Answer by mlambie for Want to show the first 50 or 60 words of a text field in ruby?? mlambie 2009-09-28T05:22:26Z 2009-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-code 3 Automatically reformatting inherited PHP spaghetti code mlambie 2008-12-15T01:23:06Z 2009-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-x 14 What MySQL client application would you recommend for Mac OS X? mlambie 2008-09-22T01:40:50Z 2009-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-ruby 0 How can I convert a Blowfish encoded binary string to ASCII in Ruby? mlambie 2009-04-30T19:02:42Z 2009-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-application 0 Where's the best place to define a constant in a Ruby on Rails application? mlambie 2009-07-10T05:02:40Z 2009-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#1107796 0 Answer by mlambie for Where's the best place to define a constant in a Ruby on Rails application? mlambie 2009-07-10T05:07:41Z 2009-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-tutorial 0 Wanted: acts_as_nested_set, AJAX drag and drop tutorial mlambie 2008-10-13T15:47:03Z 2009-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#1039180 6 Answer by mlambie for What is a reliable method to record votes from anonymous users, without allowing duplicates mlambie 2009-06-24T15:41:26Z 2009-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#1021326 2 Answer by mlambie for deploying ruby on rails applications on solaris 10 mlambie 2009-06-20T09:54:05Z 2009-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#1021354 1 Answer by mlambie for Is there a way to access DELL XPS media buttons programmatically mlambie 2009-06-20T10:09:09Z 2009-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#1021299 3 Answer by mlambie for How does one convert a string to lowercase in ruby mlambie 2009-06-20T09:27:57Z 2009-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#1021284 0 Answer by mlambie for Debugging PHP code mlambie 2009-06-20T09:15:17Z 2009-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#1021280 1 Answer by mlambie for How does one convert a string to lowercase in ruby mlambie 2009-06-20T09:10:17Z 2009-06-20T09:10:17Z <p>... and the uppercase is:</p> <pre><code>"Awesome String".upcase =&gt; "AWESOME STRING" </code></pre> http://stackoverflow.com/questions/1016591/attachment-fu-file-path/1021272#1021272 0 Answer by mlambie for attachment fu - file path mlambie 2009-06-20T09:02:45Z 2009-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#1021242 0 Answer by mlambie for Ruby gem LoadError - rubygems/defaults/operating_system mlambie 2009-06-20T08:39:05Z 2009-06-20T08:39:05Z <p>It looks like you need the mysql gem too.</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript 15 Syntax highlighting code with Javascript mlambie 2008-10-02T02:57:33Z 2009-05-05T03:50:42Z <p>What Javascript libraries can you recommend for syntax highlighting &lt;code&gt; blocks in HTML?</p> <p>(One suggestion per answer please).</p> http://stackoverflow.com/questions/160694/syntax-highlighting-code-with-javascript/823256#823256 1 Answer by mlambie for Syntax highlighting code with Javascript mlambie 2009-05-05T03:50:42Z 2009-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#752730 3 Answer by mlambie for How much code in a rails view is ok? mlambie 2009-04-15T17:04:40Z 2009-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 =&gt; 'UPPER(name)').collect {|s| [s.name, s.id]} end def </code></pre> <p>Then in my Domain view I call:</p> <pre><code>&lt;%= f.select :site_id, Site.select_options %&gt; </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 =&gt; 'name').collect {|p| [p.name, p.id]} end end </code></pre> <p>And then call it through the view with:</p> <pre><code>&lt;%= f.select :codesecure_project_id, CodesecureProject.select_options %&gt; </code></pre> http://stackoverflow.com/questions/110175/how-to-access-the-current-subversion-build-number/750475#750475 2 Answer by mlambie for How to access the current Subversion build number? mlambie 2009-04-15T06:01:17Z 2009-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#527339 1 Answer by mlambie for Should I 'name my page' for the purposes of custom css it needs? mlambie 2009-02-09T07:24:49Z 2009-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#367488 0 Answer by mlambie for Automatically reformatting inherited PHP spaghetti code mlambie 2008-12-15T04:38:53Z 2008-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#351916 0 Answer by mlambie for pass password to su/sudo/ssh mlambie 2008-12-09T06:04:04Z 2008-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 &lt;password&gt; | sudo -S &lt;command&gt; </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#1780987 Comment by mlambie on Convert XML collection (of Pivotal Tracker stories) to Ruby hash/object mlambie 2009-11-23T05:49:51Z 2009-11-23T05:49:51Z I'm not using Rails in this instance. http://stackoverflow.com/questions/1592737/difference-between-byte-and-char-in-c/1592743#1592743 Comment by mlambie on Difference between byte and char in C mlambie 2009-10-20T06:11:06Z 2009-10-20T06:11:06Z Valid 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#1592666 Comment by mlambie on Is validates_presence_of necessary of using validates_length_of? mlambie 2009-10-20T05:56:30Z 2009-10-20T05:56:30Z Right, 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#1019186 Comment by mlambie on Filtering by date substrings in Rails mlambie 2009-06-20T09:23:04Z 2009-06-20T09:23:04Z searchlogic 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-operatingsystem Comment by mlambie on Ruby gem LoadError - rubygems/defaults/operating_system mlambie 2009-06-20T09:08:33Z 2009-06-20T09:08:33Z Can you find &quot;rubygems/defaults/operating_system.rb&quot; 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/&hellip;</a> http://stackoverflow.com/questions/123494/whats-your-favourite-irb-trick/229066#229066 Comment by mlambie on What's Your Favourite IRB Trick? mlambie 2009-06-17T01:53:49Z 2009-06-17T01:53:49Z Yeah 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#808615 Comment by mlambie on How can I convert a Blowfish encoded binary string to ASCII in Ruby? mlambie 2009-04-30T19:42:20Z 2009-04-30T19:42:20Z That'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#628543 Comment by mlambie on Parallel processing from a command queue on Linux (bash, python, ruby... whatever) mlambie 2009-03-10T19:00:27Z 2009-03-10T19:00:27Z This 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#527339 Comment by mlambie on Should I 'name my page' for the purposes of custom css it needs? mlambie 2009-02-13T06:12:09Z 2009-02-13T06:12:09Z Why would that be the case? http://stackoverflow.com/questions/463963/parallel-processing-from-a-command-queue-on-linux-bash-python-ruby-whatever/464038#464038 Comment by mlambie on Parallel processing from a command queue on Linux (bash, python, ruby... whatever) mlambie 2009-01-21T07:01:36Z 2009-01-21T07:01:36Z This 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#280840 Comment by mlambie on Best practices for new Rails deployments on Linux? mlambie 2008-11-27T05:53:59Z 2008-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#299943 Comment by mlambie on The Coolest Server Names mlambie 2008-11-27T04:30:27Z 2008-11-27T04:30:27Z We 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 more http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278536#278536 Comment by mlambie on What was your biggest *nix blooper? mlambie 2008-11-10T17:32:00Z 2008-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#229065 Comment by mlambie on Interpret \n within irb or script/console mlambie 2008-10-23T09:18:56Z 2008-10-23T09:18:56Z Thanks very much - this is exactly what I was looking for :) http://stackoverflow.com/questions/171964/stick-with-php-or-learn-ruby-on-rails Comment by mlambie on Stick with PHP or learn Ruby (on rails) mlambie 2008-10-05T16:04:12Z 2008-10-05T16:04:12Z I totally agree with point 3. Rails was written in Ruby with good reason.