User Scott - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T22:14:41Zhttp://stackoverflow.com/feeds/user/7399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1752461/history-not-saving1History not savingScott2009-11-17T22:55:40Z2009-11-17T22:57:50Z
<p>Why is my irb history no longer saving?</p>
http://stackoverflow.com/questions/1752461/history-not-saving/1752470#17524701Answer by Scott for History not savingScott2009-11-17T22:57:50Z2009-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-o3Is it possible to change headers on an S3 object without downloading the entire object.Scott2008-11-06T18:48:40Z2009-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#15853150Answer by Scott for Ruby On Rails Master-Slave Postrgres DatabasesScott2009-10-18T16:26:37Z2009-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#15826001Answer by Scott for How do you skip parts of an Activity stack when returning results in Android?Scott2009-10-17T16:29:19Z2009-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#15318720Answer by Scott for How can I check whether a parameter isa Symbol?Scott2009-10-07T14:08:53Z2009-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#15164800Answer by Scott for Edit application database in androidScott2009-10-04T14:02:21Z2009-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-activity0How do I access android:label for an ActivityScott2009-09-22T02:04:29Z2009-09-22T05:57:19Z
<p>Given</p>
<p>Android.xml:</p>
<pre><code><activity android:name='.IconListActivity'
android:label='@string/icon_list_activity_name'
/>
</code></pre>
<p>Strings.xml:</p>
<pre><code><string name='icon_list_activity_name>Icon List</string>
</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#12723741Answer by Scott for Use local Git repository with a master Subversion repository.Scott2009-08-13T14:38:40Z2009-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#12723110Answer by Scott for How to get rid of non-ascii characters in rubyScott2009-08-13T14:27:34Z2009-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#12070911Answer by Scott for How can I make this massive Ruby if/elsif statement more compact and cleaner?Scott2009-07-30T14:46:24Z2009-07-30T14:46:24Z<p>Here's a snipped demonstrating how I would do it:</p>
<pre><code>ret = []
ret << "<p class='birthinfo'>#{name}"
ret << "was born on #{birthdate.strftime("%A, %B %e, %Y")}" unless birthdate.blank?
ret << "in #{location}." unless location.blank?
ret << sex
ret << "passed away on #{death.strftime("%B %e, %Y")}" unless death.blank?
ret << "at the age of #{calculate_age(birthdate, death)}"
ret << "#{sex} was a member of #{link_to user.login, profile_path(user.permalink)}'s family"
ret << 'for #{distance_of_time_in_words(joined,death)}" unless joined.blank? || death.blank?
ret << '.</p>'
ret.join(' ')
</code></pre>
http://stackoverflow.com/questions/1183769/git-status-takes-a-long-time-to-complete/1185548#11855482Answer by Scott for git status takes a long time to completeScott2009-07-26T21:06:06Z2009-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#11720960Answer by Scott for How do I store an instance variable across multiple actions in a controller?Scott2009-07-23T14:21:15Z2009-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#11617700Answer by Scott for Make recommendations on building (or setting up) an RRD Tool based web app for website monitoring that is simpler than Cacti?Scott2009-07-21T21:08:25Z2009-07-21T21:08:25Z<p>We use gmond and ganglia.</p>
http://stackoverflow.com/questions/1118246/rsync-help/1119747#11197471Answer by Scott for Rsync helpScott2009-07-13T14:23:36Z2009-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#11137630Answer by Scott for Ruby: Create A Gzipped Tar ArchiveScott2009-07-11T13:55:03Z2009-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#10530442Answer by Scott for What is a better way to check for a nil object before calling a method on it?Scott2009-06-27T15:36:42Z2009-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, &block)
return nil unless method
return nil if is_a?(NilClass) and [:id, 'id'].include?(method)
self.send(method, *args, &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-branch1how do I pull a remote tracking branch while in the master branchScott2009-04-01T13:14:05Z2009-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#9811810Answer by Scott for What's the best background job management library for Rails?Scott2009-06-11T13:46:51Z2009-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#9469192Answer by Scott for Where to put these code in a Rails web application?Scott2009-06-03T20:09:08Z2009-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#9040651Answer by Scott for What is the best way to update (or replace) an entire database table on a live machine?Scott2009-05-24T16:06:45Z2009-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#6975811Answer by Scott for How to delete the temporary files automatically in ruby-rails?Scott2009-03-30T15:01:32Z2009-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#8880592Answer by Scott for Sorting an array of objects in Ruby by object attributeScott2009-05-20T13:55:45Z2009-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#7697612Answer by Scott for Reusing Ruby code across several Rails applicationsScott2009-04-20T19:25:53Z2009-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#4802060Answer by Scott for Best ruby idiom for "nil or zero"Scott2009-01-26T15:40:32Z2009-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#4534700Answer by Scott for What is the size limitation for IN and NOT IN in MySQLScott2009-01-17T15:46:15Z2009-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-sites2Web page load time tracking sitesScott2009-01-12T16:13:31Z2009-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(<customer id>, document.path, new Date() - startTime)
}
</code></pre>
http://stackoverflow.com/questions/427451/how-to-output-names-of-ruby-unit-tests/428435#4284350Answer by Scott for How to output names of ruby unit testsScott2009-01-09T15:15:30Z2009-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-data3How do you handle off-site backups of terabytes of data?Scott2008-12-12T19:27:29Z2008-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#3689680Answer by Scott for How do you handle off-site backups of terabytes of data?Scott2008-12-15T16:42:51Z2008-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#1773084Comment by Scott on How do I launch the email app with the "to" field pre-filled?Scott2009-11-21T02:46:35Z2009-11-21T02:46:35ZWhat 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#1630574Comment by Scott on Is it possible to change headers on an S3 object without downloading the entire object.Scott2009-10-28T14:48:38Z2009-10-28T14:48:38ZDoes 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#1536886Comment by Scott on Specifying the relative dimension of views in a layout based on device screen width/heightScott2009-10-08T15:44:06Z2009-10-08T15:44:06ZFrom the android docs: <a href="http://developer.android.com/guide/topics/ui/layout-objects.html" rel="nofollow">developer.android.com/guide/topics/…</a> Look for the weight explanation under the LinearLayout section.http://stackoverflow.com/questions/1457803/how-do-i-access-androidlabel-for-an-activity/1458341#1458341Comment by Scott on How do I access android:label for an ActivityScott2009-09-23T02:37:43Z2009-09-23T02:37:43ZPerfect! Exactly what I needed. Thanks!http://stackoverflow.com/questions/1457803/how-do-i-access-androidlabel-for-an-activityComment by Scott on How do I access android:label for an ActivityScott2009-09-22T15:46:48Z2009-09-22T15:46:48ZIconListActivity 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#1309502Comment by Scott on How can I zip/tar files on S3 without first copying them to the server?Scott2009-08-21T14:23:38Z2009-08-21T14:23:38ZThis is because transfers between S3 and EC2 are free.http://stackoverflow.com/questions/89332/recover-dropped-stash-in-git/91795#91795Comment by Scott on Recover dropped stash in gitScott2009-07-24T01:07:10Z2009-07-24T01:07:10ZJust saved my butt too! Thanks!http://stackoverflow.com/questions/1173101/do-i-need-a-server-to-use-gitComment by Scott on Do I need a server to use git?Scott2009-07-23T19:05:38Z2009-07-23T19:05:38ZYour 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#1168603Comment by Scott on How do I store an instance variable across multiple actions in a controller?Scott2009-07-23T14:19:51Z2009-07-23T14:19:51ZCache 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#1161629Comment by Scott on In git, how can I get the diff between all the commits that occured between two dates?Scott2009-07-22T14:02:44Z2009-07-22T14:02:44ZYou 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#1135241Comment by Scott on When is a Ruby class not that Ruby class?Scott2009-07-16T14:45:10Z2009-07-16T14:45:10ZIs MysqlError being monkey-patched before the gem is loaded?http://stackoverflow.com/questions/995593/what-does-mean-in-ruby/995599#995599Comment by Scott on What does ||= mean in Ruby?Scott2009-06-15T14:26:28Z2009-06-15T14:26:28ZOne 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#970991Comment by Scott on What are the differences between poll and select?Scott2009-06-09T19:55:56Z2009-06-09T19:55:56Z+1 for Richard Stevenshttp://stackoverflow.com/questions/31537/how-to-throttle-bandwidth-on-a-linux-network-interface/31590#31590Comment by Scott on how to throttle bandwidth on a linux network interfaceScott2009-04-28T14:50:02Z2009-04-28T14:50:02ZYou 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#705551Comment by Scott on how do I pull a remote tracking branch while in the master branchScott2009-04-01T13:47:44Z2009-04-01T13:47:44ZAye. I'm lazy, so I just set the rebase=true option for the branch in my .git/config.