User Scott - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:14:41Z http://stackoverflow.com/feeds/user/7399 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1752461/history-not-saving 1 History not saving Scott 2009-11-17T22:55:40Z 2009-11-17T22:57:50Z <p>Why is my irb history no longer saving?</p> http://stackoverflow.com/questions/1752461/history-not-saving/1752470#1752470 1 Answer by Scott for History not saving Scott 2009-11-17T22:57:50Z 2009-11-17T22:57:50Z <p>It turns out that ruby 1.8.7 introduced a bug whereby finalizers are no longer guaranteed to run.</p> <p>To resolve this, I added the following code snippet to my .irbrc file:</p> <pre><code>require 'irb/ext/save-history' Kernel.at_exit do IRB::HistorySavingAbility.create_finalizer.call(IRB.CurrentContext.instance_variable_get(:@io).send(:binding)) end </code></pre> http://stackoverflow.com/questions/269840/is-it-possible-to-change-headers-on-an-s3-object-without-downloading-the-entire-o 3 Is it possible to change headers on an S3 object without downloading the entire object. Scott 2008-11-06T18:48:40Z 2009-10-27T12:48:46Z <p>I've uploaded a bunch of images to Amazon S3, and now want to add a Cache-Control header to them. </p> <p>Can the header be updated without downloading the entire image? If so, how?</p> http://stackoverflow.com/questions/1499773/ruby-on-rails-master-slave-postrgres-databases/1585315#1585315 0 Answer by Scott for Ruby On Rails Master-Slave Postrgres Databases Scott 2009-10-18T16:26:37Z 2009-10-18T16:26:37Z <p>We used Slony and Masochism, but switched to <a href="http://wiki.postgresql.org/wiki/Londiste%5FTutorial" rel="nofollow">Londiste</a> and <a href="http://github.com/fiveruns/data%5Ffabric" rel="nofollow">DataFabric</a> and haven't looked back.</p> http://stackoverflow.com/questions/1580558/how-do-you-skip-parts-of-an-activity-stack-when-returning-results-in-android/1582600#1582600 1 Answer by Scott for How do you skip parts of an Activity stack when returning results in Android? Scott 2009-10-17T16:29:19Z 2009-10-17T16:29:19Z <p>I recommend just invoking the activities (not using the *ForResult) calls, then having activity D invoke Activity A with an INTENT_ADD_ITEM with data, then have Activity A add the item.</p> <p>Hope this helps...</p> http://stackoverflow.com/questions/1528412/how-can-i-check-whether-a-parameter-isa-symbol/1531872#1531872 0 Answer by Scott for How can I check whether a parameter isa Symbol? Scott 2009-10-07T14:08:53Z 2009-10-07T14:08:53Z <p>Another solution</p> <pre><code>def foo(arg) case arg when Symbol do symbol stuff when String do string stuff else do error stuff end end </code></pre> http://stackoverflow.com/questions/1516173/edit-application-database-in-android/1516480#1516480 0 Answer by Scott for Edit application database in android Scott 2009-10-04T14:02:21Z 2009-10-04T14:02:21Z <p>I'm new to android programming, but shouldn't you be able to send an ALTER TABLE command to SQLite via the connection?</p> http://stackoverflow.com/questions/1457803/how-do-i-access-androidlabel-for-an-activity 0 How do I access android:label for an Activity Scott 2009-09-22T02:04:29Z 2009-09-22T05:57:19Z <p>Given</p> <p>Android.xml:</p> <pre><code>&lt;activity android:name='.IconListActivity' android:label='@string/icon_list_activity_name' /&gt; </code></pre> <p>Strings.xml:</p> <pre><code>&lt;string name='icon_list_activity_name&gt;Icon List&lt;/string&gt; </code></pre> <p>How do I access to the string <em>'Icon List'</em> given <em>IconListActivity.class</em>?</p> http://stackoverflow.com/questions/1268279/use-local-git-repository-with-a-master-subversion-repository/1272374#1272374 1 Answer by Scott for Use local Git repository with a master Subversion repository. Scott 2009-08-13T14:38:40Z 2009-08-13T14:38:40Z <p>One solution I would try is:</p> <ol> <li>Checkout from central repo using SVN</li> <li>git init to create local repo </li> <li>add .svn to .gitignore</li> <li>git add * to add all files to local repo</li> <li>Do all your intermediate branches/commits/reverts in git.</li> <li>When you're done, commit back to the central repo using SVN.</li> </ol> http://stackoverflow.com/questions/1268289/how-to-get-rid-of-non-ascii-characters-in-ruby/1272311#1272311 0 Answer by Scott for How to get rid of non-ascii characters in ruby Scott 2009-08-13T14:27:34Z 2009-08-13T14:27:34Z <p>Here's my suggestion using Iconv.</p> <pre><code>class String def remove_non_ascii require 'iconv' Iconv.conv('ASCII//IGNORE', 'UTF8', self) end end </code></pre> http://stackoverflow.com/questions/1204438/how-can-i-make-this-massive-ruby-if-elsif-statement-more-compact-and-cleaner/1207091#1207091 1 Answer by Scott for How can I make this massive Ruby if/elsif statement more compact and cleaner? Scott 2009-07-30T14:46:24Z 2009-07-30T14:46:24Z <p>Here's a snipped demonstrating how I would do it:</p> <pre><code>ret = [] ret &lt;&lt; "&lt;p class='birthinfo'&gt;#{name}" ret &lt;&lt; "was born on #{birthdate.strftime("%A, %B %e, %Y")}" unless birthdate.blank? ret &lt;&lt; "in #{location}." unless location.blank? ret &lt;&lt; sex ret &lt;&lt; "passed away on #{death.strftime("%B %e, %Y")}" unless death.blank? ret &lt;&lt; "at the age of #{calculate_age(birthdate, death)}" ret &lt;&lt; "#{sex} was a member of #{link_to user.login, profile_path(user.permalink)}'s family" ret &lt;&lt; 'for #{distance_of_time_in_words(joined,death)}" unless joined.blank? || death.blank? ret &lt;&lt; '.&lt;/p&gt;' ret.join(' ') </code></pre> http://stackoverflow.com/questions/1183769/git-status-takes-a-long-time-to-complete/1185548#1185548 2 Answer by Scott for git status takes a long time to complete Scott 2009-07-26T21:06:06Z 2009-07-26T21:06:06Z <p>Have you tried <em>git gc</em>? This cleans cruft out of the git repo.</p> http://stackoverflow.com/questions/1168017/how-do-i-store-an-instance-variable-across-multiple-actions-in-a-controller/1172096#1172096 0 Answer by Scott for How do I store an instance variable across multiple actions in a controller? Scott 2009-07-23T14:21:15Z 2009-07-23T14:21:15Z <p>If it's a simple count or string, I think the best solution is to store it in the session. That way it will be there if you are using multiple web servers.</p> <p>Why are you against using a session for this?</p> http://stackoverflow.com/questions/276381/make-recommendations-on-building-or-setting-up-an-rrd-tool-based-web-app-for-we/1161770#1161770 0 Answer by Scott for Make recommendations on building (or setting up) an RRD Tool based web app for website monitoring that is simpler than Cacti? Scott 2009-07-21T21:08:25Z 2009-07-21T21:08:25Z <p>We use gmond and ganglia.</p> http://stackoverflow.com/questions/1118246/rsync-help/1119747#1119747 1 Answer by Scott for Rsync help Scott 2009-07-13T14:23:36Z 2009-07-13T14:23:36Z <p>Here's a script I wrote to backup my linux machine to a USB drive.</p> <pre><code>#!/bin/sh rsync -a \ --progress \ --hard-links \ --whole-file \ --delete \ --delete-after \ --delete-excluded \ --stats \ --filter='- *.log' \ --filter='- /dev' \ --filter='- /boot' \ --filter='- /media/' \ --filter='- /mnt' \ --filter='- /net' \ --filter='- /proc' \ --filter='- /tmp/' \ --filter='- /var/log/' \ / /media/disk/middle-earth </code></pre> <p>The <em>--filter</em> lines exclude files/subdirectories that I don't want to sync.</p> <p>You can use this as a starting point to craft your own.</p> http://stackoverflow.com/questions/1113087/ruby-create-a-gzipped-tar-archive/1113763#1113763 0 Answer by Scott for Ruby: Create A Gzipped Tar Archive Scott 2009-07-11T13:55:03Z 2009-07-11T13:55:03Z <p>If you're running under unix, you could write the files out to disk, then run a system call to tar/gzip them.</p> http://stackoverflow.com/questions/1052239/what-is-a-better-way-to-check-for-a-nil-object-before-calling-a-method-on-it/1053044#1053044 2 Answer by Scott for What is a better way to check for a nil object before calling a method on it? Scott 2009-06-27T15:36:42Z 2009-06-27T15:36:42Z <p>A more generic way to solve this class of problems is to add a try method to Object:</p> <pre><code> ## # @user.name unless @user.nil? # vs # @user.try(:name) # def try(method, *args, &amp;block) return nil unless method return nil if is_a?(NilClass) and [:id, 'id'].include?(method) self.send(method, *args, &amp;block) if respond_to?(method) end </code></pre> <p>I believe ruby 1.9 already has a try method on Object.</p> <p>Then *financial_document.assets.try(:length).to_i* would achieve your desired result. This is because nil.to_i returns 0</p> http://stackoverflow.com/questions/705420/how-do-i-pull-a-remote-tracking-branch-while-in-the-master-branch 1 how do I pull a remote tracking branch while in the master branch Scott 2009-04-01T13:14:05Z 2009-06-24T16:27:36Z <p>I'm in master and I do a git pull, I get a message indicating I need to pull a remote branch.</p> <p>Typically I do a <em>git co [branch]</em> then <em>git pull/rebase</em>.</p> <p>Is there a way to git pull/rebase of [branch] without having to do a <em>git co [branch]</em> first?</p> http://stackoverflow.com/questions/977735/whats-the-best-background-job-management-library-for-rails/981181#981181 0 Answer by Scott for What's the best background job management library for Rails? Scott 2009-06-11T13:46:51Z 2009-06-11T13:46:51Z <p>We've had success with <a href="http://github.com/famoseagle/sweat%5Fshop/" rel="nofollow">Sweat Shop</a></p> http://stackoverflow.com/questions/944107/where-to-put-these-code-in-a-rails-web-application/946919#946919 2 Answer by Scott for Where to put these code in a Rails web application? Scott 2009-06-03T20:09:08Z 2009-06-03T20:09:08Z <p>I'd put it in the Date class</p> <pre><code>class Date def months_between(other) (month - other.month).abs + 12 * (year - other.year).abs + 1 end end </code></pre> http://stackoverflow.com/questions/902458/what-is-the-best-way-to-update-or-replace-an-entire-database-table-on-a-live-ma/904065#904065 1 Answer by Scott for What is the best way to update (or replace) an entire database table on a live machine? Scott 2009-05-24T16:06:45Z 2009-05-24T16:06:45Z <p>We solved this problem by using PostgreSQL's table inheritance/constraints mechanism. You create a trigger that auto-creates sub-tables partitioned based on a date field.</p> <p><a href="http://valgogtech.blogspot.com/2008/04/table-partitioning-automation-triggers.html" rel="nofollow">This</a> article was the source I used.</p> http://stackoverflow.com/questions/696704/how-to-delete-the-temporary-files-automatically-in-ruby-rails/697581#697581 1 Answer by Scott for How to delete the temporary files automatically in ruby-rails? Scott 2009-03-30T15:01:32Z 2009-05-23T15:09:23Z <p>Tempfile will delete files when the object is finalized.</p> <p><a href="http://www.ruby-doc.org/core/classes/Tempfile.html" rel="nofollow">http://www.ruby-doc.org/core/classes/Tempfile.html</a></p> <p>Example:</p> <pre><code>def get_pdf model = Model.find(params[:id]) file = Tempfile.new model.to_pdf(file) send_file file.path, ... end </code></pre> <p>I can provide a better example if you paste your code into your question.</p> http://stackoverflow.com/questions/882070/sorting-an-array-of-objects-in-ruby-by-object-attribute/888059#888059 2 Answer by Scott for Sorting an array of objects in Ruby by object attribute Scott 2009-05-20T13:55:45Z 2009-05-20T13:55:45Z <p>I recommend using sort_by instead:</p> <pre><code>objects.sort_by {|obj| obj.attribute} </code></pre> <p>Especially if attribute may be calculated.</p> http://stackoverflow.com/questions/768322/reusing-ruby-code-across-several-rails-applications/769761#769761 2 Answer by Scott for Reusing Ruby code across several Rails applications Scott 2009-04-20T19:25:53Z 2009-04-20T19:25:53Z <p>My rule of thumb: </p> <p>If it doesn't depend on rails, make it a gem.<br /> If it depends on rails, make it a plugin.</p> http://stackoverflow.com/questions/209495/best-ruby-idiom-for-nil-or-zero/480206#480206 0 Answer by Scott for Best ruby idiom for "nil or zero" Scott 2009-01-26T15:40:32Z 2009-01-26T15:40:32Z <p>Another solution:</p> <pre><code>if val.to_i == 0 # do stuff end </code></pre> http://stackoverflow.com/questions/452824/what-is-the-size-limitation-for-in-and-not-in-in-mysql/453470#453470 0 Answer by Scott for What is the size limitation for IN and NOT IN in MySQL Scott 2009-01-17T15:46:15Z 2009-01-17T15:46:15Z <p>I don't know what the limit is, but I've run into this problem before as well. I had to rewrite my query something like this:</p> <pre><code>select * from foo where id in (select distinct foo_id from bar where ...) </code></pre> http://stackoverflow.com/questions/435916/web-page-load-time-tracking-sites 2 Web page load time tracking sites Scott 2009-01-12T16:13:31Z 2009-01-12T23:49:49Z <p>I want to track and analyze web page load times on my user's systems.</p> <p>I ran across this article <a href="http://www.panalysis.com/tracking-webpage-load-times.php" rel="nofollow">http://www.panalysis.com/tracking-webpage-load-times.php</a> that uses Google analytics to track pages, but it's too coarse for my needs.</p> <p>Are there any sites out there that specifically let you track page load times using a JavaScript snippet you embed in your web pages?</p> <p>Ideally the snippet would look like this:</p> <pre><code>var startTime = new Date(); // code to load the tracker window.onload=function() { loadTimeTracker.sendData(&lt;customer id&gt;, document.path, new Date() - startTime) } </code></pre> http://stackoverflow.com/questions/427451/how-to-output-names-of-ruby-unit-tests/428435#428435 0 Answer by Scott for How to output names of ruby unit tests Scott 2009-01-09T15:15:30Z 2009-01-09T15:15:30Z <p>If you're testing in rails you can use</p> <pre><code>rake test TESTOPTS=-v </code></pre> http://stackoverflow.com/questions/363871/how-do-you-handle-off-site-backups-of-terabytes-of-data 3 How do you handle off-site backups of terabytes of data? Scott 2008-12-12T19:27:29Z 2008-12-15T16:42:51Z <p>I have terabytes of files and database dumps that I need to backup off-site.</p> <p>What's the best way to accomplish this?</p> <p>I'm currently weighing rsyinc to Amazon EBS or getting an appliance (eg barracuda).</p> <p>I called a buddy of mine, and he said he uses backula to get all the files on a single disk, then backs that disk up to tape, then sends the tapes off to iron mountain.</p> <p>Still waiting to hear back from other sysadmins I've contacted. Will post results here.</p> http://stackoverflow.com/questions/363871/how-do-you-handle-off-site-backups-of-terabytes-of-data/368968#368968 0 Answer by Scott for How do you handle off-site backups of terabytes of data? Scott 2008-12-15T16:42:51Z 2008-12-15T16:42:51Z <p>Over the weekend, I've heard back from a couple of my sysadmin buddies.</p> <p>It seems the best practice is to backup all machines to a central large disk, then back that disk up to tape, then send the tapes off site (all have used Iron Mountain).</p> <p>Tapes hold 400-800G and cost $30-$80 per tape. A tape changer seems to go for $10k on up.</p> <p>Not sure how much the off-site shipping costs.</p> http://stackoverflow.com/questions/1772695/how-do-i-launch-the-email-app-with-the-to-field-pre-filled/1773084#1773084 Comment by Scott on How do I launch the email app with the "to" field pre-filled? Scott 2009-11-21T02:46:35Z 2009-11-21T02:46:35Z What did you use the final keyword? Does that result in some sort of optimization I'm unaware of? http://stackoverflow.com/questions/269840/is-it-possible-to-change-headers-on-an-s3-object-without-downloading-the-entire-o/1630574#1630574 Comment by Scott on Is it possible to change headers on an S3 object without downloading the entire object. Scott 2009-10-28T14:48:38Z 2009-10-28T14:48:38Z Does it do the copy in-place, or do you need to pull it to your machine and push it back to S3? http://stackoverflow.com/questions/1536601/specifying-the-relative-dimension-of-views-in-a-layout-based-on-device-screen-wid/1536886#1536886 Comment by Scott on Specifying the relative dimension of views in a layout based on device screen width/height Scott 2009-10-08T15:44:06Z 2009-10-08T15:44:06Z From the android docs: <a href="http://developer.android.com/guide/topics/ui/layout-objects.html" rel="nofollow">developer.android.com/guide/topics/&hellip;</a> Look for the weight explanation under the LinearLayout section. http://stackoverflow.com/questions/1457803/how-do-i-access-androidlabel-for-an-activity/1458341#1458341 Comment by Scott on How do I access android:label for an Activity Scott 2009-09-23T02:37:43Z 2009-09-23T02:37:43Z Perfect! Exactly what I needed. Thanks! http://stackoverflow.com/questions/1457803/how-do-i-access-androidlabel-for-an-activity Comment by Scott on How do I access android:label for an Activity Scott 2009-09-22T15:46:48Z 2009-09-22T15:46:48Z IconListActivity is an activity I'm writing while teaching myself Android programming. http://stackoverflow.com/questions/1309489/how-can-i-zip-tar-files-on-s3-without-first-copying-them-to-the-server/1309502#1309502 Comment by Scott on How can I zip/tar files on S3 without first copying them to the server? Scott 2009-08-21T14:23:38Z 2009-08-21T14:23:38Z This is because transfers between S3 and EC2 are free. http://stackoverflow.com/questions/89332/recover-dropped-stash-in-git/91795#91795 Comment by Scott on Recover dropped stash in git Scott 2009-07-24T01:07:10Z 2009-07-24T01:07:10Z Just saved my butt too! Thanks! http://stackoverflow.com/questions/1173101/do-i-need-a-server-to-use-git Comment by Scott on Do I need a server to use git? Scott 2009-07-23T19:05:38Z 2009-07-23T19:05:38Z Your question is a bit vague. If you could provide your ideal workflow we may be better able to answer your question. http://stackoverflow.com/questions/1168017/how-do-i-store-an-instance-variable-across-multiple-actions-in-a-controller/1168603#1168603 Comment by Scott on How do I store an instance variable across multiple actions in a controller? Scott 2009-07-23T14:19:51Z 2009-07-23T14:19:51Z Cache is a good idea, but I don't think the flash method will work if you have multiple web servers. http://stackoverflow.com/questions/1161609/in-git-how-can-i-get-the-diff-between-all-the-commits-that-occured-between-two-d/1161629#1161629 Comment by Scott on In git, how can I get the diff between all the commits that occured between two dates? Scott 2009-07-22T14:02:44Z 2009-07-22T14:02:44Z You should make this your chosen answer so seth gets some karma. http://stackoverflow.com/questions/1134752/when-is-a-ruby-class-not-that-ruby-class/1135241#1135241 Comment by Scott on When is a Ruby class not that Ruby class? Scott 2009-07-16T14:45:10Z 2009-07-16T14:45:10Z Is MysqlError being monkey-patched before the gem is loaded? http://stackoverflow.com/questions/995593/what-does-mean-in-ruby/995599#995599 Comment by Scott on What does ||= mean in Ruby? Scott 2009-06-15T14:26:28Z 2009-06-15T14:26:28Z One issue to be aware of is that if x is false y is evaluated. http://stackoverflow.com/questions/970979/what-are-the-differences-between-poll-and-select/970991#970991 Comment by Scott on What are the differences between poll and select? Scott 2009-06-09T19:55:56Z 2009-06-09T19:55:56Z +1 for Richard Stevens http://stackoverflow.com/questions/31537/how-to-throttle-bandwidth-on-a-linux-network-interface/31590#31590 Comment by Scott on how to throttle bandwidth on a linux network interface Scott 2009-04-28T14:50:02Z 2009-04-28T14:50:02Z You may be able to simulate a machine with 2 NICs using a VM. http://stackoverflow.com/questions/705420/how-do-i-pull-a-remote-tracking-branch-while-in-the-master-branch/705551#705551 Comment by Scott on how do I pull a remote tracking branch while in the master branch Scott 2009-04-01T13:47:44Z 2009-04-01T13:47:44Z Aye. I'm lazy, so I just set the rebase=true option for the branch in my .git/config.