User Jason Butler - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:16:46Z http://stackoverflow.com/feeds/user/10461 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1154170/jquery-click-function-not-firing-intermittently 3 JQuery click function not firing intermittently Jason Butler 2009-07-20T15:13:17Z 2009-11-27T10:42:00Z <p>Wow, this one has me tearing my hair out.</p> <p>I'm tracking links in JQuery. </p> <pre><code>$(".hdr a[id]").mousedown(function(e){ var h = this; var url = "/g/click/" + this.id; $.get(url); }); </code></pre> <p>It appears that sometimes the browser beats the ajax call. The new page is loaded before the click tracker is fired. (It's not slow response time; the request doesn't even hit apache). This is intermittent and not readily reproducible, but it tends to appear after the user has been doing a lot on the site.</p> <p>I used preventDefault in an earlier iteration of this, but that ends up breaking cmd-click and doesn't track right-clicks. </p> <p>Is there a way to ensure this will run?</p> <p>Thanks for all your help.</p> http://stackoverflow.com/questions/995492/how-to-trap-open-in-a-new-tab-clicks-in-jquery-click 2 How to trap "open in a new tab" clicks in jquery.click Jason Butler 2009-06-15T10:55:41Z 2009-06-15T11:45:48Z <p>Good morning - </p> <p>I have a jquery script that attaches a click event to every link, running an action when the link is clicked. This has been working great, but I just got some betatester feedback that's foiling me.</p> <p>The user was right-clicking on the link and opening it in a new tab. When she did this, jquery didn't trap the click. BAD USER. I reproduced this with cmd-click as well. </p> <p>Is there a way to trap these gestures, or this an inherent limitation?</p> <p>Thanks for all your help,</p> <p>Jason</p> http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/889675#889675 6 Answer by Jason Butler for How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T19:08:35Z 2009-05-20T23:31:55Z <p>Figured it out. Woo Hoo!</p> <p>Summary: Ruby Enterprise Edition (update, thanks Hongli!) has its own set of gems. Even though I was updating the gem, it wasn't the one that Passenger was reading. </p> <p>Here's how I figured that out:</p> <pre><code>&gt;&gt; /usr$ whereis gem gem: /usr/bin/gem /usr/bin/gem1.8 /opt/ruby-enterprise-1.8.6-20090201/bin/gem &gt;&gt; /usr$ cd /opt/ruby-enterprise-1.8.6-20090201/bin/ &gt;&gt; /opt/ruby-enterprise-1.8.6-20090201/bin$ ls -l total 2624 -rwxr-xr-x 1 root root 3907 2009-03-26 14:47 erb -rwxr-xr-x 1 root root 813 2009-03-26 14:47 gem -rwxr-xr-x 1 root root 349 2009-03-26 14:47 irb -rwxr-xr-x 1 root root 386 2009-03-26 14:47 passenger-config -rwxr-xr-x 1 root root 402 2009-03-26 14:47 passenger-install-apache2-module -rwxr-xr-x 1 root root 396 2009-03-26 14:47 passenger-make-enterprisey -rwxr-xr-x 1 root root 392 2009-03-26 14:47 passenger-memory-stats -rwxr-xr-x 1 root root 392 2009-03-26 14:47 passenger-spawn-server -rwxr-xr-x 1 root root 386 2009-03-26 14:47 passenger-status -rwxr-xr-x 1 root root 391 2009-03-26 14:47 passenger-stress-test -rwxr-xr-x 1 root root 366 2009-03-26 14:47 rackup -rwxr-xr-x 1 root root 367 2009-03-26 14:47 rails -rwxr-xr-x 1 root root 364 2009-03-26 14:47 rake -rwxr-xr-x 1 root root 1560 2009-03-26 14:47 rdoc -rwxr-xr-x 1 root root 64 2009-03-26 14:46 ree-version -rwxr-xr-x 1 root root 1516 2009-03-26 14:47 ri -rwxr-xr-x 1 root root 2609905 2009-03-26 14:46 ruby -rwxr-xr-x 1 root root 178 2009-03-26 14:47 testrb &gt;&gt; /opt/ruby-enterprise-1.8.6-20090201/bin$ ./gem list *** LOCAL GEMS *** actionmailer (2.3.2) actionpack (2.3.2) activerecord (2.3.2) activeresource (2.3.2) activesupport (2.3.2) fastthread (1.0.5) passenger (2.1.2) postgres (0.7.9.2008.01.28) rack (0.9.1) rails (2.3.2) rake (0.8.4) sqlite3-ruby (1.2.4) &gt;&gt; /opt/ruby-enterprise-1.8.6-20090201/bin$ ./gem install mysql Building native extensions. This could take a while... Successfully installed mysql-2.7 1 gem installed </code></pre> <p>Then, I restarted the instance, and it worked.</p> http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production 3 How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T15:45:14Z 2009-05-20T23:31:55Z <p>I've written a rails app that's been running fine for a while without a database. Now, I'm dropping the registration database into the mix. It's not working in production. Everything works fine, of course, on my Mac.</p> <p>Here's the production environment: - Ubuntu Hardy - Phusion Passenger - Rails 2.3.2</p> <p>MySQL on the machine is running fine.</p> <p>I have the database.yml file with the correct information. I can run the migrations with no problems:</p> <pre><code>rake db:migrate RAILS_ENV=production </code></pre> <p>The database is being correctly updated.</p> <p>So, I hit tmp/restart and hit the site. I got the 500 error, but nothing was written to the production log (very odd). So, I checked the apache log, and I got this message:</p> <p>!!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql.</p> <p>I have installed the MySQL gem (version 2.7). I'm still getting this error.</p> <p>When I change the production database configuration to point to a dummy sqlite database, everything works fine. When I change it back to the MySQL configuration, I get the same error message.</p> <p>I'm entirely out of ideas, and I wish that it would just work. I'm pulling my hair out, and I greatly appreciate any help you can provide. I've included everything I could think of, but please let me know if any more information would be useful.</p> <p>Thanks!</p> <p>Jason</p> http://stackoverflow.com/questions/711418/how-to-prevent-browser-page-caching-in-rails 3 How to prevent browser page caching in Rails Jason Butler 2009-04-02T20:13:35Z 2009-05-01T04:24:59Z <p>Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3</p> <p>The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your page. </p> <p>But, if you hit the back button, you don't see the new page. Unfortunately, it's not showing up without a manual refresh; it appears the browser is caching it. I want to make sure the browser does not cache the page.</p> <p>Separately, I <em>do</em> want to set far-future expiration dates for all my static assets.</p> <p>What's the best way to solve this? Should I solve this in Rails? Apache? Javascript?</p> <p>Thanks for all your help, Jason</p> http://stackoverflow.com/questions/711418/how-to-prevent-browser-page-caching-in-rails/748646#748646 1 Answer by Jason Butler for How to prevent browser page caching in Rails Jason Butler 2009-04-14T17:40:01Z 2009-04-14T17:40:01Z <p>Finally figured this out - <a href="http://blog.serendeputy.com/posts/how-to-prevent-browsers-from-caching-a-page-in-rails/" rel="nofollow">http://blog.serendeputy.com/posts/how-to-prevent-browsers-from-caching-a-page-in-rails/</a></p> <p>..in application_controller.rb..</p> <pre><code> before_filter :set_cache_buster def set_cache_buster response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate" response.headers["Pragma"] = "no-cache" response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT" end </code></pre> http://stackoverflow.com/questions/711418/how-to-prevent-browser-page-caching-in-rails/714665#714665 0 Answer by Jason Butler for How to prevent browser page caching in Rails Jason Butler 2009-04-03T16:22:15Z 2009-04-03T16:22:15Z <p>Alas. Neither of these suggestions forced the behavior I'm looking for.</p> <p>Maybe there's a javascript answer? I could have rails write out a timestamp in a comment, then have the javascript check to see if the times are within five seconds (or whatever works). If yes, then fine, but if no, then reload the page? </p> <p>Do you think this would work?</p> <p>Thanks for all your help,</p> <p>Jason</p> http://stackoverflow.com/questions/661684/how-to-ensure-only-one-instance-of-a-ruby-script-is-running-at-a-time 0 How to ensure only one instance of a ruby script is running at a time Jason Butler 2009-03-19T10:30:34Z 2009-03-19T16:36:24Z <p>I have a process that runs on cron every five minutes. Usually, it takes only a few seconds to run, but sometimes it takes several minutes. I want to ensure that only one version of this is running at a time.</p> <p>I tried an obvious way...</p> <pre><code>File.open("/tmp/indexer_lock.tmp",'w') do |f| exit unless f.flock(File::LOCK_EX) end </code></pre> <p>...but it's not testing to see if it can get the lock, it's blocking until the lock is released.</p> <p>Any idea what I'm missing? I'd rather not hack something using ps, but that's an alternative.</p> <p>Thanks for all your help, Jason</p> http://stackoverflow.com/questions/661684/how-to-ensure-only-one-instance-of-a-ruby-script-is-running-at-a-time/661742#661742 1 Answer by Jason Butler for How to ensure only one instance of a ruby script is running at a time Jason Butler 2009-03-19T10:51:30Z 2009-03-19T10:51:30Z <p>Ok, working off notes from @shodanex's pointer, here's what I have. I rubied it up a little bit (though I don't know of a touch analogue in Ruby).</p> <pre><code>tmp_file = File.expand_path(File.dirname(__FILE__)) + "/indexer.lock" if File.exists?(tmp_file) puts "quitting" exit else `touch #{tmp_file}` end .. do stuff .. File.delete(tmp_file) </code></pre> http://stackoverflow.com/questions/349612/simple-jquery-function-works-in-every-browser-but-firefox-what-am-i-missing 0 Simple jQuery function works in every browser but Firefox. What am I missing? Jason Butler 2008-12-08T13:54:29Z 2008-12-27T11:25:22Z <pre><code>$(document).ready(function() { $("span.link").mouseover(function(e){ $(this.children).css("display","inline"); }); }); </code></pre> <p>I'm not a javascript expert, but I've cobbled together a few functions using jQuery. </p> <p>In this case, the stylesheet hides some controls. When the user mouses over, this function exposes those controls. </p> <p>This works on every browser but Firefox (on the Mac and Windows). Am I missing something obvious? </p> <p>Thanks for your help,</p> <p>Jason</p> http://stackoverflow.com/questions/349612/simple-jquery-function-works-in-every-browser-but-firefox-what-am-i-missing/349665#349665 0 Answer by Jason Butler for Simple jQuery function works in every browser but Firefox. What am I missing? Jason Butler 2008-12-08T14:13:34Z 2008-12-08T14:13:34Z <p>Outstanding. That worked. Thank you so much,</p> <p>Jason</p> <p>p.s., I guess I should use Firefox as my browser when developing, if Safari is more forgiving...</p> http://stackoverflow.com/questions/67890/whats-the-best-way-to-hash-a-url-in-ruby 3 What's the best way to hash a url in ruby? Jason Butler 2008-09-15T23:18:36Z 2008-09-16T02:38:13Z <p>I'm writing a web app that points to external links. I'm looking to create a non-sequential, non-guessable id for each document that I can use in the URL. I did the obvious thing: treating the url as a string and str#crypt on it, but that seems to choke on any non-alphanumberic characters, like the slashes, dots and underscores.</p> <p>Any suggestions on the best way to solve this problem?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1154170/jquery-click-function-not-firing-intermittently/1154184#1154184 Comment by Jason Butler on JQuery click function not firing intermittently Jason Butler 2009-07-22T10:43:06Z 2009-07-22T10:43:06Z I ended up doing this, and it seems to have fixed the problem. Thanks! http://stackoverflow.com/questions/995492/how-to-trap-open-in-a-new-tab-clicks-in-jquery-click/995610#995610 Comment by Jason Butler on How to trap "open in a new tab" clicks in jquery.click Jason Butler 2009-07-16T14:51:17Z 2009-07-16T14:51:17Z I ended up going this way. This captures all the clicks, which is exactly what I wanted. It also ended up simplifying the rest of the code. Thank you! http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/890111#890111 Comment by Jason Butler on How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T23:29:23Z 2009-05-20T23:29:23Z Thanks! Good to know. I'm a product manager by trade, so I was doing a bit of voodoo debugging. I hope someone in the future finds this helpful. http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/889335#889335 Comment by Jason Butler on How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T18:06:28Z 2009-05-20T18:06:28Z Grr. Can't seem to do linebreaks in the comments. http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/889335#889335 Comment by Jason Butler on How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T18:06:08Z 2009-05-20T18:06:08Z Thanks for the response! I think I have the paths set up correctly. Are they? $ $PATH -bash: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games: $ whereis mysql mysql: /usr/bin/mysql /etc/mysql /usr/lib/mysql /usr/lib64/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz $ mysql -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 19 Server version: 5.0.51a-3ubuntu5.4 (Ubuntu) http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/888826#888826 Comment by Jason Butler on How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T16:13:21Z 2009-05-20T16:13:21Z Thanks. I just rebuilt the gem (on my Ubuntu system, it's /usr/bin/mysql_config). I'm still getting the same error in the apache log. !!! The bundled mysql.rb driver has been removed from Rails 2.2. Please install the mysql gem and try again: gem install mysql. http://stackoverflow.com/questions/888729/how-to-get-phusion-passenger-mysql-and-rails-to-play-nicely-in-production/888767#888767 Comment by Jason Butler on How to get Phusion Passenger, MySQL and Rails to play nicely in production Jason Butler 2009-05-20T15:58:02Z 2009-05-20T15:58:02Z Yep. I actually installed it as root. Here's the gem list: <b>* LOCAL GEMS *</b> actionmailer (2.3.2) actionpack (2.3.2) activerecord (2.3.2) activeresource (2.3.2) activesupport (2.3.2) builder (2.1.2) configuration (0.0.5) cucumber (0.2.2) diff-lcs (1.1.2) fastthread (1.0.5) feedtools (0.2.29) hoe (1.11.0) launchy (0.3.3) memcache-client (1.7.0) mysql (2.7) passenger (2.1.2) polyglot (0.2.5) rails (2.3.2) rake (0.8.4) rspec (1.2.2) rubyforge (1.0.3) SystemTimer (1.1.1) term-ansicolor (1.0.3) treetop (1.2.5) uuidtools (1.0.7) http://stackoverflow.com/questions/711418/how-to-prevent-browser-page-caching-in-rails/711741#711741 Comment by Jason Butler on How to prevent browser page caching in Rails Jason Butler 2009-04-03T09:54:05Z 2009-04-03T09:54:05Z Thanks. I'll try this today.