User Swanand - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T21:03:27Zhttp://stackoverflow.com/feeds/user/18768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1866313/standard-idiom-for-adding-new-models-to-an-app-built-on-symfony-doctrine0Standard idiom for adding new models to an app built on Symfony + DoctrineSwanand2009-12-08T11:14:01Z2009-12-08T23:58:46Z
<p>What is the a standard way of adding new model to my app built on Symfony + Doctrine while maintaining all previous models and their meta-data (like relationships).</p>
<p>What am I really looking for: A command / procedure that will be equivalent of <code>./script/generate model FooModel</code> in <code>Ruby on Rails</code> (which does not have any sort of reset db / reset models while generating)</p>
<p>If these two are different things, and I am chasing the wrong ghost (I would like to think I am not), please let me know.</p>
<p>EDIT: Updated the question.</p>
http://stackoverflow.com/questions/1859979/is-there-a-way-to-know-the-invoking-method/1865507#18655070Answer by Swanand for Is there a way to know the invoking method?Swanand2009-12-08T08:27:40Z2009-12-08T08:40:23Z<p>You can write something like this:</p>
<pre><code>module Kernel
private
def who_is_calling? # Or maybe def who_just_called?
caller[1] =~ /`([^']*)'/ and $1
end
end
</code></pre>
<p>And then you have these small tests:</p>
<pre><code>irb(main):056:0* def this_is_a_method
irb(main):057:1> puts "I, 'this_is_a_method', was called upon by: '#{who_is_calling?}'"
irb(main):058:1> end
=> nil
irb(main):059:0> def this_is_a_method_that_calls_another
irb(main):060:1> this_is_a_method
irb(main):061:1> end
=> nil
irb(main):062:0> this_is_a_method_that_calls_another
I, 'this_is_a_method', was called upon by: 'this_is_a_method_that_calls_another'
=> nil
irb(main):063:0> this_is_a_method
I, 'this_is_a_method', was called upon by: 'irb_binding'
=> nil
irb(main):064:0>
</code></pre>
http://stackoverflow.com/questions/1861387/update-a-single-xml-entity-using-hpricot-in-ruby/1865462#18654620Answer by Swanand for Update a single XML entity using Hpricot in Ruby?Swanand2009-12-08T08:16:40Z2009-12-08T08:16:40Z<p>I see a couple of solutions:</p>
<ol>
<li>Parse the file once and store it in DB, and use additional attributes , <code>viewed</code> to keep a track.</li>
<li>If DB is not available, parse it once and keep a Yaml. Easier to parse, read and write back. Will save you valuable execution time each time.</li>
</ol>
<p>If you keep updating the file or synchronizing the file with a remote server, then storing the information in a DB is your best bet.</p>
http://stackoverflow.com/questions/1864494/ruby-on-rails-how-do-i-detect-a-specific-mongrel-instance-in-a-cluster-during-st/1865233#18652330Answer by Swanand for Ruby on Rails: How do I detect a specific mongrel instance in a cluster during startup?Swanand2009-12-08T07:28:49Z2009-12-08T07:28:49Z<p>I asked the <a href="http://stackoverflow.com/questions/1438024/working-with-starling-and-multiple-instances-of-mongrel-through-mongrel-cluster">same question</a> couple of weeks back.</p>
<p>Gist: </p>
<ol>
<li>A plugin named '<a href="http://github.com/findchris/rooster" rel="nofollow">Rooster</a>' addresses
this problem. </li>
<li>Use a shared resource
like a file as a way to synchronize.</li>
</ol>
http://stackoverflow.com/questions/1803827/how-does-one-call-the-down-method-for-a-doctrine-migration-in-symfony-1-20How does one call the down method for a Doctrine migration in Symfony 1.2?Swanand2009-11-26T14:00:51Z2009-11-26T15:00:32Z
<p>I am using Symfony 1.2 with the sfDoctrinePlugin.</p>
<p>I couldn't find any command to call the <code>down</code> method on a migration, neither the documentation suggests any related arguments to the existing <code>doctrine migrate</code> command.<br>
What would be a way to rollback the migration I just ran successfully? Creating a new migration to undo is an option, but that is almost blasphemous and plainly stupid.</p>
http://stackoverflow.com/questions/1803827/how-does-one-call-the-down-method-for-a-doctrine-migration-in-symfony-1-2/1804175#18041752Answer by Swanand for How does one call the down method for a Doctrine migration in Symfony 1.2?Swanand2009-11-26T15:00:32Z2009-11-26T15:00:32Z<p>If you are at Migration Version N, then</p>
<pre><code>./symfony doctrine:migrate N-1
</code></pre>
<p>will call the down method on the N<sup>th</sup> migration.</p>
http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-k0Is there a name / set for characters that can be typed using a standard english keyboard?Swanand2009-11-17T05:08:15Z2009-11-17T05:22:00Z
<p>Is there a name / set for characters that can be typed using a standard english keyboard?</p>
http://stackoverflow.com/questions/1720076/how-could-i-be-sure-that-choosing-habtm-over-hasmany-through-is-more-suitable/1721209#17212090Answer by Swanand for How could I be sure that choosing HABTM over has_many :through is more suitable?Swanand2009-11-12T10:05:31Z2009-11-12T10:05:31Z<p>Just extra 5 minutes of work spent in the beginning creating the HTM relationship can save you a lot of trouble later. Migrating from HABTM to HTM may not be very simple once you gathered a lot of data.</p>
<p>I would definitely suggest going with HTM and skipping HABTM. No situation that I know of may compel you to use HABTM. Most situations however, will compel you to use HTM (adding more data to relationship for eg.)</p>
http://stackoverflow.com/questions/1702438/rails-helper-to-call-remote-upon-completion-of-event/1702611#17026112Answer by Swanand for Rails helper to call remote upon completion of event?Swanand2009-11-09T17:45:51Z2009-11-09T17:45:51Z<p><code>remote_function</code> will do what you are looking for. It will also include the Authenticity Token required for Ajax requests.</p>
http://stackoverflow.com/questions/1467718/check-fb-connect-session-expire-using-facebooker/1497731#14977310Answer by Swanand for Check FB Connect session expire using facebookerSwanand2009-09-30T12:09:59Z2009-09-30T12:09:59Z<p>The <code>fb_logout_link</code> method does not redirect when Facebook session is invalid. Add a redirect callback to your logout_path and it will do the job for you.</p>
<pre><code> def fb_logout_link(text,url,*args)
js = update_page do |page|
page.call "FB.Connect.logoutAndRedirect",url
# When session is valid, this call is meaningless, since we already redirect
# When session is invalid, it will log the user out of the system.
page.redirect_to url # You can use any *string* based path here
end
link_to_function text, js, *args
end
</code></pre>
http://stackoverflow.com/questions/1438024/working-with-starling-and-multiple-instances-of-mongrel-through-mongrel-cluster0Working with Starling and multiple instances of Mongrel through Mongrel ClusterSwanand2009-09-17T10:42:54Z2009-09-20T12:49:45Z
<p>Situation: </p>
<ul>
<li>In a typical cluster setup, I have a 5 instances of mongrel running behind Apache 2. </li>
<li>In one of my initializer files, I schedule a cron task using <code>Rufus::Scheduler</code> which basically sends out a couple of emails.</li>
</ul>
<p>Problem: </p>
<ul>
<li>The task runs 5 times, once for each mongrel instance and each recipient ends up getting 5 mails (despite the fact I store logs of each sent mail and check the log before sending). Is it possible that since all 5 instances run the task at exact same time, they end up reading the email logs <i>before</i> they are written?</li>
</ul>
<p>I am looking for a solution that will make the tasks run only once. I also have a Starling daemon up and running which can be utilized.</p>
http://stackoverflow.com/questions/1438024/working-with-starling-and-multiple-instances-of-mongrel-through-mongrel-cluster/1450950#14509501Answer by Swanand for Working with Starling and multiple instances of Mongrel through Mongrel ClusterSwanand2009-09-20T12:49:45Z2009-09-20T12:49:45Z<p>The way I am doing it right now: </p>
<ol>
<li>Try to open a file in exclusive locked mode</li>
<li>When lock is acquired, check for messages in Starling</li>
<li>If message exists, other process has already scheduled the job</li>
<li>Set the message again to the queue and exit.</li>
<li>If message is not found, schedule the job, set the message and exit </li>
</ol>
<p>Here is the code that does it:</p>
<pre><code> starling = MemCache.new("#{Settings[:starling][:host]}:#{Settings[:starling][:port]}")
mutex_filename = "#{RAILS_ROOT}/config/file.lock"
scheduler = Rufus::Scheduler.start_new
# The filelock method, taken from Ruby Cookbook
# This will ensure unblocking of the files
def flock(file, mode)
success = file.flock(mode)
if success
begin
yield file
ensure
file.flock(File::LOCK_UN)
end
end
return success
end
# open_lock method, taken from Ruby Cookbook
# This will create and hold the locks
def open_lock(filename, openmode = "r", lockmode = nil)
if openmode == 'r' || openmode == 'rb'
lockmode ||= File::LOCK_SH
else
lockmode ||= File::LOCK_EX
end
value = nil
# Kernerl's open method, gives IO Object, in our case, a file
open(filename, openmode) do |f|
flock(f, lockmode) do
begin
value = yield f
ensure
f.flock(File::LOCK_UN) # Comment this line out on Windows.
end
end
return value
end
end
# The actual scheduler
open_lock(mutex_filename, 'r+') do |f|
puts f.read
digest_schedule_message = starling.get("digest_scheduler")
if digest_schedule_message
puts "Found digest message in Starling. Releasing lock. '#{Time.now}'"
puts "Message: #{digest_schedule_message.inspect}"
# Read the message and set it back, so that other processes can read it too
starling.set "digest_scheduler", digest_schedule_message
else
# Schedule job
puts "Scheduling digest emails now. '#{Time.now}'"
scheduler.cron("0 9 * * *") do
puts "Begin sending digests..."
WeeklyDigest.new.send_digest!
puts "Done sending digests."
end
# Add message in queue
puts "Done Scheduling. Sending the message to Starling. '#{Time.now}'"
starling.set "digest_scheduler", :date => Date.today
end
end
# Sleep will ensure all instances have gone thorugh their wait-acquire lock-schedule(or not) cycle
# This will ensure that on next reboot, starling won't have any stale messages
puts "Waiting to clear digest messages from Starling."
sleep(20)
puts "All digest messages cleared, proceeding with boot."
starling.get("digest_scheduler")
</code></pre>
http://stackoverflow.com/questions/1387119/how-to-properly-extend-actioncontroller-in-rails-plugin/1387826#13878260Answer by Swanand for how to properly extend ActionController in rails pluginSwanand2009-09-07T06:28:42Z2009-09-07T06:28:42Z<p>From what I understand,</p>
<p><code>ResourceController</code> loads before plugin <code>foo</code> and tries to use the <code>bar</code> method you have defined in <code>foo</code>.
Usually, gems and plugins are loaded before application classes. (Take a look at <code>rails/railties/lib/initializer.rb</code>). Could you provide a stack-trace of the error so that one can debug this.</p>
<p>Also, for extending the classes, this seems a better alternative to me:</p>
<pre><code>module ActionController
class Base
class << self
... # Class methods here
end
... # Instance methods here
end
end
</code></pre>
http://stackoverflow.com/questions/1346075/recommended-file-extension-for-rails-view-pages2-3-2/1346092#13460924Answer by Swanand for Recommended File Extension for rails view pages(2.3.2)Swanand2009-08-28T10:11:03Z2009-08-28T10:31:11Z<p>The standard naming:</p>
<pre><code>template_name.mime_type.erb
</code></pre>
<p>Significance:</p>
<p>The controller will look for appropriately named template file when responding to different request formats:</p>
<pre><code>def show
@user = User.find(params[:id])
respond_to do |format|
format.html # Looks for show.html.erb
format.xml # this will look for show.xml.erb
# OR you can always use render :xml facility
# format.xml { render :xml => @user }
end
end
</code></pre>
<p>Link for API Docs: <a href="http://api.rubyonrails.org/classes/ActionController/MimeResponds/InstanceMethods.html" rel="nofollow">http://api.rubyonrails.org/classes/ActionController/MimeResponds/InstanceMethods.html</a></p>
http://stackoverflow.com/questions/1334865/how-does-one-avoid-a-large-number-between-20-and-30-of-embedded-if-statements/1334953#13349532Answer by Swanand for How does one avoid a large number (between 20 and 30) of embedded "if" statements in Ruby?Swanand2009-08-26T14:07:28Z2009-08-26T14:07:28Z<p>This is mostly code specific, but I can suggest 2 ways:</p>
<ol>
<li><code>case .. when .. then ..</code> structure. </li>
<li>Effectively using <code>send</code> or <code>eval</code> methods.</li>
</ol>
http://stackoverflow.com/questions/1334569/changing-default-ruby-arguments/1334598#13345982Answer by Swanand for Changing default Ruby argumentsSwanand2009-08-26T13:15:20Z2009-08-26T13:48:41Z<pre><code>>> [1, 2, 3].do_stuff
=> Result I get
>> [1, 2, 3].do_stuff :an_option => a_value
=> Result I really want, but don't want to specify the argument
</code></pre>
<p>I like to use <code>super</code> for this. It allows us to add some functionality to the method apart from just changing default arguments:</p>
<pre><code>class Array
def do_stuff(options = {})
# Verify if caller has not passed the option
options[:argument_i_want_to_change] = default_value_i_want unless options.has_key? :argument_i_want_to_change
# call super
super
end
end
</code></pre>
<p>Result:</p>
<pre><code>>> [1, 2, 3].do_stuff
=> Result that I really want
</code></pre>
<p>UPDATE: Removed reverse_merge! dependency. (Now looking for a better alternatives to using []= method)</p>
http://stackoverflow.com/questions/1333696/using-attributes-in-model-calculate-method/1334135#13341351Answer by Swanand for Using attributes in Model.calculate method?Swanand2009-08-26T11:43:06Z2009-08-26T11:43:06Z<p>In your original approach, have you tried this:</p>
<pre><code>team.users.maximum "user_statuses.updated_at", :include => :user_status
# OR
team.users.maximum "`user_statuses`.updated_at", :include => :user_status
</code></pre>
<p>I tried with following classes and it works just fine:</p>
<pre><code>class User < ActiveRecord::Base
has_one :user_status
has_many :memberships
has_many :teams, :through => :memberships
end
class UserStatus < ActiveRecord::Base
belongs_to :user
end
class Team < ActiveRecord::Base
has_many :users, :through => :memberships
has_many :memberships
end
class Membership < ActiveRecord::Base
belongs_to :team
belongs_to :user
end
</code></pre>
http://stackoverflow.com/questions/1328068/how-do-i-tell-what-modules-have-been-mixed-into-a-class/1328241#13282415Answer by Swanand for How do I tell what modules have been mixed into a class?Swanand2009-08-25T13:22:11Z2009-08-25T13:22:11Z<p>This might be a better idea:</p>
<pre><code>MyClass.included_modules
irb(main):001:0> Array.included_modules
=> [Enumerable, Kernel]
</code></pre>
http://stackoverflow.com/questions/1286870/ruby-implementation-isnumeric-for-strings-need-better-alternatives1Ruby implementation is_numeric? for Strings, need better alternativesSwanand2009-08-17T08:54:39Z2009-08-18T05:53:58Z
<p>I wanted to validate 'numericality' of a string (its not an attribute in an active-record model). I just need it to be a valid base 10, positive integer string. I am doing this:</p>
<pre><code>class String
def numeric?
# Check if every character is a digit
!!self.match(/\A[0-9]+\Z/)
end
end
class String
def numeric?
# Check is there is *any* non-numeric character
!self.match(/[^0-9]/)
end
end
</code></pre>
<p>Which of these is a more plausible alternative? OR, is there any other better implementation?</p>
http://stackoverflow.com/questions/1284469/e-mail-templates-in-ruby-on-rails/1286485#12864850Answer by Swanand for E-mail Templates in Ruby on RailsSwanand2009-08-17T06:47:32Z2009-08-17T06:47:32Z<p>If you insist on attaching them, try using Jason King's inline_attachment gem. Works best for static images.</p>
<p>Link: <a href="http://github.com/JasonKing/inline%5Fattachment/tree/master" rel="nofollow">http://github.com/JasonKing/inline_attachment/tree/master</a></p>
http://stackoverflow.com/questions/1272394/what-is-an-eoferror-in-ruby-file-o/1272513#12725133Answer by Swanand for What is an EOFError in Ruby file !/O?Swanand2009-08-13T14:57:44Z2009-08-13T15:26:08Z<p>EOFError (End of File error), is thrown when you trying to do carry out an operation on a file object that has already referencing to the end of the file. In this example, we are trying to <code>readline</code> when the line doesn't exist.</p>
<p>For example:</p>
<pre><code>import_file = File.open(filename)
begin
while (line = import_file.readline)
sline = FasterCSV.parse_line(line)
# Do stuff with sline
end
rescue EOFError
# Finished processing the file
end
</code></pre>
<p>The same thing can be achieved without the EOFError:</p>
<pre><code>File.open(filename).each do |line|
sline = FasterCSV.parse_line(line)
# Do stuff with sline
end
</code></pre>
http://stackoverflow.com/questions/1270227/what-is-the-fully-qualified-name-of-a-model-in-ruby-on-rails0What is the fully qualified name of a model in Ruby on Rails?Swanand2009-08-13T05:48:06Z2009-08-13T06:28:35Z
<p>If I have 2 different classes with name <code>User</code>, say one in <code>FooModule</code> and other as a model in <code>app/models/user.rb</code>, how do I make sure I am using the correct one?</p>
<p>EDIT:
<code>FooModule::User</code> would definitely give me the correct one. </p>
<p>What I had meant to ask was:
If <code>ApplicationController</code> includes <code>FooModule</code>, would <code>User</code> or <code>::User</code> still give me <code>app/models/user</code>?</p>
http://stackoverflow.com/questions/1259897/working-with-datetime-in-rails/1260081#12600815Answer by Swanand for Working with datetime in RailsSwanand2009-08-11T12:37:32Z2009-08-11T12:37:32Z<p>Time in String format:</p>
<pre><code>post.created_at.strftime("FORMAT STRING HERE")
# Without the influence of time-zone: I take it that you want UTC
post.created_at.utc.strftime("FORMAT STRING HERE")
</code></pre>
<p>Link for the <code>strftime</code> documentation:
<a href="http://ruby-doc.org/core/classes/Time.html#M000298" rel="nofollow">http://ruby-doc.org/core/classes/Time.html#M000298</a></p>
<p>For getting the hour, minute and second values:</p>
<pre><code>post.created_at.hour
post.created_at.min
post.created_at.sec
</code></pre>
http://stackoverflow.com/questions/1257489/how-to-check-if-an-element-in-one-multi-dimensional-ruby-array-exists-in-another/1258724#12587240Answer by Swanand for How to check if an element in one multi-dimensional Ruby array exists in another?Swanand2009-08-11T06:33:34Z2009-08-11T06:33:34Z<p>How about:</p>
<pre><code>(suspect.size + criminal.size) > (suspect | criminals).size
</code></pre>
<p>Sample:</p>
<pre><code>suspects = [['Rod', 100], ['Jane', 75], ['Freddy', 125]]
criminals = [['Bill', 75], ['Ted', 50], ['Rod', 75]]
guilty = (suspects.size + criminals.size) > (suspects | criminals).size
# Returns false. Since no common element was found in the merging.
criminals << ['Jane', 75]
guilty = (suspects.size + criminals.size) > (suspects | criminals).size
# Returns true. Since one element is common, merged array will be shorter by one.
</code></pre>
http://stackoverflow.com/questions/1221900/keeping-track-of-new-items-posts-comments-emails-in-a-database-ruby-on/1222000#12220000Answer by Swanand for Keeping track of 'new' items (posts, comments, emails...) in a database - Ruby on RailsSwanand2009-08-03T12:13:10Z2009-08-03T12:13:10Z<p>Precisely what <a href="http://stackoverflow.com/users/12950/tvanfosson">tvanfosson</a> said. Because, your example will fail when the user logs in but <em>does not</em> view the unread messages.</p>
<p>Set the default value of a post to <code>new</code> and set it to <code>viewed</code> on your first render. In Ruby on Rails, the first render would typically be the <code>show</code> action.</p>
http://stackoverflow.com/questions/1216093/dynamic-regex-in-ruby/1216137#12161370Answer by Swanand for Dynamic Regex in RubySwanand2009-08-01T08:08:14Z2009-08-01T08:08:14Z<p>Option 1:</p>
<blockquote>
<pre><code># Escape the slashes:
r = Regexp.new("[A-Za-z]+: Revision ...[\\w]+ committed by [A-Za-z\\s]+")
</code></pre>
</blockquote>
<p>Disadvantage: manually escape all known escape characters</p>
<p>Option 2:</p>
<blockquote>
<pre><code># Use slashes in constructor
r = Regexp.new(/[A-Za-z]+: Revision ...[\w]+ committed by [A-Za-z\s]+/)
</code></pre>
</blockquote>
<p>Disadvantage: None</p>
http://stackoverflow.com/questions/1215511/a-way-to-synchronize-data-between-an-external-device-and-a-database/1215937#12159370Answer by Swanand for A way to synchronize data between an external device and a database?Swanand2009-08-01T06:04:47Z2009-08-01T06:09:51Z<p>I have a similar structure, although I fetch my data from a Web Service. The way I organize is:</p>
<ol>
<li>Create classes in <code>lib/imports</code>, eg <code>DailyDataImport</code>, <code>DailyDataSummarize</code> (you can organize the hierarchy and names as per your wish or willingness).</li>
<li>Create a <code>rake</code> task under a new namespace, say <code>import</code> and add it to your cron job depending frequency. Take a look at <a href="http://railscasts.com/episodes/164-cron-in-ruby" rel="nofollow">Cron in Ruby</a>. Its helpful.</li>
</ol>
<p>This allows me to have a better control over what goes in my database.</p>
<p>Some questions to consider:</p>
<ol>
<li>What schedule does the Device follow
to populate the data?</li>
<li>Do you need the data as-is or you
want a little control over it or you
need to process it, like summarizing
and aggregating etc.</li>
</ol>
http://stackoverflow.com/questions/1211268/which-cms-features-do-you-need-in-rails/1212163#12121630Answer by Swanand for Which CMS features do you need in Rails?Swanand2009-07-31T12:01:01Z2009-07-31T12:01:01Z<p>A Django-like in feature but Rails-ish in nature Admin interface. That is the talk of the town these days..</p>
http://stackoverflow.com/questions/1206398/get-numbers-from-string/1211040#12110401Answer by Swanand for Get numbers from stringSwanand2009-07-31T06:55:24Z2009-07-31T06:55:24Z<p><a href="http://stackoverflow.com/questions/1206398/get-numbers-from-string/1206450#1206450">Arun's answer</a> is perfect if you want only digits.
i.e. </p>
<pre><code>"1|2 3 4 oh 5 oh oh|e eewrewr|7|".split('|')[1].scan(/\d/)
# Will return ["2", "3", "4", "5"]
"1|2 3 4 oh 55 oh oh|e eewrewr|7|".split('|')[1].scan(/\d/)
# Will return ["2", "3", "4", "5", "5"]
</code></pre>
<p>If you want numbers instead,</p>
<pre><code># Just adding a '+' in the regex:
"1|2 3 4 oh 55 oh oh|e eewrewr|7|".split('|')[1].scan(/\d+/)
# Will return ["2", "3", "4", "55"]
</code></pre>
http://stackoverflow.com/questions/1195902/whats-the-standard-for-percentages-in-active-record/1206780#12067800Answer by Swanand for What's the standard for percentages in Active Record?Swanand2009-07-30T13:56:34Z2009-07-30T13:56:34Z<p>I use <code>:float</code> often and works without problem for me.</p>
http://stackoverflow.com/questions/1744278/php-doctrine-orm-multiple-one-to-one-relations-to-the-same-class/1895609#1895609Comment by Swanand on PHP / Doctrine ORM multiple 'one-to-one' relations to the same classSwanand2009-12-14T07:29:47Z2009-12-14T07:29:47ZThis is the right way.http://stackoverflow.com/questions/1744278/php-doctrine-orm-multiple-one-to-one-relations-to-the-same-class/1744381#1744381Comment by Swanand on PHP / Doctrine ORM multiple 'one-to-one' relations to the same classSwanand2009-12-14T07:29:05Z2009-12-14T07:29:05ZI think that would be just <code>class</code>http://stackoverflow.com/questions/1866313/standard-idiom-for-adding-new-models-to-an-app-built-on-symfony-doctrine/1866366#1866366Comment by Swanand on Standard idiom for adding new models to an app built on Symfony + DoctrineSwanand2009-12-11T06:19:11Z2009-12-11T06:19:11ZYou are right, I removed them all from Base classes. Now managing it through schema.ymlhttp://stackoverflow.com/questions/1866313/standard-idiom-for-adding-new-models-to-an-app-built-on-symfony-doctrineComment by Swanand on Standard idiom for adding new models to an app built on Symfony + DoctrineSwanand2009-12-08T11:24:23Z2009-12-08T11:24:23ZNo i mean <code>build:all</code> will overwrite whatever functionality I have provided in the Base Classes.http://stackoverflow.com/questions/1865690/ruby-on-rails-undefined-methods-for-active-record/1865716#1865716Comment by Swanand on ruby on rails undefined method(s) for active record ..Swanand2009-12-08T10:59:49Z2009-12-08T10:59:49ZIt definitely is, look at the migration number. I think both the idioms were changed at the same time.http://stackoverflow.com/questions/1864154/getting-user-information-using-either-user-login-or-user-id/1864181#1864181Comment by Swanand on Getting user information using either user.login or user.idSwanand2009-12-08T08:48:31Z2009-12-08T08:48:31ZThis is the only way you can allow purely numeric logins and be able to search with both.http://stackoverflow.com/questions/1864154/getting-user-information-using-either-user-login-or-user-id/1864189#1864189Comment by Swanand on Getting user information using either user.login or user.idSwanand2009-12-08T08:47:41Z2009-12-08T08:47:41Z@Mikael : Apparently, yes. But not quite. You can always use 2 separate paths to specify what to search with.http://stackoverflow.com/questions/1864154/getting-user-information-using-either-user-login-or-user-idComment by Swanand on Getting user information using either user.login or user.idSwanand2009-12-08T08:46:35Z2009-12-08T08:46:35ZBy saying this: "Now this id can be either his login (which is a string) or the id (user.id) which is technically an Integer", you agree that your usernames cannot have purely numeric logins, without you having to specify different lookups for each.http://stackoverflow.com/questions/1830897/hasmany-belongsto-association-not-saving-due-to-polymorphic-associationsComment by Swanand on Has_many/belongs_to association not saving due to polymorphic associations?Swanand2009-12-02T07:55:54Z2009-12-02T07:55:54ZIs <code>u.update_actions << action</code> a typo for <code>update.update_actions << action</code> ?http://stackoverflow.com/questions/1803827/how-does-one-call-the-down-method-for-a-doctrine-migration-in-symfony-1-2/1803997#1803997Comment by Swanand on How does one call the down method for a Doctrine migration in Symfony 1.2?Swanand2009-11-26T15:02:52Z2009-11-26T15:02:52ZI was more inclined to find the command line way to run that method.http://stackoverflow.com/questions/1803827/how-does-one-call-the-down-method-for-a-doctrine-migration-in-symfony-1-2/1803997#1803997Comment by Swanand on How does one call the down method for a Doctrine migration in Symfony 1.2?Swanand2009-11-26T14:58:32Z2009-11-26T14:58:32ZRight. Had to read the code to figure that out. Didn't read the docs you mentioned.http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-k/1746724#1746724Comment by Swanand on Is there a name / set for characters that can be typed using a standard english keyboard?Swanand2009-11-17T05:11:11Z2009-11-17T05:11:11ZI think ASCII should settle it.http://stackoverflow.com/questions/1746715/is-there-a-name-set-for-characters-that-can-be-typed-using-a-standard-english-kComment by Swanand on Is there a name / set for characters that can be typed using a standard english keyboard?Swanand2009-11-17T05:09:13Z2009-11-17T05:09:13ZMy last option is saying 'typeable characters'.http://stackoverflow.com/questions/1718839/is-rails-hard-to-understand-for-a-php-developer/1719691#1719691Comment by Swanand on Is Rails hard to understand for a PHP developer?Swanand2009-11-12T10:14:12Z2009-11-12T10:14:12ZI wouldn't say a framework <code>foo</code> written in language <code>bar</code> is more complicated than <code>bar</code> itself! Languages are definitely more complicated to understand (to learn to use is a different case).http://stackoverflow.com/questions/1718839/is-rails-hard-to-understand-for-a-php-developer/1718886#1718886Comment by Swanand on Is Rails hard to understand for a PHP developer?Swanand2009-11-12T10:11:18Z2009-11-12T10:11:18ZAdd the Ruby Cookbook to it as well.