User bantic - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T02:21:23Z http://stackoverflow.com/feeds/user/137784 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1255581/is-is-possible-to-move-copy-an-s3-bucket-to-a-different-account 0 is is possible to move/copy an s3 bucket to a different account? bantic http://stackoverflow.com/users/137784 2009-08-10T15:29:33Z 2009-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-wo 0 Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works? bantic http://stackoverflow.com/users/137784 2009-12-01T19:09:13Z 2009-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>&gt; strptime("2009-12",format="%Y-%m") [1] NA &gt; 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>&gt; strptime("2009",format="%Y") # year only. Works. Uses current month and day as defaults. [1] "2009-12-02" &gt; strptime("2009-03",format="%Y-%d") # year and day. Works. Uses current month as default. [1] "2009-12-03" &gt; strptime("2009-03",format="%Y-%m") # year and month. Doesn't work. ? [1] NA </code></pre> http://stackoverflow.com/questions/1797971/javascript-problem/1798089#1798089 0 Answer by bantic for javascript problem bantic http://stackoverflow.com/users/137784 2009-11-25T16:19:18Z 2009-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 &gt; 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#1791688 1 Answer by bantic for Regular expression in Ruby to convert uppercase title into lowercase bantic http://stackoverflow.com/users/137784 2009-11-24T17:36:55Z 2009-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#1765486 1 Answer by bantic for YAML Encoding of Malformed String, Model Serialization Issues bantic http://stackoverflow.com/users/137784 2009-11-19T18:24:56Z 2009-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 &lt; 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 =&gt; "blue", :food =&gt; "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#1765337 1 Answer by bantic for Named Routes & link_to problem bantic http://stackoverflow.com/users/137784 2009-11-19T18:07:19Z 2009-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 =&gt; { :method =&gt; :get }, :controller=&gt;"people", :action=&gt;"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#1764736 1 Answer by bantic for How to use rspec to test named routes? bantic http://stackoverflow.com/users/137784 2009-11-19T16:45:00Z 2009-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 =&gt; "users", :action =&gt; "show", :id =&gt; 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&amp;name=assert%5Frouting" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1758164/ruby-on-rails-conditional-routing/1758893#1758893 3 Answer by bantic for Ruby on Rails conditional routing bantic http://stackoverflow.com/users/137784 2009-11-18T20:36:58Z 2009-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 =&gt; "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 =&gt; "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 &lt; 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#1758982 0 Answer by bantic for Load Ruby on Rails models without loading the entire framework bantic http://stackoverflow.com/users/137784 2009-11-18T20:49:43Z 2009-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#1758771 2 Answer by bantic for Silencing Factory Girl logging bantic http://stackoverflow.com/users/137784 2009-11-18T20:18:08Z 2009-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#1757809 2 Answer by bantic for YAML Encoding of Malformed String, Model Serialization Issues bantic http://stackoverflow.com/users/137784 2009-11-18T17:46:34Z 2009-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 &lt;?php $message_text = " X X "; syck_load(syck_dump($message_text)); ?&gt; </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 &gt;...') #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>&gt;&gt; require 'rbyaml' =&gt; true &gt;&gt; message_text = &lt;&lt;END X X END =&gt; "\n X\nX\n" &gt;&gt; yaml = RbYAML.dump(message_text) =&gt; "--- "\\n X\\nX\\n"\n" &gt;&gt; RbYAML.load(yaml) =&gt; "\n X\nX\n" &gt;&gt; </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>&gt;&gt; message_text = &lt;&lt;END X X END =&gt; "\n X\nX\n" &gt;&gt; marshal = Marshal.dump(message_text) =&gt; "\004\b"\f\n X\nX\n" &gt;&gt; Marshal.load(marshal) =&gt; "\n X\nX\n" </code></pre> http://stackoverflow.com/questions/1751186/impressing-ruby-example/1752606#1752606 0 Answer by bantic for Impressing Ruby example bantic http://stackoverflow.com/users/137784 2009-11-17T23:27:30Z 2009-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#1683248 0 Answer by bantic for Ruby App MVC framwork (not web) bantic http://stackoverflow.com/users/137784 2009-11-05T20:10:41Z 2009-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#1683197 2 Answer by bantic for Rails: Best practice to store user settings? bantic http://stackoverflow.com/users/137784 2009-11-05T20:05:08Z 2009-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&amp;name=serialize#" rel="nofollow">http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002334&amp;name=serialize#</a>), actually.</p> <pre><code>class User serialize :preferences end u = User.new u.preferences = {:favorite_color =&gt; "green", :favorite_book =&gt; "Moby Dick"} </code></pre> http://stackoverflow.com/questions/1682751/model-class-inheritance-problem-with-view/1683111#1683111 0 Answer by bantic for model class inheritance (problem with view) bantic http://stackoverflow.com/users/137784 2009-11-05T19:53:56Z 2009-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#1358615 2 Answer by bantic for when to ditch active record? bantic http://stackoverflow.com/users/137784 2009-08-31T17:57:45Z 2009-08-31T17:57:45Z <p>Using</p> <pre><code>:joins =&gt; :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#1158981 0 Answer by bantic for Who are good web hosts for Ruby on Rails projects? bantic http://stackoverflow.com/users/137784 2009-07-21T12:49:14Z 2009-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-dele Comment by bantic on Why does forward-delete in IRB beep and write a tilde (~) instead of forward-deleting? bantic http://stackoverflow.com/users/137784 2010-03-15T18:16:37Z 2010-03-15T18:16:37Z This 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-dele Comment by bantic on Why does forward-delete in IRB beep and write a tilde (~) instead of forward-deleting? bantic http://stackoverflow.com/users/137784 2009-12-18T16:09:40Z 2009-12-18T16:09:40Z This 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/&hellip;</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/&hellip;</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#1829052 Comment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works? bantic http://stackoverflow.com/users/137784 2009-12-02T15:53:34Z 2009-12-02T15:53:34Z But 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#1829052 Comment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works? bantic http://stackoverflow.com/users/137784 2009-12-01T22:37:50Z 2009-12-01T22:37:50Z So 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-wo Comment by bantic on Why is parsing "%Y-%m" using strptime in R giving an NA result, but "%Y-%m-%d" works? bantic http://stackoverflow.com/users/137784 2009-12-01T19:44:09Z 2009-12-01T19:44:09Z I was expecting it to use the current day as a default, the way it will do if you do strptime(&quot;2009&quot;, format=&quot;%Y&quot;). This results in &quot;2009-12-01&quot;. http://stackoverflow.com/questions/1433720/does-ruby-on-rails-support-a-table-for-every-instance-of-a-model-database-schema/1433751#1433751 Comment by bantic on Does Ruby On Rails support a table for every instance of a model database schema? bantic http://stackoverflow.com/users/137784 2009-11-27T21:10:51Z 2009-11-27T21:10:51Z This 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-generators Comment by bantic on ruby basics - accessing arrays / helpers - static ruby generators bantic http://stackoverflow.com/users/137784 2009-11-18T22:07:19Z 2009-11-18T22:07:19Z Is 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&#95;options[:total&#95;index]</code> http://stackoverflow.com/questions/1602730/yaml-encoding-of-malformed-string-model-serialization-issues/1757809#1757809 Comment by bantic on YAML Encoding of Malformed String, Model Serialization Issues bantic http://stackoverflow.com/users/137784 2009-11-18T19:02:22Z 2009-11-18T19:02:22Z Did 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#1255604 Comment by bantic on is is possible to move/copy an s3 bucket to a different account? bantic http://stackoverflow.com/users/137784 2009-08-12T19:55:01Z 2009-08-12T19:55:01Z thanks. I guess they don't have the api call that I want. I found that you can do a &quot;copy&quot; from one bucket to another but you still have to list the files, there's not bulk copy (that I can tell).