User TonyLa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T09:03:24Zhttp://stackoverflow.com/feeds/user/1295http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/366913/basic-rails-question-manually-inserting-a-row-into-a-database-table/366921#3669214Answer by TonyLa for Basic Rails question: manually inserting a row into a database tableTonyLa2008-12-14T20:05:53Z2008-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#3281711Answer by TonyLa for Shared file storage for a Rails ApplicationTonyLa2008-11-29T23:21:55Z2008-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#3183460Answer by TonyLa for RoR: named_scope, all records created within last 7 days?TonyLa2008-11-25T18:12:58Z2008-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 => [
%created_at > :time!,
proc {{:time => 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#2592392Answer by TonyLa for Fragment Caching with MemcachedTonyLa2008-11-03T16:48:02Z2008-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#2544001Answer by TonyLa for Who are good web hosts for Ruby on Rails projects?TonyLa2008-10-31T18:05:48Z2008-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#2365541Answer by TonyLa for Rake and current directoryTonyLa2008-10-25T15:18:54Z2008-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#1957431Answer by TonyLa for How do you do relative time in Rails?TonyLa2008-10-12T17:31:45Z2008-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#1839800Answer by TonyLa for Testing rails partial views standaloneTonyLa2008-10-08T17:52:47Z2008-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#1579860Answer by TonyLa for Rails test hanging - how can I print the test name before execution?TonyLa2008-10-01T14:45:06Z2008-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#1538692Answer by TonyLa for From objects to tables using activerecordTonyLa2008-09-30T16:32:04Z2008-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#1532282Answer by TonyLa for RoR: nested namespace routes, undefined method errorTonyLa2008-09-30T14:18:18Z2008-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#1440740Answer by TonyLa for How to incorporate Interactive Ruby into my development process?TonyLa2008-09-27T17:23:12Z2008-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#1050020Answer by TonyLa for Rails Sessions over serversTonyLa2008-09-19T19:55:56Z2008-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#1047321Answer by TonyLa for Polymorphic Models in Ruby on Rails?TonyLa2008-09-19T19:19:54Z2008-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#749982Answer by TonyLa for How do you restart Rails under Mongrel, without stopping and starting MongrelTonyLa2008-09-16T17:47:28Z2008-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#465982Answer by TonyLa for When do you use POST and when do you use GET?TonyLa2008-09-05T19:08:25Z2008-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#456760Answer by TonyLa for Adding Functionality to RailsTonyLa2008-09-05T12:36:33Z2008-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 # >> 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#440161Answer by TonyLa for What is the best way of adding in regularly used blocks of code when marking up in TextMate?TonyLa2008-09-04T15:30:43Z2008-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#438680Answer by TonyLa for Recommended web development environment on Mac?TonyLa2008-09-04T14:27:01Z2008-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#426471Answer by TonyLa for When is the most effective time to do code reviews?TonyLa2008-09-03T21:31:40Z2008-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-1Answer by TonyLa for Are semicolons needed after an object literal assignment in JavaScript?TonyLa2008-09-03T20:58:57Z2008-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#423171Answer by TonyLa for Are semicolons needed after an object literal assignment in JavaScript?TonyLa2008-09-03T19:04:08Z2008-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#410192Answer by TonyLa for Should I use window.onload or script block?TonyLa2008-09-03T01:25:34Z2008-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#333140Answer by TonyLa for Automated PDF Creation from URLTonyLa2008-08-28T20:28:39Z2008-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#292411Answer by TonyLa for How do I gracefully shut down a Mongrel web serverTonyLa2008-08-27T00:18:05Z2008-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#285620Answer by TonyLa for Generating an object model in Ruby from an XML DTDTonyLa2008-08-26T16:42:06Z2008-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#285561Answer by TonyLa for What Ruby IDE do you prefer?TonyLa2008-08-26T16:36:34Z2008-08-26T16:36:34Z<p>Textmate on osx</p>
http://stackoverflow.com/questions/25950/ruby-performance/26207#262071Answer by TonyLa for Ruby PerformanceTonyLa2008-08-25T15:15:24Z2008-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#236620Answer by TonyLa for How Did You Decide Between WISA and LAMP?TonyLa2008-08-22T22:25:34Z2008-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#226320Answer by TonyLa for Amazon Web ServicesTonyLa2008-08-22T15:13:53Z2008-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>