User bantic - Stack Overflowmost recent 30 from stackoverflow.com2010-03-22T02:21:23Zhttp://stackoverflow.com/feeds/user/137784http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1255581/is-is-possible-to-move-copy-an-s3-bucket-to-a-different-account0is is possible to move/copy an s3 bucket to a different account?bantichttp://stackoverflow.com/users/1377842009-08-10T15:29:33Z2009-12-06T11:53:27Z
<p>Does Amazon provide a way to copy a bucket from one account to a different account? I am uploading several gb of files to my own bucket for a client app for development purposes, but when handing off the code I'm going to want to switch the bucket to their account (so I am no longer paying for the storage). Uploading is taking quite awhile because there are many small files, and I would like to avoid the same arduous process later, when I move the files into the other bucket.</p>
http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-wo0Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantichttp://stackoverflow.com/users/1377842009-12-01T19:09:13Z2009-12-02T15:52:04Z
<p>I'm getting a result I don't understand in R.</p>
<p>If I use <code>strptime</code> with a year and day formatted %Y-%m (like "2009-12"), I get an NA result. But if I add a day, like "2009-12-01", and change the format string accordingly, I do get a result. Example:</p>
<pre><code>> strptime("2009-12",format="%Y-%m")
[1] NA
> strptime("2009-12-03",format="%Y-%m-%d")
[1] "2009-12-03"
</code></pre>
<p>Why is that?</p>
<p><strong>Update:</strong> The thing I'm curious about is why strptime doesn't parse a year and a month, and the reason it seems weird that it wouldn't do so is because it <strong>does</strong> parse a year only, or a year-and-a-day:</p>
<pre><code>> strptime("2009",format="%Y") # year only. Works. Uses current month and day as defaults.
[1] "2009-12-02"
> strptime("2009-03",format="%Y-%d") # year and day. Works. Uses current month as default.
[1] "2009-12-03"
> strptime("2009-03",format="%Y-%m") # year and month. Doesn't work. ?
[1] NA
</code></pre>
http://stackoverflow.com/questions/1797971/javascript-problem/1798089#17980890Answer by bantic for javascript problembantichttp://stackoverflow.com/users/1377842009-11-25T16:19:18Z2009-11-25T16:19:18Z<p>For sanity's sake, I'd start by adding the missing semicolon to the end of your <code>var myCars</code> line. In some IE browsers, they'll choke in weird ways if you're missing those semicolons.</p>
<p>If all four of the vars fu1-4 have values, then your variable <code>l</code> is going to be 4, which you don't explicitly check for, and which will fall through to the <code>alert()</code> error case (assuming <code>len > 6</code>).</p>
<p>I'd liberally add some more debugging tracer output -- add an <code>alert('l=' + l ', and len=' + len)</code> after your for loop, for example.</p>
http://stackoverflow.com/questions/1791639/regular-expression-in-ruby-to-convert-uppercase-title-into-lowercase/1791688#17916881Answer by bantic for Regular expression in Ruby to convert uppercase title into lowercasebantichttp://stackoverflow.com/users/1377842009-11-24T17:36:55Z2009-11-24T17:36:55Z<pre><code> string = "MY STRING HERE"
string.split(" ").map {|word| word.capitalize}.join(" ")
</code></pre>
<p>The way this works:
The <code>.split(" ")</code> splits it on spaces, so now we have an array that looks like <code>["my", "string", "here"]</code>. The <code>map</code> call iterates over each element of the array, assigning it to temporary variable <code>word</code>, which we then call <code>capitalize</code> on. Now we have an array that looks like <code>["My", "String", "Here"]</code>, and finally we turn that array back into a string by <code>join</code>ing each element with a space (" ").</p>
http://stackoverflow.com/questions/1602730/yaml-encoding-of-malformed-string-model-serialization-issues/1765486#17654861Answer by bantic for YAML Encoding of Malformed String, Model Serialization Issuesbantichttp://stackoverflow.com/users/1377842009-11-19T18:24:56Z2009-11-19T18:24:56Z<p>You have to give up the easy <code>serialize</code> ActiveRecord::Base method to do so, but it's not hard otherwise to use your own serializing scheme.
For example, to serialize some field called 'person_data':</p>
<pre><code>class Person < ActiveRecord::Base
def person_data
self[:person_data] ? Marshal.load(self[:person_data]) : nil
end
def person_data=(x)
self[:person_data] = Marshal.dump(x)
end
end
## User Person#person_data as normal and it is transparently marshalled
p = Person.find 1
p.person_data = {:color => "blue", :food => "vegetarian"}
</code></pre>
<p>(See this <a href="http://www.ruby-forum.com/topic/101858#222747" rel="nofollow">ruby forum thread</a> for more)</p>
http://stackoverflow.com/questions/1764625/named-routes-link-to-problem/1765337#17653371Answer by bantic for Named Routes & link_to problembantichttp://stackoverflow.com/users/1377842009-11-19T18:07:19Z2009-11-19T18:07:19Z<p>The parentheses around the <code>(:format)</code> are throwing off your routing. Do you need that to be in parens? If you remove them, and change the <code>map.person</code> line like so then you will be fine:</p>
<pre><code>map.person 'people/:shortname.:format', :conditions => { :method => :get }, :controller=>"people", :action=>"show"
</code></pre>
<p>In this case the link_to as you have it will work fine.</p>
http://stackoverflow.com/questions/1764383/how-to-use-rspec-to-test-named-routes/1764736#17647361Answer by bantic for How to use rspec to test named routes?bantichttp://stackoverflow.com/users/1377842009-11-19T16:45:00Z2009-11-19T16:45:00Z<p>You can do this in your controller specs with the <code>assert_routing</code> method, like so:</p>
<pre><code>describe UsersController do
it "should recognize a specific users#show route" do
assert_routing("/users/23", {:controller => "users", :action => "show", :id => 23})
end
end
</code></pre>
<p>More documentation is <a href="http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M000350&name=assert%5Frouting" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1758164/ruby-on-rails-conditional-routing/1758893#17588933Answer by bantic for Ruby on Rails conditional routingbantichttp://stackoverflow.com/users/1377842009-11-18T20:36:58Z2009-11-18T20:52:36Z<p>You can use a block when creating your routes, and then pass a <code>:controller</code> parameter, like so</p>
<pre><code>map.resource :account do |account|
# If you have a special controller 'AccountJobsController'
account.resources :jobs, :controller => "account_jobs"
end
</code></pre>
<p>It may be cleaner for you to put your controllers into a directory structure, and then you can reference them in a nested way. For example:</p>
<pre><code>map.resource :account do |account|
account.resources :jobs, :controller => "accounts/jobs"
end
</code></pre>
<p>If you use the above snippet, you should then create a controller in app/controllers/accounts/jobs_controller.rb, which is defined like so:</p>
<pre><code>class Account::JobsController < ApplicationController
##
## etc.
##
end
</code></pre>
<p>You can always use <code>rake routes</code> to check which routes have been generated and which controllers they'll use.</p>
http://stackoverflow.com/questions/1757689/load-ruby-on-rails-models-without-loading-the-entire-framework/1758982#17589820Answer by bantic for Load Ruby on Rails models without loading the entire frameworkbantichttp://stackoverflow.com/users/1377842009-11-18T20:49:43Z2009-11-18T20:49:43Z<p>It sounds like your concern is that you don't want to pay the time- or memory- cost to spin up the rails stack every time your task needs to be run? If you plan on keeping the daemon running full-time, as you say, you can just daemonize a process that has loaded your rails stack and will only have to pay that memory- or time-related penalty for loading the stack one time, when the daemon starts up. </p>
<p><a href="http://github.com/kr/async-observer" rel="nofollow">Async_worker</a> is a good example of this sort of pattern: It uses beanstalk to pass messages to one or more worker processes that are each just daemons that have loaded the full rails stack.</p>
<p>One thing you have to pay attention to when doing this is that you'll need to restart your daemonized processes upon a deploy so they can reload your updated rails stack. I'm using this for a url-shortener app (the single async worker process I have running sits around waiting to save referral data after the visitor gets redirected), and it works well, I just have an <code>after:deploy</code> capistrano task that restarts any async worker(s).</p>
http://stackoverflow.com/questions/1758444/silencing-factory-girl-logging/1758771#17587712Answer by bantic for Silencing Factory Girl logging bantichttp://stackoverflow.com/users/1377842009-11-18T20:18:08Z2009-11-18T20:18:08Z<p>Can you give some more details on where exactly you're seeing the logging lines? Are you running <code>rake spec</code>? Can you copy/paste some example output?</p>
http://stackoverflow.com/questions/1602730/yaml-encoding-of-malformed-string-model-serialization-issues/1757809#17578092Answer by bantic for YAML Encoding of Malformed String, Model Serialization Issuesbantichttp://stackoverflow.com/users/1377842009-11-18T17:46:34Z2009-11-18T17:46:34Z<p>Yep, that looks like a bug in the C syck library. I checked it out using the PHP syck bindings (v 0.9.3): <a href="http://pecl.php.net/package/syck" rel="nofollow">http://pecl.php.net/package/syck</a> and the same bug is present, indicating it is a bug in the library as opposed to the ruby yaml library or ruby-syck bindings:</p>
<pre><code>// phptestsyck.php
<?php
$message_text = "
X
X
";
syck_load(syck_dump($message_text));
?>
</code></pre>
<p>Running this on the cli gives the same SyckException:</p>
<pre><code>$ php phptestsyck.php
PHP Fatal error: Uncaught exception 'SyckException' with message 'syntax error on line 5, col 0: 'X'' in /.../phptestsyck.php:8
Stack trace:
#0 /.../phptestsyck.php(8): syck_load('--- %YAML:1.0 >...')
#1 {main}
thrown in /.../phptestsyck.php on line 8
</code></pre>
<p>So, I suppose you could try to fix Syck itself. It appears that the library hasn't been updated since v0.55 in May of 2005 (<a href="http://rubyforge.org/projects/syck/" rel="nofollow">http://rubyforge.org/projects/syck/</a>), though.</p>
<p>Alternately, there is a pure-ruby yaml parser called RbYAML (<a href="http://rbyaml.rubyforge.org/" rel="nofollow">http://rbyaml.rubyforge.org/</a>) which originated with JRuby that doesn't appear to have this bug:</p>
<pre><code>>> require 'rbyaml'
=> true
>> message_text = <<END
X
X
END
=> "\n X\nX\n"
>> yaml = RbYAML.dump(message_text)
=> "--- "\\n X\\nX\\n"\n"
>> RbYAML.load(yaml)
=> "\n X\nX\n"
>>
</code></pre>
<p>Finally, have you considered another serialization format altogether? Ruby's Marshal library doesn't have this bug either and is faster than Yaml (see <a href="http://significantbits.wordpress.com/2008/01/29/yaml-vs-marshal-performance/" rel="nofollow">http://significantbits.wordpress.com/2008/01/29/yaml-vs-marshal-performance/</a>):</p>
<pre><code>>> message_text = <<END
X
X
END
=> "\n X\nX\n"
>> marshal = Marshal.dump(message_text)
=> "\004\b"\f\n X\nX\n"
>> Marshal.load(marshal)
=> "\n X\nX\n"
</code></pre>
http://stackoverflow.com/questions/1751186/impressing-ruby-example/1752606#17526060Answer by bantic for Impressing Ruby examplebantichttp://stackoverflow.com/users/1377842009-11-17T23:27:30Z2009-11-17T23:27:30Z<p>I would show how simple it is to create nice dsl's -- method_missing in particular is really simple to grasp but very powerful, and allows you to do some really cool stuff.</p>
http://stackoverflow.com/questions/1681820/ruby-app-mvc-framwork-not-web/1683248#16832480Answer by bantic for Ruby App MVC framwork (not web)bantichttp://stackoverflow.com/users/1377842009-11-05T20:10:41Z2009-11-05T20:10:41Z<p>What about Thor, by Yehuda Katz? <a href="http://yehudakatz.com/2008/05/12/by-thors-hammer/" rel="nofollow">http://yehudakatz.com/2008/05/12/by-thors-hammer/</a></p>
http://stackoverflow.com/questions/1682089/rails-best-practice-to-store-user-settings/1683197#16831972Answer by bantic for Rails: Best practice to store user settings?bantichttp://stackoverflow.com/users/1377842009-11-05T20:05:08Z2009-11-05T20:05:08Z<p>If the user settings are not meant to be findable (via a User.find_by_x_preference, e.g.) you could also store them in a serialized column as a hash. This is the use case described in the rails docs (<a href="http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002334&name=serialize#" rel="nofollow">http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002334&name=serialize#</a>), actually.</p>
<pre><code>class User
serialize :preferences
end
u = User.new
u.preferences = {:favorite_color => "green", :favorite_book => "Moby Dick"}
</code></pre>
http://stackoverflow.com/questions/1682751/model-class-inheritance-problem-with-view/1683111#16831110Answer by bantic for model class inheritance (problem with view)bantichttp://stackoverflow.com/users/1377842009-11-05T19:53:56Z2009-11-05T19:59:02Z<p>What is the @hosting variable supposed to be? Mike is right, you aren't defining it anywhere.</p>
<p>My guess is that you probably want to do something more along the lines of</p>
<pre><code>form_for(@subuser) do |f|
</code></pre>
http://stackoverflow.com/questions/1351951/when-to-ditch-active-record/1358615#13586152Answer by bantic for when to ditch active record?bantichttp://stackoverflow.com/users/1377842009-08-31T17:57:45Z2009-08-31T17:57:45Z<p>Using</p>
<pre><code>:joins => :scannables
</code></pre>
<p>should work (note the plural), assuming you have set up a Place#has_many :scannables association. The :joins option for #find takes both strings and named associations.</p>
http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/1158981#11589810Answer by bantic for Who are good web hosts for Ruby on Rails projects?bantichttp://stackoverflow.com/users/1377842009-07-21T12:49:14Z2009-07-21T12:49:14Z<p>If cost is your biggest priority and you're keen to do all your own configuration and setup, <a href="http://prgmr.com/" rel="nofollow">prgmr.com</a> seems like a pretty good option. They're like slicehost as far as being do-it-yourself, but cheaper and with even less support.</p>
http://stackoverflow.com/questions/1925345/why-does-forward-delete-in-irb-beep-and-write-a-tilde-instead-of-forward-deleComment by bantic on Why does forward-delete in IRB beep and write a tilde (~) instead of forward-deleting?bantichttp://stackoverflow.com/users/1377842010-03-15T18:16:37Z2010-03-15T18:16:37ZThis is very helpful: <a href="http://snippets.dzone.com/posts/show/10511" rel="nofollow">snippets.dzone.com/posts/show/10511</a>http://stackoverflow.com/questions/1925345/why-does-forward-delete-in-irb-beep-and-write-a-tilde-instead-of-forward-deleComment by bantic on Why does forward-delete in IRB beep and write a tilde (~) instead of forward-deleting?bantichttp://stackoverflow.com/users/1377842009-12-18T16:09:40Z2009-12-18T16:09:40ZThis is related to irb, the ruby repl. There have been other allowed questions asking how to do certain formatting-related things in irb before: <a href="http://stackoverflow.com/questions/116593/how-do-you-clear-the-irb-console" rel="nofollow" title="how do you clear the irb console">stackoverflow.com/questions/116593/…</a> and <a href="http://stackoverflow.com/questions/1889568/ruby-irb-reacts-strangely-to-control-keys" rel="nofollow" title="ruby irb reacts strangely to control keys">stackoverflow.com/questions/1889568/…</a>http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-wo/1829052#1829052Comment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantichttp://stackoverflow.com/users/1377842009-12-02T15:53:34Z2009-12-02T15:53:34ZBut then why does it work if you give it only a year, or only a year and a day?http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-wo/1829052#1829052Comment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantichttp://stackoverflow.com/users/1377842009-12-01T22:37:50Z2009-12-01T22:37:50ZSo it's just a weird idiosyncrasy of the language?http://stackoverflow.com/questions/1828206/why-is-parsing-y-m-using-strptime-in-r-giving-an-na-result-but-y-m-d-woComment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works?bantichttp://stackoverflow.com/users/1377842009-12-01T19:44:09Z2009-12-01T19:44:09ZI was expecting it to use the current day as a default, the way it will do if you do strptime("2009", format="%Y"). This results in "2009-12-01".http://stackoverflow.com/questions/1433720/does-ruby-on-rails-support-a-table-for-every-instance-of-a-model-database-schema/1433751#1433751Comment by bantic on Does Ruby On Rails support a table for every instance of a model database schema?bantichttp://stackoverflow.com/users/1377842009-11-27T21:10:51Z2009-11-27T21:10:51ZThis is the link: <a href="http://github.com/laserlemon/vestal_versions" rel="nofollow">github.com/laserlemon/vestal_versions</a>http://stackoverflow.com/questions/1759191/ruby-basics-accessing-arrays-helpers-static-ruby-generatorsComment by bantic on ruby basics - accessing arrays / helpers - static ruby generatorsbantichttp://stackoverflow.com/users/1377842009-11-18T22:07:19Z2009-11-18T22:07:19ZIs there a stacktrace for the error you're seeing? That would make it easier to tell exactly what is going wrong when you call <code>= page_options[:total_index]</code>http://stackoverflow.com/questions/1602730/yaml-encoding-of-malformed-string-model-serialization-issues/1757809#1757809Comment by bantic on YAML Encoding of Malformed String, Model Serialization Issuesbantichttp://stackoverflow.com/users/1377842009-11-18T19:02:22Z2009-11-18T19:02:22ZDid you consider using another serialization scheme like Marshal? Does it have to be yaml?http://stackoverflow.com/questions/1255581/is-is-possible-to-move-copy-an-s3-bucket-to-a-different-account/1255604#1255604Comment by bantic on is is possible to move/copy an s3 bucket to a different account?bantichttp://stackoverflow.com/users/1377842009-08-12T19:55:01Z2009-08-12T19:55:01Zthanks. I guess they don't have the api call that I want. I found that you can do a "copy" from one bucket to another but you still have to list the files, there's not bulk copy (that I can tell).