User Daniel Beardsley - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:56:42Zhttp://stackoverflow.com/feeds/user/13216http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/213430/selenium-rc-run-tests-in-multiple-browsers-automatically5Selenium RC: Run tests in multiple browsers automaticallyDaniel Beardsley2008-10-17T19:00:43Z2009-11-17T16:28:33Z
<p>So, I've started to create some Ruby unit tests that use <a href="http://selenium-rc.openqa.org/" rel="nofollow">Selenium RC</a> to test my web app directly in the browser. I'm using the <a href="http://github.com/ph7/selenium-client/tree/master" rel="nofollow">Selenum-Client</a> for ruby. I've created a base class for all my other selenium tests to inherit from.</p>
<p>This creates numerous SeleniumDriver instances and all the methods that are missing are called on each instance. This essentially runs the tests in parallel.</p>
<p><strong>How have other people automated this?</strong></p>
<p>This is my implementation:</p>
<pre><code>class SeleniumTest < Test::Unit::TestCase
def setup
@seleniums = %w(*firefox *iexplore).map do |browser|
puts 'creating browser ' + browser
Selenium::SeleniumDriver.new("localhost", 4444, browser, "http://localhost:3003", 10000)
end
start
open start_address
end
def teardown
stop
end
#sub-classes should override this if they want to change it
def start_address
"http://localhost:3003/"
end
# Overrides standard "open" method
def open(addr)
method_missing 'open', addr
end
# Overrides standard "type" method
def type(inputLocator, value)
method_missing 'type', inputLocator, value
end
# Overrides standard "select" method
def select(inputLocator, optionLocator)
method_missing 'select', inputLocator, optionLocator
end
def method_missing(method_name, *args)
@seleniums.each do |selenium_driver|
if args.empty?
selenium_driver.send method_name
else
selenium_driver.send method_name, *args
end
end
end
end
</code></pre>
<p>This works, but if one browser fails, the whole test fails and there is no way to know which browser it failed on.</p>
http://stackoverflow.com/questions/161631/why-is-apache-rails-is-spitting-out-two-status-headers-for-code-5000Why is Apache + Rails is spitting out two status headers for code 500?Daniel Beardsley2008-10-02T10:13:19Z2009-10-06T16:00:03Z
<p>I have a rails app that is working fine except for one thing.</p>
<p>When I request something that doesn't exist (i.e. /not_a_controller_or_file.txt) and rails throws a "No Route matches..." exception, the response is this (blank line intentional):</p>
<pre><code>HTTP/1.1 200 OK
Date: Thu, 02 Oct 2008 10:28:02 GMT
Content-Type: text/html
Content-Length: 122
Vary: Accept-Encoding
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Status: 500 Internal Server Error
Content-Type: text/html
<html><body><h1>500 Internal Server Error</h1></body></html>
</code></pre>
<p>I have the ExceptionLogger plugin in /vendor, though that doesn't seem to be the problem. I haven't added any error handling beyond the custom 500.html in public (though the response doesn't contain that HTML) and I have no idea where this bit of html is coming from.</p>
<p>So Something, somewhere is adding that <strong>HTTP/1.1 200</strong> status code too early, or the <strong>Status: 500</strong> too late. I suspect it's Apache because I get the appropriate HTTP/1.1 500 header (at the top) when I use Webrick. </p>
<p>My production stack is as follows:
Apache 2
Mongrel (5 instances)
RubyOnRails 2.1.1 (happens in both 1.2 and 2.1.1)</p>
<p><hr /></p>
<p>I forgot to mention, <strong>the error is caused by a "no route matches..." exception</strong></p>
http://stackoverflow.com/questions/438163/whats-the-best-web-interface-for-git-repositories5What's the best Web interface for Git repositories?Daniel Beardsley2009-01-13T06:54:42Z2009-06-21T17:20:31Z
<p>I've been using Git for a bit now (hosting my own) and would love to have something like <a href="http://www.github.com" rel="nofollow">GitHub</a> that I could setup for my own repos. I've seen GitWeb, but I just don't like using it all that much. Is there anything for Git that's as slick as <a href="http://www.warehouseapp.com" rel="nofollow">Warehouse</a> for SVN?</p>
http://stackoverflow.com/questions/383927/apache-giving-a-400-error-on-a-fastcgi-virtualhost0Apache giving a 400 Error on a FastCGI VirtualHostDaniel Beardsley2008-12-21T00:20:59Z2009-06-20T02:00:03Z
<p>Apache is spitting out a HTTP response of code: 400 "Bad Request" with no details whenever I access a page driven that is handled by a FastCGI script.</p>
<ul>
<li>I've installed the mod_fcgid module and it's loaded and configured in the Apache config files</li>
<li>I've tested several FastCGI scripts, all of them run when directly executed.</li>
<li>Static resources are served appropriately.</li>
<li>Apache is trying to launch the script because it complains when I rewrite the URL to a non-existant script</li>
</ul>
<p>Anyone have any idea what's wrong with my Apache Config?</p>
<pre><code><VirtualHost ip.ad.re.ss:80>
ServerName demo.domain.com:80
DocumentRoot /var/www/vhosts/domain.com/subdomains/demo/rails/public
CustomLog /var/www/vhosts/domain.com/statistics/logs/demo_access_log combined
ErrorLog /var/www/vhosts/domain.com/statistics/logs/demo_error_log
LogLevel info
Options +FollowSymLinks +ExecCGI -SymLinksIfOwnerMatch
AddHandler fcgid-script .fcgi
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
</VirtualHost>
</code></pre>
<p>EDIT -- I've checked the mod_rewrite logs and URI's are being rewritten correctly</p>
http://stackoverflow.com/questions/840781/easiest-way-to-find-duplicate-values-in-a-javascript-array/842326#8423261Answer by Daniel Beardsley for Easiest way to find duplicate values in a javascript arrayDaniel Beardsley2009-05-09T00:00:52Z2009-05-09T00:00:52Z<p>This should get you what you want, Just the duplicates.</p>
<pre><code>function find_duplicates(arr) {
var len=arr.length,
out=[],
counts={};
for (var i=0;i<len;i++) {
var item = arr[i];
var count = counts[item];
counts[item] = counts[item] >= 1 ? counts[item] + 1 : 1;
}
for (var item in counts) {
if(counts[item] > 1)
out.push(item);
}
return out;
}
find_duplicates(['one',2,3,4,4,4,5,6,7,7,7,'pig','one']); // -> ['one',4,7] in no particular order.
</code></pre>
http://stackoverflow.com/questions/827501/provide-feedback-to-view-from-controller-in-ruby-on-rails/828025#8280251Answer by Daniel Beardsley for Provide feedback to view from controller in ruby on railsDaniel Beardsley2009-05-06T04:34:42Z2009-05-06T04:34:42Z<p>I've used this with great success: <a href="http://swfupload.org/" rel="nofollow">SWFUpload</a></p>
<p>It's a flash control that does the uploading, you provide the html front-end, whether you use text or a % bar.</p>
http://stackoverflow.com/questions/446244/are-crlf-lines-ok-in-a-rails-project-deployed-on-linux0Are CRLF lines ok in a Rails project deployed on Linux?Daniel Beardsley2009-01-15T10:15:10Z2009-03-18T21:56:20Z
<p>I have a Git repository (originally CVS, then SVN, now Git) containing a Rails project that has been deployed on Linux for a while now. Everything seems to run fine.</p>
<p>Now that I've converted to git, I see that <strong>many of my files in the repository contain <a href="http://en.wikipedia.org/wiki/Newline" rel="nofollow"><code>CRLF</code></a> line endings</strong>. I'd love for it to all be consistent (<code>LF</code>), but not at the expense of loosing the edit history of every file that has <code>CRLF</code> line endings.</p>
<p><strong>Can you think of any reason I can't leave the files as they are?</strong> I seem to remember there being a problem with shell scripts or cron files or something that didn't respond to <code>CRLF</code> very well.</p>
<p>Also, I know all about the Git options <code>core.autocrlf</code> and <code>core.safecrlf</code>, But is there some way to have it <strong>convert all text files from <code>CRLF</code> to <code>LF</code> on checkout (for the linux side)</strong> ... i.e. a core.autolf option or something similar?</p>
http://stackoverflow.com/questions/620558/using-markers-and-polylines-with-google-maps-api/620853#6208532Answer by Daniel Beardsley for Using markers and polylines with google maps apiDaniel Beardsley2009-03-06T23:21:00Z2009-03-06T23:21:00Z<p>Not sure what you mean by layers, but check the docs.</p>
<p><a href="http://code.google.com/apis/maps/documentation/reference.html" rel="nofollow">Google Maps API Docs</a> Sepcifically, look at GPolyline.hide();</p>
http://stackoverflow.com/questions/519572/return-first-match-of-ruby-regex4Return first match of Ruby regexDaniel Beardsley2009-02-06T08:42:21Z2009-02-06T13:25:31Z
<p>I'm looking for a way to perform a regex match on a string in Ruby and have it short-circuit on the first match.</p>
<p>The string I'm processing is long and from what it looks like the standard way (<code>match</code> method) would process the whole thing, collect each match, and return a MatchData object containing all matches.</p>
<pre><code>match = string.match(/regex/)[0].to_s
</code></pre>
http://stackoverflow.com/questions/412771/cleanest-way-to-create-a-hash-from-an-array2Cleanest way to create a Hash from an ArrayDaniel Beardsley2009-01-05T10:44:27Z2009-01-20T10:24:00Z
<p>I seem to run into this very often. I need to build a Hash from an array using an attribute of each object in the array as the key.</p>
<p>Lets say I need a hash of example uses ActiveRecord objecs keyed by their ids
Common way:</p>
<pre><code>ary = [collection of ActiveRecord objects]
hash = ary.inject({}) {|hash, obj| hash[obj.id] = obj }
</code></pre>
<p>Another Way:</p>
<pre><code>ary = [collection of ActiveRecord objects]
hash = Hash[*(ary.map {|obj| [obj.id, obj]}).flatten]
</code></pre>
<p>Dream Way:
I could and might create this myself, but is there anything in Ruby or Rails that will this?</p>
<pre><code>ary = [collection of ActiveRecord objects]
hash = ary.to_hash &:id
#or at least
hash = ary.to_hash {|obj| obj.id}
</code></pre>
http://stackoverflow.com/questions/318850/private-module-methods-in-ruby0Private module methods in RubyDaniel Beardsley2008-11-25T21:01:48Z2009-01-08T15:11:19Z
<p>I have a two part question</p>
<p><strong>Best-Practice</strong></p>
<ul>
<li>I have an algorithm that performs some operation on a data structure using the public interface</li>
<li>It is currently a module with numerous static methods, all private except for the one public interface method.</li>
<li>There is one instance instance variable that needs to be shared among all the methods.</li>
</ul>
<p>These are the options I can see, which is the best?:</p>
<ul>
<li><strong>Module</strong> with static ('module' in ruby) methods </li>
<li><strong>Class</strong> with static methods</li>
<li><strong>Mixin</strong> module for inclusion into the data structure</li>
<li><strong>Refactor</strong> out the part of the algorithm that modifies that data structure (very small) and make that a mixin that calls the static methods of the algorithm module</li>
</ul>
<p><strong>Technical part</strong></p>
<p>Is there any way to make a <strong>private Module method</strong>?</p>
<pre><code>module Thing
def self.pub; puts "Public method"; end
private
def self.priv; puts "Private method"; end
end
</code></pre>
<p><strong>The <code>private</code> in there doesn't seem to have any effect</strong>, I can still call <code>Thing.priv</code> without issue.</p>
http://stackoverflow.com/questions/196857/which-subversion-web-interfaces-have-a-blame-feature3Which Subversion web interfaces have a blame feature?Daniel Beardsley2008-10-13T06:34:57Z2009-01-06T21:25:51Z
<p>I'm looking for a <strong>subversion web client</strong> ala <a href="http://search.cpan.org/dist/SVN-Web/" rel="nofollow">SVN::Web</a> but with a very specific feature I've always thought would be quite useful.</p>
<p>What I want is the ability to find <strong>which revision was responsible for a certain line</strong> (or lines) in a text file. A way to do this via the web would be fantastic.</p>
<p>Anybody know of such a tool?</p>
http://stackoverflow.com/questions/385912/ruby-object-toa-replacement1Ruby: Object.to_a replacementDaniel Beardsley2008-12-22T10:06:09Z2008-12-22T16:41:24Z
<p>I need to convert a passed in argument (single object or collection) to an Array. I don't know what the argument is. If it is an Array already, I want to leave it, otherwise create a one-element array from it. I'm looking to <strong>allow both <code>method(:objs => obj)</code> and <code>method(:objs => [obj1, obj2])</code></strong></p>
<p>This seems to be the best way (Array.to_a returns self):</p>
<pre><code>arg = arg.to_a
</code></pre>
<p>But the ruby docs say <strong><code>Object.to_a</code> will soon be obsolete</strong>. Is there convenient replacement?</p>
<p>Anything more succinct than this?</p>
<pre><code>arg = arg.respond_to?(:to_a) ? arg.to_a : [arg]
</code></pre>
http://stackoverflow.com/questions/383104/assertion-messages-assume-failure-or-assume-success2Assertion messages: assume failure, or assume successDaniel Beardsley2008-12-20T08:40:22Z2008-12-20T16:21:48Z
<p>When testing in any language, how does everybody <strong>phrase their assertion messages</strong>?</p>
<p>I see three obvious ways:</p>
<pre><code># assume failure
assert (4-2) == 2, "Subtracting 2 from 4 doesn't equal 2"
# describe success
assert (4-2) == 2, "Subtracting 2 from 4 should equal 2"
# be vauge with failure
assert (4-2) == 2, "Subtracting 2 from 4 is broken"
</code></pre>
<p>This is obviously a simple example, but you get the idea. What is the standard practice? What do you do? Why?</p>
http://stackoverflow.com/questions/328692/how-do-i-pass-a-string-to-a-hasmany-findersql-parameter/329583#3295831Answer by Daniel Beardsley for How do I pass a string to a has_many :finder_sql parameter?Daniel Beardsley2008-11-30T23:20:48Z2008-11-30T23:20:48Z<p>I think you want the <code>:primary_key</code> option to <code>has_many</code>. It allows you to specify the column on the current Table who's value is stored in the <code>:foriegn_key</code> column on the other table.</p>
<pre><code>has_many :tickets, :foreign_key => "user_login", :primary_key => "login"
</code></pre>
<p>I found this by reading the <a href="http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#M001599" rel="nofollow">has_many</a> docs.</p>
http://stackoverflow.com/questions/291270/rails-windows/291372#2913721Answer by Daniel Beardsley for Rails & WindowsDaniel Beardsley2008-11-14T20:54:53Z2008-11-14T20:54:53Z<p>I've used Aptana Studio with RadRails for a while now and have become quite used to it. I remember it requiring a little effort to get running smoothly, but I still develop several apps (large and small) using the IDE and the WebRick server that comes with it. It's not the most stable platform, but hard work is being put into it, and it improves with every release. It's pretty nice to have real debugging around when you need it. I've found it a very useful tool and would recommend sticking with it.</p>
<p>For development I use MySQL and PostgreSQL on Windows XP. I tried to use SQLLite for a new project recently... but after a few frustrating problems, I just went back to MySQL.</p>
<p>I have not tried Netbeans.</p>
http://stackoverflow.com/questions/261219/class-variables-in-javascript/261568#2615683Answer by Daniel Beardsley for Class Variables in JavascriptDaniel Beardsley2008-11-04T11:24:10Z2008-11-04T11:24:10Z<p><strong>Static (class level) variables can be done like this</strong>:</p>
<pre><code>function classA(){
//initialize
}
classA.prototype.method1 = function(){
//accessible from anywhere
classA.static_var = 1;
//accessible only from THIS object
this.instance_var = 2;
}
classA.static_var = 1; //This is the same variable that is accessed in method1()
</code></pre>
<p>Your output seems strange <strong>because of the way javascript handles prototypes</strong>. Calling any method / retreiving a variable of an instantiated object <strong>checks the instance first, THEN the prototype</strong>. i.e.</p>
<pre><code>var a = new classA();
classA.prototype.stat = 1;
// checks a.stat which is undefined, then checks classA.prototype.stat which has a value
alert(a.stat); // (a.stat = undefined, a.prototype.stat = 1)
// after this a.stat will not check the prototype because it is defined in the object.
a.stat = 5; // (a.stat = 5, a.prototype.stat = 1)
// this is essentially a.stat = a.stat + 1;
a.stat++; // (a.stat = 6, a.prototype.stat = 1)
</code></pre>
http://stackoverflow.com/questions/255969/in-rubys-testunittestcase-how-do-i-override-the-initialize-method/256104#2561041Answer by Daniel Beardsley for In Ruby's Test::Unit::TestCase, how do I override the initialize method?Daniel Beardsley2008-11-01T21:02:31Z2008-11-01T21:02:31Z<p>I came across this exact problem and created a subclass of <code>Test::Unit::TestCase</code> for doing exactly what you describe.</p>
<p>Here's what I came up with. It provides it's own <code>setup</code> and <code>teardown</code> methods that count the number of methods in the class that begin with 'test'. On the first call to <code>setup</code> it calls <code>global_setup</code> and on the last call to <code>teardown</code> it calls <code>global_teardown</code></p>
<pre><code>class ImprovedUnitTestCase < Test::Unit::TestCase
cattr_accessor :expected_test_count
def self.global_setup; end
def self.global_teardown; end
def teardown
if((self.class.expected_test_count-=1) == 0)
self.class.global_teardown
end
end
def setup
cls = self.class
if(not cls.expected_test_count)
cls.expected_test_count = (cls.instance_methods.reject{|method| method[0..3] != 'test'}).length
cls.global_setup
end
end
end
</code></pre>
<p>Create your test cases like this:</p>
<pre><code>class TestSomething < ImprovedUnitTestCase
def self.global_setup
puts 'global_setup is only run once at the beginning'
end
def self.global_teardown
puts 'global_teardown is only run once at the end'
end
def test_1
end
def test_2
end
end
</code></pre>
<p>The fault in this is that you can't provide your own per-test <code>setup</code> and <code>teardown</code> methods unless you use the <code>setup :method_name</code> class method (only available in Rails 2.X?) and if you have a test suite or something that only runs one of the test methods, then the <code>global_teardown</code> won't be called because it assumes that all the test methods will be run eventually.</p>
http://stackoverflow.com/questions/249797/how-to-i-dynamically-set-the-expiry-time-for-a-cookie-based-session-in-rails/251123#2511231Answer by Daniel Beardsley for How to I dynamically set the expiry time for a cookie-based session in RailsDaniel Beardsley2008-10-30T17:54:22Z2008-10-30T17:54:22Z<p>Ideally, you'd want to add something like this to environment.rb:</p>
<pre><code>session :session_expires => 1.day.from_now
</code></pre>
<p>But that won't work because the code is only run once when the APP is started and thus the next day all your sessions are being created with an expiration in the past.</p>
<p>I usually set the <code>session_expires</code> to some time far in the future (6 months). Then manually set and check a <code>session[:expires]</code> date in a <code>before_filter</code> on my application controller and reset the session when that date has passed.</p>
<p>This makes it VERY easy to add a 'Keep me logged in for ___' option when signing in, you just set <code>session[:expires] = Time.now + ___</code></p>
http://stackoverflow.com/questions/250550/capistrano-how-to-include-common-settings-in-multiple-project-deploy-rb-files/250985#2509850Answer by Daniel Beardsley for Capistrano: How to Include common settings in multiple project deploy.rb filesDaniel Beardsley2008-10-30T17:15:16Z2008-10-30T17:15:16Z<p>Jon has it right, that's the simplest way to go, just save it in a separate file and use <code>require 'filename'</code>. You could also use something fancy like <a href="http://labs.peritor.com/webistrano" rel="nofollow">Webistrano</a> for deployment which also supports this in the form of Capistrano '<a href="http://labs.peritor.com/webistrano/wiki/Screencasts" rel="nofollow">Recipes</a>'. I've been using it for a while on a few projects and have come to love it.</p>
http://stackoverflow.com/questions/247483/http-get-request-in-javascript/249239#2492390Answer by Daniel Beardsley for HTTP GET request in Javascript?Daniel Beardsley2008-10-30T04:03:53Z2008-10-30T04:03:53Z<p>I'm not familiar with Mac OS Dashcode Widgets, but if they let you use javascript libraries and support XMLHTTPRequests, I'd use <a href="http://docs.jquery.com/Ajax/jQuery.get#examples" rel="nofollow">jQuery</a> and do something like this:</p>
<pre><code>var page_content;
$.get( "somepage.php", function(data){
page_content = data;
});
</code></pre>
http://stackoverflow.com/questions/242406/send-emails-via-gmail-from-different-accounts/244343#2443431Answer by Daniel Beardsley for Send emails via gmail from different accountsDaniel Beardsley2008-10-28T18:36:30Z2008-10-28T18:36:30Z<p>I can't verify that this works right now, but you should try just modifying these settings on the fly. i.e. set the username / password from the users account right before sending an email. You could even setup a before filter on your controller to load that info.</p>
<pre><code>before_filter :load_email_settings
def load_email_settings
ActionMailer::Base.server_settings.merge!(:user_name => current_user.email, :password => current_user.email_password)
end
def current_user
@current_user ||= User.find(session[:user_id])
end
</code></pre>
<p>Note that storing the users email password as plaintext is pretty dangerous, I don't know if there is any way to do what you want using Googles Account's <a href="http://code.google.com/apis/accounts/docs/AuthForWebApps.html" rel="nofollow">third party authentication</a> scheme but you might want to check that out.</p>
http://stackoverflow.com/questions/238684/subtract-n-hours-from-a-datetime-in-ruby/239119#2391193Answer by Daniel Beardsley for Subtract n hours from a DateTime in RubyDaniel Beardsley2008-10-27T04:57:57Z2008-10-27T04:57:57Z<p>You could do this.</p>
<pre><code>adjusted_datetime = (datetime_from_form.to_time - n.hours).to_datetime
</code></pre>
http://stackoverflow.com/questions/227973/rails-testing-fixtures-factories-and-magic-numbers2Rails Testing: Fixtures, Factories, and Magic numbersDaniel Beardsley2008-10-22T23:58:42Z2008-10-25T17:37:47Z
<p>I've got an application that needs quite a bit of data (1000s of records) to do appropriate testing. The only way I've found to get a decent set of testable, sensible data is to use a <strong>subset of my production DB</strong>. I've converted this to YAML fixtures in the normal `test/fixtures' location.</p>
<p>This works, but now I have a bunch of seemingly brittle tests and assertions that depend on their being a particular number of records that meet condition X...</p>
<p>example</p>
<pre><code>def test_children_association
p = Parent.find(1)
assert_equal 18, p.children.count, "Parent.children isn't providing the right records"
end
</code></pre>
<p>This doesn't seem like a good idea to me, but <strong>I'm not sure if there is a better / accepted way</strong> to test an application that needs a large hierarchy of data.</p>
http://stackoverflow.com/questions/227973/rails-testing-fixtures-factories-and-magic-numbers/236700#2367000Answer by Daniel Beardsley for Rails Testing: Fixtures, Factories, and Magic numbersDaniel Beardsley2008-10-25T17:06:41Z2008-10-25T17:06:41Z<p>I may have a unique situation here, but I really did need quite a few records for testing this app (I got it down to 150 or so). I'm analyzing historical data and have numerous levels of <code>has_many</code>. Some of my methods do custom SQL queries across several tables which I might end up modifying to use <code>ActiveRecord.find</code> but I needed to get the test running first.</p>
<p>Anyway, I ended up using some <strong>ruby code to create the fixtures</strong>. The code is included in my <code>test_helper</code>; it checks the test DB to see if the data is stale (based on a time condition) and wipes and <strong>recreates the records procedurally</strong>. In this case, creating it procedurally allows me to know what the data I'm testing for <em>SHOULD</em> be, which is <strong>safer than using a subset of production data</strong> and hoping the numbers I calculate the first time are what I should test for in the future.</p>
<p>I also moved to using <a href="http://www.thoughtbot.com/projects/shoulda/" rel="nofollow">Shoulda</a> which along with many other useful things makes ActiveRecord Association testing as easy as:</p>
<pre><code>should_have_many :children
should_belong_to :parent
</code></pre>
http://stackoverflow.com/questions/231390/installing-a-rails-plugin-from-a-git-repository2Installing a rails plugin from a Git repositoryDaniel Beardsley2008-10-23T20:34:04Z2008-10-24T18:59:31Z
<p>I've been trying to install <a href="http://thoughtbot.com/projects/shoulda" rel="nofollow">Shoulda</a></p>
<pre><code>script/plugin install git://github.com/thoughtbot/shoulda.git
</code></pre>
<p>but all I get is:</p>
<pre><code>removing: C:/Documents and Settings/Danny/My Documents/Projects/Ruby On Rails/_ProjectName_/vendor/plugins/shoulda/.git
>
</code></pre>
<p>And the <code>vender/plugins</code> directory is empty. I have Rails 2.1.1 installed as a gem and have verified that 2.1.1 is loaded (using a puts inserted into config/boot.rb). Any ideas about what's going on?</p>
<p>(this is on a windows box)</p>
http://stackoverflow.com/questions/192976/how-to-simplify-reduce-number-of-points-in-kml/228776#2287760Answer by Daniel Beardsley for How to simplify (reduce number of points) in KML?Daniel Beardsley2008-10-23T06:55:56Z2008-10-23T06:55:56Z<p>I needed a solution to your #2 question a little bit ago and after looking at a few of the available line-simplification algorithms, I created my own.</p>
<p>The process is simple and it seems to work well, though it can be a bit slow if you don't implement it correctly:</p>
<p><strong><code>P[0..n]</code></strong> is your array of points
Let <strong><code>T[n]</code></strong> be defined as the triangle formed by points <strong><code>P[n-1], P[n], P[n+1]</code></strong>
<strong><code>Max</code></strong> is the number of points you are trying to reduce this line to. </p>
<ol>
<li>Calculate the area of every possible triangle <code>T[1..n-1]</code> in the set.</li>
<li>Choose the triangle <code>T[i]</code> with the smallest area</li>
<li>Remove the point <code>P[i]</code> to essentially flatten the triangle</li>
<li>Recalculate the area of the affected triangles <code>T[n-1], T[n+1]</code></li>
<li>Go To Step #2 if the number of points > <code>Max</code></li>
</ol>
http://stackoverflow.com/questions/226980/google-maps-api-gmarker-openinfowindowhtml-stopped-working/228719#2287191Answer by Daniel Beardsley for Google Maps API - GMarker.openInfoWindowHtml() stopped workingDaniel Beardsley2008-10-23T06:27:02Z2008-10-23T06:27:02Z<p>I've had random problems with Google Maps API at times and more than once it has been fixed by going back one API version. i.e. if your google maps API javascript inclusion string is like this <code>http://maps.google.com/maps?file=api&v=2.xd&key=XXXXX</code>
change the <strong>2.x</strong> to something a few versions back (back when it was working) like <strong>2.132</strong> or something</p>
http://stackoverflow.com/questions/223984/automatic-method-to-set-the-tabindex-using-form-helpers/224808#2248087Answer by Daniel Beardsley for Automatic method to set the tabindex using form helpers.Daniel Beardsley2008-10-22T08:08:26Z2008-10-22T08:08:26Z<p>I usually add a method like this to <code>ApplicationHelper</code></p>
<pre><code>def autotab
@current_tab ||= 0
@current_tab += 1
end
</code></pre>
<p>Then in my views I make calls to the helper with a <code>:tabindex => autotab</code> like so:</p>
<pre><code><%= text_field "post", "login",:tabindex => autotab, :value => @login %>
</code></pre>
<p>You can also modify all the <code>text_field</code>, <code>check_box</code>, methods one at a time to add the tabindex automatically, by adding something like this to your application helper: (untested but you get the point)</p>
<pre><code>def text_field_with_tabindex(*args)
options = args.last
options[:tabindex] = autotab if options.is_a?(Hash) && options[:tabindex].nil?
text_field_without_tabindex(*args)
end
def self.included(base)
base.class_eval do
alias_method_chain :text_field, :tabindex
end
end
</code></pre>
<p>That might be more trouble than it's worth</p>
http://stackoverflow.com/questions/221320/standard-file-naming-conventions-in-ruby/221391#2213914Answer by Daniel Beardsley for Standard File Naming Conventions in RubyDaniel Beardsley2008-10-21T10:25:28Z2008-10-21T10:25:28Z<p>With just <a href="http://www.ruby-lang.org" rel="nofollow">Ruby</a> (i.e. not Rails), naming is only a convention. In <a href="http://rubyonrails.org" rel="nofollow">Rails</a> the <a href="http://itsignals.cascadia.com.au/?p=7" rel="nofollow">convention</a> is necessary (almost).</p>
<p>I think convention #2 <code>lowercase_and_underscore.rb</code> is more common and looks pretty good, though an article <a href="http://rails.learnhub.com/lesson/page/5028-ruby-coding-convention" rel="nofollow">Here</a> says <code>lowercasenounderscore.rb</code> is the Ruby convention.</p>
<p><strong>Pick either</strong> which ever convention is more common or which ever one you like more. The most important thing is to <strong>be consistent within a project</strong>.</p>
http://stackoverflow.com/questions/840056/showing-page-load-progress-with-javascriptComment by Daniel Beardsley on Showing page load progress with JavaScriptDaniel Beardsley2009-05-09T00:07:45Z2009-05-09T00:07:45ZIf the server does not need to process the file after it downloads, why not just offer the client the download link that the server uses?http://stackoverflow.com/questions/840781/easiest-way-to-find-duplicate-values-in-a-javascript-array/842326#842326Comment by Daniel Beardsley on Easiest way to find duplicate values in a javascript arrayDaniel Beardsley2009-05-09T00:03:10Z2009-05-09T00:03:10ZI verified this BTW and it works.http://stackoverflow.com/questions/519572/return-first-match-of-ruby-regex/519593#519593Comment by Daniel Beardsley on Return first match of Ruby regexDaniel Beardsley2009-02-06T12:17:34Z2009-02-06T12:17:34ZAfter some benchmarking with various length strings and looking at the C source, it turns out Regex.match does short-circuit and only finds the first match.http://stackoverflow.com/questions/451425/jquery-1-3-upgrade-considerations/451956#451956Comment by Daniel Beardsley on JQuery 1.3 upgrade considerationsDaniel Beardsley2009-01-16T20:56:10Z2009-01-16T20:56:10ZMaybe you should try $("ul:not('.whatever') a"); The nested single quotes is a syntax error.http://stackoverflow.com/questions/446244/are-crlf-lines-ok-in-a-rails-project-deployed-on-linuxComment by Daniel Beardsley on Are CRLF lines ok in a Rails project deployed on Linux?Daniel Beardsley2009-01-16T09:55:41Z2009-01-16T09:55:41ZSuch as subversion AND Git. Seems Git uses only LF internally, so CR is just part of the text, if it changes, the line is changed. I wouldn't loose the edit history, but diffing a file across that line-changing-commit would show the whole file as being changed.http://stackoverflow.com/questions/438163/whats-the-best-web-interface-for-git-repositories/438217#438217Comment by Daniel Beardsley on What's the best Web interface for Git repositories?Daniel Beardsley2009-01-13T09:08:07Z2009-01-13T09:08:07ZWoah... crazy. Not sure how it works though, I added my git repo to Warehouse and I'm getting errors. The logs look like it's still trying to access it as a subversion repo.http://stackoverflow.com/questions/318850/private-module-methods-in-ruby/424569#424569Comment by Daniel Beardsley on Private module methods in RubyDaniel Beardsley2009-01-13T06:36:21Z2009-01-13T06:36:21ZThis makes sense.http://stackoverflow.com/questions/412771/cleanest-way-to-create-a-hash-from-an-array/412940#412940Comment by Daniel Beardsley on Cleanest way to create a Hash from an ArrayDaniel Beardsley2009-01-05T19:59:21Z2009-01-05T19:59:21Zhooray for Railshttp://stackoverflow.com/questions/383104/assertion-messages-assume-failure-or-assume-success/383108#383108Comment by Daniel Beardsley on Assertion messages: assume failure, or assume successDaniel Beardsley2008-12-23T11:04:46Z2008-12-23T11:04:46Zruby doesn't print the expression, only the line #. But not thinking too much about the message certainly allows me to write more tests.http://stackoverflow.com/questions/385912/ruby-object-toa-replacement/386705#386705Comment by Daniel Beardsley on Ruby: Object.to_a replacementDaniel Beardsley2008-12-22T19:18:22Z2008-12-22T19:18:22ZPerfect! Exactly what I was looking for.http://stackoverflow.com/questions/383927/apache-giving-a-400-error-on-a-fastcgi-virtualhost/385137#385137Comment by Daniel Beardsley on Apache giving a 400 Error on a FastCGI VirtualHostDaniel Beardsley2008-12-22T11:20:23Z2008-12-22T11:20:23ZOh, and yeah, dispatch.fcgi still executes fine from the command linehttp://stackoverflow.com/questions/385912/ruby-object-toa-replacement/385937#385937Comment by Daniel Beardsley on Ruby: Object.to_a replacementDaniel Beardsley2008-12-22T11:03:40Z2008-12-22T11:03:40ZNot exactly what I was looking for, and Hash.new(obj).to_a always returns [].http://stackoverflow.com/questions/385912/ruby-object-toa-replacement/385932#385932Comment by Daniel Beardsley on Ruby: Object.to_a replacementDaniel Beardsley2008-12-22T10:54:34Z2008-12-22T10:54:34ZThe point is that I don't know what the argument is. If it is an array already, I want to leave it, otherwise create a one-element array. http://stackoverflow.com/questions/383927/apache-giving-a-400-error-on-a-fastcgi-virtualhost/385137#385137Comment by Daniel Beardsley on Apache giving a 400 Error on a FastCGI VirtualHostDaniel Beardsley2008-12-22T08:39:46Z2008-12-22T08:39:46ZThanks for trying. I changed the LogLevel, but the error log is empty and the access log is normal because Apache doesn't treat it as an error I think.
It's in ruby, and yeah, the dispatch.fcgi is executable and readable by everyone. http://stackoverflow.com/questions/383927/apache-giving-a-400-error-on-a-fastcgi-virtualhost/384105#384105Comment by Daniel Beardsley on Apache giving a 400 Error on a FastCGI VirtualHostDaniel Beardsley2008-12-21T07:04:58Z2008-12-21T07:04:58ZThey were very informative and I did have some stuff wrong. The rewriting is working correctly now, but I'm still getting a 400 error. rewrite logs: RewriteCond: input='/path/to/app/public/' pattern='!-f' => matched
rewrite '/' -> 'dispatch.fcgi'
local path result: dispatch.fcgi