User TonyLa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:03:24Z http://stackoverflow.com/feeds/user/1295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366913/basic-rails-question-manually-inserting-a-row-into-a-database-table/366921#366921 4 Answer by TonyLa for Basic Rails question: manually inserting a row into a database table TonyLa 2008-12-14T20:05:53Z 2008-12-14T20:05:53Z <p>You create rows in your database by creating and saving new ActiveRecord Objects (your models). </p> <p>So in your controller code you could create a new row of DataTypeTwo by doing</p> <pre><code>new_record = DataTypeTwo.new new_record.save! </code></pre> http://stackoverflow.com/questions/327867/shared-file-storage-for-a-rails-application/328171#328171 1 Answer by TonyLa for Shared file storage for a Rails Application TonyLa 2008-11-29T23:21:55Z 2008-11-29T23:21:55Z <p>Another good alternative is from the creators of Memcached:</p> <p>Mogile FS <a href="http://www.danga.com/mogilefs/" rel="nofollow">http://www.danga.com/mogilefs/</a></p> http://stackoverflow.com/questions/318246/ror-namedscope-all-records-created-within-last-7-days/318346#318346 0 Answer by TonyLa for RoR: named_scope, all records created within last 7 days? TonyLa 2008-11-25T18:12:58Z 2008-11-25T18:12:58Z <p>You need to pass named_scope a proc so it will be evaluated every time the call to named_scope is run. Otherwise if you specify Time.now it will run once (on first call) and be "cached" until the app is restarted.</p> <pre><code> named_scope \ :this_week, :conditions =&gt; [ %created_at &gt; :time!, proc {{:time =&gt; Time.now}} ] </code></pre> <p>You can call the named_scope like @ar_object.this_week</p> http://stackoverflow.com/questions/258264/fragment-caching-with-memcached/259239#259239 2 Answer by TonyLa for Fragment Caching with Memcached TonyLa 2008-11-03T16:48:02Z 2008-11-03T16:48:02Z <p>You can set the fragment_cache_store in your environment.rb</p> <pre><code> ActionController::Base.cache_store = ActiveSupport::Cache::MemCacheStore.new() </code></pre> <p><a href="http://api.rubyonrails.org/classes/ActionController/Caching.html#M000628" rel="nofollow">http://api.rubyonrails.org/classes/ActionController/Caching.html#M000628</a></p> http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/254400#254400 1 Answer by TonyLa for Who are good web hosts for Ruby on Rails projects? TonyLa 2008-10-31T18:05:48Z 2008-10-31T18:51:19Z <p>RackSpace is great but they are expensive. RailsMachine if you want to host on VMs is great. They are better then most because they allocate dedicated CPUs for you instead of sharing processing time. Joyent is also very good but they run OpenSolaris, but if you aren't familiar with Solaris it wouldn't be a good choice. SliceHost if you are looking for inexpensive hosting.</p> http://stackoverflow.com/questions/236538/rake-and-current-directory/236554#236554 1 Answer by TonyLa for Rake and current directory TonyLa 2008-10-25T15:18:54Z 2008-10-25T15:18:54Z <p>If this is a RoR app your Rakefile.rb should be in your RAILS_ROOT directory. So in any script you can specify file location like </p> <pre><code> config.load_paths += %W( #{RAILS_ROOT}/extras ) </code></pre> http://stackoverflow.com/questions/195740/how-do-you-do-relative-time-in-rails/195743#195743 1 Answer by TonyLa for How do you do relative time in Rails? TonyLa 2008-10-12T17:31:45Z 2008-10-12T17:31:45Z <p>You can use the arithmetic operators to do relative time.</p> <pre><code>Time.now - 2.days </code></pre> <p>Will give you 2 days ago.</p> http://stackoverflow.com/questions/182865/testing-rails-partial-views-standalone/183980#183980 0 Answer by TonyLa for Testing rails partial views standalone TonyLa 2008-10-08T17:52:47Z 2008-10-08T17:52:47Z <p>Testing a view without the controller code is a dangerous thing. Your tests might pass but your application might throw an error. Always test against real life situations not artificial ones.</p> http://stackoverflow.com/questions/157873/rails-test-hanging-how-can-i-print-the-test-name-before-execution/157986#157986 0 Answer by TonyLa for Rails test hanging - how can I print the test name before execution? TonyLa 2008-10-01T14:45:06Z 2008-10-01T14:45:06Z <p>can you just hit ctrl+c to halt the execution and it will display the stack trace of where you halted the execution?</p> http://stackoverflow.com/questions/153795/from-objects-to-tables-using-activerecord/153869#153869 2 Answer by TonyLa for From objects to tables using activerecord TonyLa 2008-09-30T16:32:04Z 2008-09-30T16:32:04Z <p>Even if you could dynamically create tables on the fly like that (not saying that you can). I wouldn't want to do that. There is so much potential for error there.</p> <p>I would create the migrations by hand and have the tables and fields pre-created and fill them in with rows as needed.</p> http://stackoverflow.com/questions/153183/ror-nested-namespace-routes-undefined-method-error/153228#153228 2 Answer by TonyLa for RoR: nested namespace routes, undefined method error TonyLa 2008-09-30T14:18:18Z 2008-09-30T14:18:18Z <p>I'm assuming you are using rails 2.0.x so the way you generate a route is __path</p> <pre><code>admin_blog_path(blog) </code></pre> <p>and if you are riding a previous version I think it's just</p> <pre><code>blog_path(blog) </code></pre> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144074#144074 0 Answer by TonyLa for How to incorporate Interactive Ruby into my development process? TonyLa 2008-09-27T17:23:12Z 2008-09-27T17:23:12Z <p>I just use rdebug to debug any of my ruby or RoR code. </p> http://stackoverflow.com/questions/104837/rails-sessions-over-servers/105002#105002 0 Answer by TonyLa for Rails Sessions over servers TonyLa 2008-09-19T19:55:56Z 2008-09-19T19:55:56Z <p>In Rails 2.0 there is now a CookieStore that stores all session data in an encrypted cookie on the client's machine.</p> <p><a href="http://izumi.plan99.net/blog/index.php/2007/11/25/rails-20-cookie-session-store-and-security/" rel="nofollow">http://izumi.plan99.net/blog/index.php/2007/11/25/rails-20-cookie-session-store-and-security/</a></p> http://stackoverflow.com/questions/104086/polymorphic-models-in-ruby-on-rails/104732#104732 1 Answer by TonyLa for Polymorphic Models in Ruby on Rails? TonyLa 2008-09-19T19:19:54Z 2008-09-19T19:19:54Z <p>I would have the following models</p> <p>Tshirt<br /> TshirtBox has_many TshirtItems<br /> TshirtBoxItems (This is basically a join table with an id tshirt_box_id and tshirt_id) belongs_to TshirtBox</p> <p>TshirtBoxItems is a way to link a Tshirt with a box and potentially other things in the future.</p> http://stackoverflow.com/questions/74218/how-do-you-restart-rails-under-mongrel-without-stopping-and-starting-mongrel/74998#74998 2 Answer by TonyLa for How do you restart Rails under Mongrel, without stopping and starting Mongrel TonyLa 2008-09-16T17:47:28Z 2008-09-16T17:47:28Z <p>in your rails home directory </p> <pre><code>mongrel_rails cluster::restart </code></pre> http://stackoverflow.com/questions/46585/when-do-you-use-post-and-when-do-you-use-get/46598#46598 2 Answer by TonyLa for When do you use POST and when do you use GET? TonyLa 2008-09-05T19:08:25Z 2008-09-05T19:08:25Z <p>My general rule of thumb is to use Get when you are making requests to the server that aren't going to alter state. Posts are reserved for requests to the server that alter state. </p> http://stackoverflow.com/questions/45253/adding-functionality-to-rails/45676#45676 0 Answer by TonyLa for Adding Functionality to Rails TonyLa 2008-09-05T12:36:33Z 2008-09-05T12:36:33Z <p>Require and include are 2 different things.</p> <p>Require is to strictly load a file once from a load path. The loadpath is a string and this is the key used to determine if the file has already been loaded.</p> <p>Include is used to "mix-in" modules into other classes. Include is called on a module and the module methods are included as instance methods on the class.</p> <pre><code> module MixInMethods def mixed_in_method "I'm a part of #{self.class}" end end class SampleClass include MixInMethods end mixin_class = SampleClass.new puts my_class.mixed_in_method # &gt;&gt; I'm a part of SampleClass </code></pre> <p>But many times the module you want to mix in is not in the same file as the target class. So you do a require 'module_file_name' and then inside the class you do a include . </p> http://stackoverflow.com/questions/43947/what-is-the-best-way-of-adding-in-regularly-used-blocks-of-code-when-marking-up-i/44016#44016 1 Answer by TonyLa for What is the best way of adding in regularly used blocks of code when marking up in TextMate? TonyLa 2008-09-04T15:30:43Z 2008-09-04T15:30:43Z <p>As mentioned prior snippets are what you are looking for.</p> <p>For reference look here: <a href="http://manual.macromates.com/en/snippets" rel="nofollow">http://manual.macromates.com/en/snippets</a><br /> <a href="http://screenflicker.com/mike/code/div-snippets/" rel="nofollow">http://screenflicker.com/mike/code/div-snippets/</a></p> http://stackoverflow.com/questions/43834/recommended-web-development-environment-on-mac/43868#43868 0 Answer by TonyLa for Recommended web development environment on Mac? TonyLa 2008-09-04T14:27:01Z 2008-09-04T14:27:01Z <p>I prefer to use MacPorts as much as I can because for the most part it's brain dead simple to install modules. The caveat is that your modules are installed in non standard directories /opt/. You just have to keep this in mind. </p> http://stackoverflow.com/questions/42633/when-is-the-most-effective-time-to-do-code-reviews/42647#42647 1 Answer by TonyLa for When is the most effective time to do code reviews? TonyLa 2008-09-03T21:31:40Z 2008-09-03T21:31:40Z <p>The best time to do a code review is NOW. As long as the other party has a break in their day, code reviews are least effective when done at the end like an after thought. They should be part of the development process. </p> <p>Nothing is worse then reading pages and pages of another person's code. It is just human to start skimming and not putting 100% effort 100% of the time</p> http://stackoverflow.com/questions/42247/are-semicolons-needed-after-an-object-literal-assignment-in-javascript/42574#42574 -1 Answer by TonyLa for Are semicolons needed after an object literal assignment in JavaScript? TonyLa 2008-09-03T20:58:57Z 2008-09-03T20:58:57Z <p>@JasonBunting</p> <p>Again you are wrong. Taken from the ECMA spec</p> <blockquote> <p>Certain ECMAScript statements (empty statement, variable statement, expression statement, do-while statement, continue statement, break statement, return statement, and throw statement ) must be terminated with semicolons. <strong>Such semicolons may always appear explicitly in the source text.</strong></p> </blockquote> <p>Your statement that the example given by the OP doesn't require (or is optional) is correct. The reasoning that got you there is flawed. There are instances in JS where semicolons are REQUIRED. Stated as an absolute semicolons are NOT optional in JS, but there are many cases where automatic semicolon insertion will make it seem so.</p> http://stackoverflow.com/questions/42247/are-semicolons-needed-after-an-object-literal-assignment-in-javascript/42317#42317 1 Answer by TonyLa for Are semicolons needed after an object literal assignment in JavaScript? TonyLa 2008-09-03T19:04:08Z 2008-09-03T19:04:08Z <p>@JasonBunting Try to be less arrogant and more helpful because you never know when you might be wrong ;)</p> <p>In this case there is no need for a semicolon at the end of the statement. The conclusion is the same but the reasoning is way off.<br /> Javascript does not have semicolons as "optional". Rather it has strict rules around automatic semicolon insertion. Semicolons are not optional with statements like break/continue/throw. Refer to ECMA Language Specification for more details <a href="http://www.ecma-international.org/publications/standards/Ecma-262.htm" rel="nofollow">http://www.ecma-international.org/publications/standards/Ecma-262.htm</a></p> http://stackoverflow.com/questions/40966/should-i-use-window-onload-or-script-block/41019#41019 2 Answer by TonyLa for Should I use window.onload or script block? TonyLa 2008-09-03T01:25:34Z 2008-09-03T01:25:34Z <p>window.onload on IE waits for the binary information to load also. It isn't a strict definition of "when the DOM is loaded". So there can be significant lag between when the page is perceived to be loaded and when your script gets fired. Because of this I would recommend looking into one of the plentiful JS frameworks (prototype/jQuery) to handle the heavy lifting for you.</p> http://stackoverflow.com/questions/33275/automated-pdf-creation-from-url/33314#33314 0 Answer by TonyLa for Automated PDF Creation from URL TonyLa 2008-08-28T20:28:39Z 2008-08-28T20:28:39Z <p>Depends on what platform you are on</p> <p>Windows - Websupergoo's ABC PDF</p> <p><a href="http://www.websupergoo.com/" rel="nofollow">http://www.websupergoo.com/</a></p> <p>*nix - Prince XML <a href="http://www.princexml.com/overview/" rel="nofollow">http://www.princexml.com/overview/</a></p> http://stackoverflow.com/questions/27743/how-do-i-gracefully-shut-down-a-mongrel-web-server/29241#29241 1 Answer by TonyLa for How do I gracefully shut down a Mongrel web server TonyLa 2008-08-27T00:18:05Z 2008-08-27T00:18:05Z <p>Better question is how to keep your app from consuming so much memory that it requires you to reboot mongrels from time to time.</p> <p>www.modrails.com reduced our memory footprint significantly</p> http://stackoverflow.com/questions/28293/generating-an-object-model-in-ruby-from-an-xml-dtd/28562#28562 0 Answer by TonyLa for Generating an object model in Ruby from an XML DTD TonyLa 2008-08-26T16:42:06Z 2008-08-26T16:42:06Z <p>You can use the ruby version of xml-simple.</p> <p>You shouldn't need to install the gem as I believe it's already installed with rails. <a href="http://xml-simple.rubyforge.org/" rel="nofollow">http://xml-simple.rubyforge.org/</a></p> http://stackoverflow.com/questions/16991/what-ruby-ide-do-you-prefer/28556#28556 1 Answer by TonyLa for What Ruby IDE do you prefer? TonyLa 2008-08-26T16:36:34Z 2008-08-26T16:36:34Z <p>Textmate on osx</p> http://stackoverflow.com/questions/25950/ruby-performance/26207#26207 1 Answer by TonyLa for Ruby Performance TonyLa 2008-08-25T15:15:24Z 2008-08-25T15:15:24Z <p>Matz ruby 1.8.6 is much slower when it comes to performance and 1.9 and JRuby do alot to speed it up. But the performance isn't such that it will prevent you from doing anything you want in a web application. There are many large Ruby on Rails sites that do just fine with the "slower interpreted" language. When you get to scaling out web apps there are many more pressing performance issues than the speed of the language you are writing it in.</p> http://stackoverflow.com/questions/23082/how-did-you-decide-between-wisa-and-lamp/23662#23662 0 Answer by TonyLa for How Did You Decide Between WISA and LAMP? TonyLa 2008-08-22T22:25:34Z 2008-08-22T22:25:34Z <p>My answer is let your developers choose the tools they are best with.</p> http://stackoverflow.com/questions/22556/amazon-web-services/22632#22632 0 Answer by TonyLa for Amazon Web Services TonyLa 2008-08-22T15:13:53Z 2008-08-22T15:13:53Z <p>What do you mean by "Enterprise"? Amazon dogfoods their own technology and they are one of the largest web applications out there. I've used S3/EC2 to build web applications and it has never given me any problems. The only concerning thing is their recent uptime problems. Other then that it's a great platform to build on top of.</p>