User floehopper - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T01:22:24Zhttp://stackoverflow.com/feeds/user/46850http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1699853/iphone-ipod-touch-sync-notifications1iPhone/iPod Touch sync notificationsfloehopper2009-11-09T08:59:47Z2009-11-09T16:03:53Z
<p>I know that it's possible to add an observer for notifications with the <code>com.apple.iTunes.playerInfo</code> identifier, but this only seems to include events for music related events.</p>
<p>I also know I can find out when iTunes closes by adding an observer for <code>NSWorkspaceDidTerminateApplicationNotification</code>.</p>
<p>But is there an <code>NSNotification</code> for the start/finish of iPhone syncing with iTunes?</p>
<p>Just to be clear, my question is about what happens on a Mac not on an iPhone.</p>
http://stackoverflow.com/questions/1370901/very-simple-launchd-plist-not-running-my-script/1532811#15328110Answer by floehopper for VERY simple Launchd plist not running my script...floehopper2009-10-07T16:46:11Z2009-10-07T16:51:17Z<p>To make your script run automatically when you call launchctl load, you need to add :-</p>
<pre><code><key>RunAtLoad</key>
<true/>
</code></pre>
<p>Alternatively you could use :-</p>
<pre><code>launchctl start com.tomcat.plist
</code></pre>
http://stackoverflow.com/questions/1426155/build-same-rubycocoa-application-version-for-leopard-and-snow-leopard/1504880#1504880-1Answer by floehopper for Build same RubyCocoa application version for Leopard and Snow Leopardfloehopper2009-10-01T16:06:11Z2009-10-01T16:06:11Z<p>You should probably have the following build settings :-</p>
<ul>
<li>Architectures = 32/64-bit Universal</li>
<li>Base SDK = Mac OS X 10.6</li>
<li>Deployment Target = Mac OS X 10.5</li>
</ul>
<p>If this doesn't work on 10.5, try changing</p>
<ul>
<li>Base SDK = Mac OS X 10.5</li>
</ul>
<p>I don't think the version of GCC should matter unless you can't build successfully.</p>
http://stackoverflow.com/questions/1473237/manipulating-keychain-acls-from-rubycocoa0Manipulating keychain ACLs from RubyCocoafloehopper2009-09-24T17:59:46Z2009-09-24T17:59:46Z
<p>I'm trying to translate some of the following <a href="http://developer.apple.com/mac/library/documentation/Security/Conceptual/keychainServConcepts/03tasks/tasks.html#//apple%5Fref/doc/uid/TP30000897-CH205-BCIHBDFB" rel="nofollow">sample code</a> into RubyCocoa :-</p>
<pre><code>SecAccessRef createAccess(NSString *accessLabel)
{
OSStatus err;
SecAccessRef access=nil;
NSArray *trustedApplications=nil;
//Make an exception list of trusted applications; that is,
// applications that are allowed to access the item without
// requiring user confirmation:
SecTrustedApplicationRef myself, someOther;
//Create trusted application references; see SecTrustedApplications.h:
err = SecTrustedApplicationCreateFromPath(NULL, &myself);
err = SecTrustedApplicationCreateFromPath("/Applications/Mail.app",
&someOther);
trustedApplications = [NSArray arrayWithObjects:(id)myself,
(id)someOther, nil];
//Create an access object:
err = SecAccessCreate((CFStringRef)accessLabel,
(CFArrayRef)trustedApplications, &access);
if (err) return nil;
return access;
}
</code></pre>
<p>This is what I have so far :-</p>
<pre><code>require 'osx/cocoa'
include OSX
OSX.load_bridge_support_file('/path/to/Security.bridgesupport')
def create_access(access_label)
err, myself = SecTrustedApplicationCreateFromPath(nil)
err, some_other = SecTrustedApplicationCreateFromPath('/Applications/Mail.app')
trusted_apps = NSArray.arrayWithObjects(myself, some_other, nil)
err, access = SecAccessCreate(access_label, trusted_apps)
return nil unless err == 0
return access
end
</code></pre>
<p>However, I'm seeing two problems :-</p>
<ol>
<li><code>myself</code> is set to nil</li>
<li>the call to <code>SecAccessCreate</code> results in a segmentation fault</li>
</ol>
<p>Does anyone know what I'm doing wrong?</p>
http://stackoverflow.com/questions/1473091/building-the-equivalent-of-a-c-structure-in-rubycocoa0Building the equivalent of a C structure in RubyCocoafloehopper2009-09-24T17:30:34Z2009-09-24T17:30:34Z
<p>I'm trying to do something similar to <a href="http://developer.apple.com/mac/library/documentation/Security/Conceptual/keychainServConcepts/03tasks/tasks.html#//apple%5Fref/doc/uid/TP30000897-CH205-BCIHBDFB" rel="nofollow">this code sample</a> but in RubyCocoa. In particular, I'm having some trouble trying to build a <code>SecKeychainAttributeList</code>. I suspect I need to make use of <code>Array#pack</code> or something to build a suitable structure in Ruby. Any advice on how to build the equivalent of <code>attributes</code> in the following chunk of code would be very welcome :-</p>
<pre><code>void addInternetPassword(NSString *password, NSString *account,
NSString *server, NSString *itemLabel, NSString *path,
SecProtocolType protocol, int port)
{
OSStatus err;
SecKeychainItemRef item = nil;
const char *pathUTF8 = [path UTF8String];
const char *serverUTF8 = [server UTF8String];
const char *accountUTF8 = [account UTF8String];
const char *passwordUTF8 = [password UTF8String];
const char *itemLabelUTF8 = [itemLabel UTF8String];
//Create initial access control settings for the item:
SecAccessRef access = createAccess(itemLabel);
//Following is the lower-level equivalent to the
// SecKeychainAddInternetPassword function:
//Set up the attribute vector (each attribute consists
// of {tag, length, pointer}):
SecKeychainAttribute attrs[] = {
{ kSecLabelItemAttr, strlen(itemLabelUTF8), (char *)itemLabelUTF8 },
{ kSecAccountItemAttr, strlen(accountUTF8), (char *)accountUTF8 },
{ kSecServerItemAttr, strlen(serverUTF8), (char *)serverUTF8 },
{ kSecPortItemAttr, sizeof(int), (int *)&port },
{ kSecProtocolItemAttr, sizeof(SecProtocolType),
(SecProtocolType *)&protocol },
{ kSecPathItemAttr, strlen(pathUTF8), (char *)pathUTF8 }
};
SecKeychainAttributeList attributes = { sizeof(attrs) / sizeof(attrs[0]),
attrs };
</code></pre>
http://stackoverflow.com/questions/1460364/how-can-i-fetch-information-about-the-app-song-video-etc-from-itunes-store/1472567#14725672Answer by floehopper for How can I fetch information about the app/song/video etc. from iTunes Store?floehopper2009-09-24T15:50:45Z2009-09-24T15:50:45Z<p>As far as I know (and I've done a lot of looking), there isn't a public API.</p>
<p>You're right that the HTML isn't semantically structured, so parsing it won't be very robust. But I think it's your only option. Here are a few links which might help :-</p>
<p>A <a href="http://code.google.com/p/biappi-repo/source/browse/trunk/Scripts/app-store-reviews-downloader.py" rel="nofollow">Python script</a> which parses reviews.</p>
<p>An Ars Technica article: <a href="http://arstechnica.com/apple/news/2008/12/linking-to-the-stars-hacking-itunes-to-solicit-reviews.ars" rel="nofollow">Linking to the stars: hacking iTunes to solicit reviews</a>.</p>
<p>An Inside iPhone article: <a href="http://blogs.oreilly.com/iphone/2008/08/scraping-appstore-reviews.html" rel="nofollow">Scraping AppStore Reviews</a>.</p>
http://stackoverflow.com/questions/1265267/asynchronous-methods-in-rubycocoa0Asynchronous methods in RubyCocoafloehopper2009-08-12T09:54:37Z2009-09-07T14:40:41Z
<p>I understand that it isn't possible/sensible to use threads in RubyCocoa. However it is possible to use asynchronous Cocoa methods to avoid blocking user interface events.</p>
<p>I've successfully used a method on <code>NSURLConnection</code> to send an HTTP request and receive the response without blocking the user interface. But I'm wondering what other asynchronous Cocoa methods like this are available?</p>
<p>Also is it possible/sensible within a RubyCocoa application to use Ruby to spawn separate processes (as opposed to threads)? I suppose one issue would be how to wait for the process to complete, but perhaps this could be done by polling via NSTimer events?</p>
http://stackoverflow.com/questions/1085531/tracking-model-changes-in-rails-automatically/1086461#10864610Answer by floehopper for Tracking model changes in Rails, automaticallyfloehopper2009-07-06T11:03:52Z2009-07-06T11:03:52Z<p>You might find <a href="http://blog.airbladesoftware.com/2009/6/23/a-paper-trail-for-your-models" rel="nofollow">PaperTrail</a> useful.</p>
http://stackoverflow.com/questions/1034135/ruby-email-encoding-and-quoted-printable-content/1057540#10575401Answer by floehopper for Ruby email encoding and quoted-printable contentfloehopper2009-06-29T10:08:26Z2009-06-29T12:02:04Z<p>Are you just using <code>TMail</code>, or are you using it with <code>ActionMailer</code>? It looks like <code>TMail</code> itself does not have the ability to encode as <code>quoted-printable</code>. However, it looks like <code>ActionMailer</code> does have this ability.</p>
<p>It looks like <code>TMail</code> allows you to set the <code>Content-Transfer-Encoding</code> header as follows :-</p>
<pre><code>mail = TMail::Mail.new
mail.transfer_encoding = "quoted-printable"
</code></pre>
<p>But it looks like this doesn't actually encode the body.</p>
<p>You can see <code>ActionMailer</code> setting this header <a href="http://github.com/rails/rails/blob/8fdf3d7890d2e58508e028c93d3797f21a774dbc/actionmailer/lib/action%5Fmailer/part.rb#L44" rel="nofollow">here</a>. <code>quoted-printable</code> seems to be the default for <code>ActionMailer</code>.</p>
<p><code>ActionMailer</code> has the <a href="http://github.com/rails/rails/blob/8fdf3d7890d2e58508e028c93d3797f21a774dbc/actionmailer/lib/action%5Fmailer/quoting.rb#L5" rel="nofollow">ActionMailer::Quoting::quoted_printable</a> method to encode the body as <code>quoted-printable</code>. Maybe you can make use of this...?</p>
http://stackoverflow.com/questions/1044052/resume-parser-in-ruby-rails-plugin-gem/1057434#10574340Answer by floehopper for Resume parser in Ruby/(Rails Plugin/Gem)floehopper2009-06-29T09:39:34Z2009-06-29T09:39:34Z<p>I may be wrong, but I don't think you'll find anything <em>completely</em> automated to do this, because a résumé (or CV) can be structured in so many different ways and can contain very different types of data. Any completely automated solution is likely to have accuracy problems, since it is technically a difficult problem to solve.</p>
<p>You may find <a href="http://stackoverflow.com/questions/451943/best-3rd-party-resume-parser-tool/529291#529291">this answer</a> useful.</p>
<p>Here are some other suggestions that might help :-</p>
<ul>
<li><p>Require a user to enter their details into a form on your website instead of uploading a Word document. You'll then be able to explicitly ask for the data you want and you'll be able to store the data in a structure that suits you. However, this may be too much of a barrier to entry for your users.</p></li>
<li><p>Allow a user to submit the URL of their résumé published using the <a href="http://en.wikipedia.org/wiki/HResume" rel="nofollow">hResume microformat</a>. Sites like <a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a> already publish résumés in this format. There is a Ruby gem <a href="http://mofo.rubyforge.org/" rel="nofollow">mofo</a> which can parse microformats including hResumes. However, not all users will have an on-line résumé like this.</p></li>
</ul>
http://stackoverflow.com/questions/765329/what-is-the-best-rails-caching-option-for-largely-static-pages-with-a-dynamic-hea0What is the best Rails caching option for largely static pages with a dynamic headerfloehopper2009-04-19T12:25:36Z2009-04-19T14:51:03Z
<p>I have a set of largely static pages which I'd be happy to page cache for relatively long periods apart from the fact that their layout includes a much more dynamic header.</p>
<p>The most promising idea so far seems to be using action caching without layout :-</p>
<pre><code>class SomethingController < ApplicationController
caches_action :index, :layout => false
end
</code></pre>
<p>Then at least the main content of the page is cached. Does that make sense?</p>
<p>Or would I be better off doing something else, e.g. fragment caching, server-side include, etc...?</p>
http://stackoverflow.com/questions/670094/why-does-the-absence-of-the-assignment-operator-permit-me-to-modify-a-ruby-consta/670123#6701231Answer by floehopper for Why does the absence of the assignment operator permit me to modify a Ruby constant with no compiler warning?floehopper2009-03-21T22:26:24Z2009-03-21T22:26:24Z<p>This is because the constant <code>X</code> is storing a reference to a <code>String</code> object. In your first example, you are modifying the internal state of the <code>String</code> object, but not the reference stored by the constant. In the second example, you are changing the reference stored by the constant to a new <code>String</code> object which is returned from the <code>concat</code> method.</p>
<p>The PickAxe book explains this <a href="http://www.ruby-doc.org/docs/ProgrammingRuby/html/language.html#S4" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/664334/does-rubys-objectid-method-refer-to-the-memory-location/664410#6644101Answer by floehopper for Does ruby's object_id method refer to the memory location?floehopper2009-03-19T23:12:28Z2009-03-19T23:12:28Z<p>It isn't a direct reference to the memory location and the "encoding" is specific to a particular Ruby implementation. If you can read C code, you may find it instructive to look at the <code>rb_obj_id</code> and <code>id2ref</code> methods in <code>gc.c</code> in the Ruby 1.8.6 source. You can also read more about the "encoding" in the "Objects embedded in VALUE" section of the partial translation of the <a href="http://rhg.rubyforge.org/chapter02.html" rel="nofollow">Ruby Hacking Guide chapter 2</a>. </p>
http://stackoverflow.com/questions/661380/ruby-aaws-get-specific-album/661608#6616080Answer by floehopper for ruby-aaws Get specific Albumfloehopper2009-03-19T09:54:52Z2009-03-19T09:54:52Z<p>I've had a bit of a look at the code of <code>ruby-aaws</code>. It looks like you should be able to set <code>$DEBUG</code> to <code>true</code> before calling any of the <code>ruby-aaws</code> methods/classes and see what URLs are being requested. If there are any discrepancies between your handcrafted URL and the one being generated by <code>ruby-aaws</code>, this might give you some clues.</p>
http://stackoverflow.com/questions/635129/what-is-the-best-way-to-halt-a-transition-with-aasm/635284#6352841Answer by floehopper for What is the best way to halt a transition with AASM floehopper2009-03-11T16:23:49Z2009-03-11T16:23:49Z<p>I've not used this plugin, but reading the code, unless I'm mistaken there doesn't appear to be any mechanism for communicating that either of these callbacks have failed.</p>
<p>This makes complete sense to me for the <code>success</code> callback, because it is only called once the transition has actually happened by which time it is too late to revert. If you want the exception raised within your <code>success</code> callback to prevent the transition, perhaps the code should go in the transition itself and not in the <code>success</code> callback...? Or maybe you need an extra state...?</p>
<p>Regarding the <code>enter</code> callback, would the <code>guard</code> callback not be more appropriate...? You can return false if the transition should not go ahead.</p>
http://stackoverflow.com/questions/588466/returning-mock-objects-from-factory-girl/605711#6057111Answer by floehopper for Returning mock objects from factory girlfloehopper2009-03-03T09:28:15Z2009-03-03T09:28:15Z<p>Looking at the documentation & source code for <code>factory_girl</code>, it looks like the object yielded to the block (<code>t</code>, in your example) is an instance of a <code>Factory</code> and not an instance of the object you want to construct (the <code>tweet_feed_with_tweets</code>, in your example). This means that setting an expectation for the <code>pull_tweets</code> method on <code>t</code> is setting the expectation on the <code>Factory</code> instance and not on the object that will be constructed when you call <code>Factory(:tweet_feed_with_tweets)</code>. I think this explains why your example is not working as you expect.</p>
<p>I may be wrong, but I can't see a way of adding the expectation within the <code>Factory.define</code> block. You've probably already thought of this, but I think you'd be better off adding the expectation in the test after you've constructed the instance :-</p>
<pre><code>def test_should_do_something
tweet_feed = Factory(:tweet_feed)
tweet_feed.expects(:pull_tweets).returns([Factory.build(:status), Factory.build(:status)])
# test stuff here
end
</code></pre>
<p>If you need this in multiple places, you can extract it into a method :-</p>
<pre><code>def test_should_do_something
tweet_feed = build_tweet_feed_with_tweets
# test stuff here
end
private
def build_tweet_feed_with_tweets
tweet_feed = Factory(:tweet_feed)
tweet_feed.expects(:pull_tweets).returns([Factory.build(:status), Factory.build(:status)])
return tweet_feed
end
</code></pre>
<p>A couple of other thoughts :-</p>
<ol>
<li>I think setting expectations in such a hidden away place is probably a bad idea anyway.</li>
<li>If you are going to do it, I would have thought using <code>stubs</code> was more appropriate than <code>expects</code>.</li>
<li>It might be worth separating the <code>pull_tweets</code> method (and any similar methods) into a <code>TwitterAPI</code> class. That way it wouldn't seem so bad that you need to set up an expectation on the <code>TwitterAPI</code> in the test.</li>
</ol>
<p>I hope some of that helps.</p>
http://stackoverflow.com/questions/602259/using-warbler-how-do-i-exclude-active-record-from-the-bundled-gems/603875#6038751Answer by floehopper for Using Warbler, how do I exclude Active Record from the bundled gems?floehopper2009-03-02T20:29:23Z2009-03-02T20:29:23Z<p>I haven't been able to try either of these ideas, but looking at <a href="http://github.com/nicksieger/jruby-rack/" rel="nofollow">Nick Sieger's examples</a> :-</p>
<ul>
<li>Does the gem name have to be a String rather than a Symbol?</li>
<li>It looks like <code>activerecord</code> maybe being included implicitly because <code>config.gems</code> includes <code>rails</code> and <code>config.gem_dependencies = true</code>. Maybe you need to change <code>config.gem_dependencies</code> to <code>false</code> and explicitly include <code>rails</code>, <code>actioncontroller</code>, etc in <code>config.gems</code>.</li>
</ul>
<p>It might be instructive to print out or log the value of <code>config.gems</code> from within the <code>warble.rb</code> file.</p>
http://stackoverflow.com/questions/558379/do-you-define-an-interface-for-every-public-class-in-your-domain-model-pros-and/558457#5584571Answer by floehopper for Do you define an interface for every public class in your domain model? Pros and Cons?floehopper2009-02-17T19:53:22Z2009-02-17T19:53:22Z<p>Interfaces can be used to make the code more expressive by giving a name to the role a class is playing in a particular situation. A single class may play more than one role. For example when a Man is interacting with a Cat, the Cat might have a Pet interface, whereas when a Mouse is interacting with a Cat, the Cat might have a Predator interface.</p>
<p>You might find <a href="http://www.jmock.org/oopsla2004.pdf" rel="nofollow">Mock Roles, not Objects</a> a relevant and interesting read.</p>
http://stackoverflow.com/questions/549127/high-performance-rss-atom-parsing-with-ruby-on-rails/549179#5491799Answer by floehopper for High-performance RSS/Atom parsing with Ruby on Railsfloehopper2009-02-14T14:29:00Z2009-02-14T14:29:00Z<p>I haven't tried it, but I read about <a href="http://github.com/pauldix/feedzirra/" rel="nofollow">Feedzirra</a> recently (it claims to be built for performance) :-</p>
<blockquote>
<p>Feedzirra is a feed library that is
designed to get and update many feeds
as quickly as possible. This includes
using libcurl-multi through the
taf2-curb gem for faster http gets,
and libxml through nokogiri and
sax-machine for faster parsing.</p>
</blockquote>
http://stackoverflow.com/questions/542877/detect-stop-with-ruby-daemons-gem/543907#5439073Answer by floehopper for Detect stop with Ruby Daemons gem.floehopper2009-02-12T22:59:36Z2009-02-12T22:59:36Z<p>Looking at the daemon gem code, it doesn't look like it has an obvious extension point for this purpose. However, I wonder if (in the daemonized process) you could trap the KILL/TERM signal that daemons sends when a 'stop' occurs...?</p>
<pre><code>trap("TERM") do
# execute your extra code here
end
</code></pre>
<p>Alternatively you could install an at_exit hook :-</p>
<pre><code>at_exit do
# execute your extra code here
end
</code></pre>
http://stackoverflow.com/questions/543774/undef-why-would-you-want-to-undefine-a-method-in-ruby/543817#543817-2Answer by floehopper for undef - Why would you want to undefine a method in ruby?floehopper2009-02-12T22:38:11Z2009-02-12T22:38:11Z<p>I don't think that it is necessarily "needed" by anything, but if you can define new methods at run-time in a programming language it makes sense to me that you should be able to un-define a method at run-time. What other programming languages are you thinking of? Are they able to define new methods at run-time?</p>
http://stackoverflow.com/questions/540252/can-any-ide-or-framework-help-testing-code-like-this/542446#5424460Answer by floehopper for Can any IDE or framework help testing code like this...?floehopper2009-02-12T17:30:42Z2009-02-12T17:30:42Z<p>I think you are talking about unit testing and mock objects. Here are couple of C++ mock object libraries that might be useful :-</p>
<ul>
<li><a href="http://code.google.com/p/googlemock/" rel="nofollow">googlemock</a> which only works with <a href="http://code.google.com/p/googletest/" rel="nofollow">googletest</a></li>
<li><a href="http://mockpp.sourceforge.net/" rel="nofollow">mockpp</a></li>
</ul>
http://stackoverflow.com/questions/538650/how-to-include-metadata-in-a-template-file/538974#5389741Answer by floehopper for How to include metadata in a template file?floehopper2009-02-11T21:47:27Z2009-02-12T10:08:54Z<p>How about if you dump your content as YAML too. Presumably the metadata is simply a Hash dumped to YAML. You could just append the content as string in a second YAML document in the same file :-</p>
<pre><code>---
title: Baxter the Dog
filter: textile
--- |
Content line 1
Content line 2
Content line 3
</code></pre>
<p>Dumping is as simple as :-</p>
<pre><code>File.open('file.txt', 'w') do |output|
YAML.dump(metadata, output)
YAML.dump(content, output)
end
</code></pre>
<p>Loading is as simple as :-</p>
<pre><code>File.open('file.txt') do |input|
stream = YAML.load_stream(input)
metadata, content = stream.documents
end
</code></pre>
<p>Note that the pipe character appears in the YAML <a href="http://www.yaml.org/YAML_for_ruby.html#single_ending_newline" rel="nofollow">so that newlines in the content string are preserved</a>.</p>
http://stackoverflow.com/questions/535880/automated-test-with-ruby-select-an-option-from-drop-down-list/538254#5382540Answer by floehopper for Automated test with Ruby: select an option from drop-down listfloehopper2009-02-11T19:00:44Z2009-02-11T19:00:44Z<p>I think you want this command :-</p>
<pre><code>select(selectLocator, optionLocator)
</code></pre>
<ul>
<li>selectLocator identifies the drop down list</li>
<li>optionLocator identifies the option within the list</li>
</ul>
http://stackoverflow.com/questions/528679/recommendations-for-sites-articles-books-on-developing-web-sites-in-ruby-with/533411#5334111Answer by floehopper for Recommendations for sites / articles / books on developing web sites in Ruby without using a framework such as Rails / Merbfloehopper2009-02-10T17:47:27Z2009-02-10T17:47:27Z<p><a href="http://webby.rubyforge.org/" rel="nofollow">Webby</a> is worth a look. Simple, but useful for some applications.</p>
http://stackoverflow.com/questions/532790/dependency-graph-for-rails-partials/533210#5332100Answer by floehopper for Dependency graph for Rails partialsfloehopper2009-02-10T16:58:00Z2009-02-10T16:58:00Z<p><a href="http://github.com/gwynm/noisy_partials" rel="nofollow">Noisy Partials</a> could be what you need (although I've not actually tried it).</p>
http://stackoverflow.com/questions/533014/findersql-for-hasmany-relation/533157#5331572Answer by floehopper for finder_sql for has_many relationfloehopper2009-02-10T16:48:09Z2009-02-10T16:48:09Z<p>You might find it easier if you actually have a special "global" customer so you don't need to deal with the awkwardness of the NULL.</p>
<p>This is an example of using the <a href="http://en.wikipedia.org/wiki/Null_Object_pattern" rel="nofollow">Null Object pattern</a>.</p>
http://stackoverflow.com/questions/532881/heavy-algorthmic-work-in-ruby-on-rails/533092#5330926Answer by floehopper for Heavy algorthmic work in Ruby on Rails?floehopper2009-02-10T16:36:10Z2009-02-10T16:36:10Z<p>Another alternative is <a href="http://www.zenspider.com/ZSS/Products/RubyInline/" rel="nofollow">RubyInline</a> which allows you to write C/C++ code within your Ruby code. This fits in nicely with Jonas Kölker's <a href="http://stackoverflow.com/questions/532881/heavy-algorthmic-work-in-ruby-on-rails/532914#532914">suggestion</a> to write the algorithm in Ruby first and then find the bottlenecks. You can then use RubyInline to optimize the bottlenecks.</p>
http://stackoverflow.com/questions/530963/easiest-way-to-print-non-strings-in-ruby/533044#5330441Answer by floehopper for Easiest Way to Print Non-Strings in Rubyfloehopper2009-02-10T16:28:52Z2009-02-10T16:28:52Z<p>A slightly different approach is to use assertions in automated tests.</p>
<p>For example using Test::Unit :-</p>
<pre><code>assert_equal 25, temperature
</code></pre>
<p>I find that using automated tests dramatically cuts down on the amount of debugging code I have to write.</p>
http://stackoverflow.com/questions/533008/what-is-the-difference-or-value-of-these-block-coding-styles-in-ruby/533037#5330370Answer by floehopper for What is the difference or value of these block coding styles in Ruby?floehopper2009-02-10T16:27:22Z2009-02-10T16:27:22Z<p>I don't think it really matters - it's just an aesthetic personal choice. Some people prefer to use the <code>do...end</code> version when the block needs multiple lines and the <code>{...}</code> version when its all on one line.</p>
http://stackoverflow.com/questions/1699853/iphone-ipod-touch-sync-notificationsComment by floehopper on iPhone/iPod Touch sync notificationsfloehopper2009-11-09T16:02:06Z2009-11-09T16:02:06ZYes. That's correct. I'll edit my question to make it clearer. Thanks.http://stackoverflow.com/questions/1426155/build-same-rubycocoa-application-version-for-leopard-and-snow-leopard/1504880#1504880Comment by floehopper on Build same RubyCocoa application version for Leopard and Snow Leopardfloehopper2009-10-02T12:25:08Z2009-10-02T12:25:08ZHave you tried creating a really simple app and trying to get that to work on both 10.5 and 10.6. That would help narrow things down a bit.http://stackoverflow.com/questions/1473237/manipulating-keychain-acls-from-rubycocoaComment by floehopper on Manipulating keychain ACLs from RubyCocoafloehopper2009-09-25T17:53:21Z2009-09-25T17:53:21ZFor the moment, I've created an Objective-C class to incorporate the problematic code and am calling that from RubyCocoa. It seems to work fine. But I'd like to know if it's possible to do the whole thing in RubyCocoa.http://stackoverflow.com/questions/1473091/building-the-equivalent-of-a-c-structure-in-rubycocoaComment by floehopper on Building the equivalent of a C structure in RubyCocoafloehopper2009-09-25T17:51:37Z2009-09-25T17:51:37ZThanks. That's what I decided to do after posting this question. I'd still be interested to know if it's possible - I think it should be.http://stackoverflow.com/questions/509728/recommend-way-to-convert-nsstrings-to-cstrings/509735#509735Comment by floehopper on Recommend way to convert NSStrings to cstringsfloehopper2009-09-25T17:50:08Z2009-09-25T17:50:08ZSince the cString method is deprecated, this answer is better than the accepted one.http://stackoverflow.com/questions/1265267/asynchronous-methods-in-rubycocoa/1389703#1389703Comment by floehopper on Asynchronous methods in RubyCocoafloehopper2009-09-09T10:05:52Z2009-09-09T10:05:52ZI've moved away from using a Ruby HTTP client specifically to avoid blocking user interface events. My question is not about how to make HTTP requests in RubyCocoa, but how to perform long-running tasks without blocking the user interface.http://stackoverflow.com/questions/670094/why-does-the-absence-of-the-assignment-operator-permit-me-to-modify-a-ruby-constaComment by floehopper on Why does the absence of the assignment operator permit me to modify a Ruby constant with no compiler warning?floehopper2009-03-21T22:28:12Z2009-03-21T22:28:12ZStrictly speaking it's an interpreter warning, not a compiler warning. Ruby is not normally compiled.http://stackoverflow.com/questions/661380/ruby-aaws-get-specific-albumComment by floehopper on ruby-aaws Get specific Albumfloehopper2009-03-21T22:15:43Z2009-03-21T22:15:43ZDo you get an error message or do you just not get any results?http://stackoverflow.com/questions/661380/ruby-aaws-get-specific-albumComment by floehopper on ruby-aaws Get specific Albumfloehopper2009-03-21T12:14:11Z2009-03-21T12:14:11ZDid you try setting $DEBUG? Did you get anywhere?http://stackoverflow.com/questions/602259/using-warbler-how-do-i-exclude-active-record-from-the-bundled-gems/603875#603875Comment by floehopper on Using Warbler, how do I exclude Active Record from the bundled gems?floehopper2009-03-05T22:43:50Z2009-03-05T22:43:50ZI'm glad that worked.http://stackoverflow.com/questions/588466/returning-mock-objects-from-factory-girlComment by floehopper on Returning mock objects from factory girlfloehopper2009-03-04T17:10:02Z2009-03-04T17:10:02ZHave you worked out the answer yet? Did my answer help?http://stackoverflow.com/questions/602259/using-warbler-how-do-i-exclude-active-record-from-the-bundled-gemsComment by floehopper on Using Warbler, how do I exclude Active Record from the bundled gems?floehopper2009-03-04T17:08:07Z2009-03-04T17:08:07ZHave you worked out the answer yet? Did my answer help?http://stackoverflow.com/questions/546514/what-does-error-occurred-while-evaluating-nil-dependencies-meanComment by floehopper on What does error occurred while evaluating nil.dependencies mean?floehopper2009-02-13T18:14:36Z2009-02-13T18:14:36ZAlso do you have any gems in the project? And what version of Rails did you use to create the project?http://stackoverflow.com/questions/546514/what-does-error-occurred-while-evaluating-nil-dependencies-meanComment by floehopper on What does error occurred while evaluating nil.dependencies mean?floehopper2009-02-13T18:13:50Z2009-02-13T18:13:50ZI've just tried it with Rails 2.2.2 and a new (empty) Rails project on Ruby 1.8.6 with RubyGems 1.3.1. It works fine for me. It would help to know what versions of these you are using. Do you get the same error when you run the task in a clean Rails project?http://stackoverflow.com/questions/542845/how-to-rescue-an-eval-in-ruby/542928#542928Comment by floehopper on How to rescue an eval in Ruby?floehopper2009-02-12T23:10:20Z2009-02-12T23:10:20ZThis is good advice. For example, rescuing Exception rather than SyntaxError will prevent you interrupting your process with a ctrl-C.