User ryw - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:06:33Z http://stackoverflow.com/feeds/user/2477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328525/what-is-the-best-way-to-set-default-values-in-activerecord 9 What is the best way to set default values in ActiveRecord? ryw 2008-11-30T06:27:29Z 2009-11-13T09:56:19Z <p><strong>What is the best way to set default value in ActiveRecord?</strong></p> <p>I see a post from Pratik that describes an ugly, complicated chunk of code: <a href="http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model" rel="nofollow">http://m.onkey.org/2007/7/24/how-to-set-default-values-in-your-model</a></p> <pre><code>class Item &lt; ActiveRecord::Base def initialize_with_defaults(attrs = nil, &amp;block) initialize_without_defaults(attrs) do setter = lambda { |key, value| self.send("#{key.to_s}=", value) unless !attrs.nil? &amp;&amp; attrs.keys.map(&amp;:to_s).include?(key.to_s) } setter.call('scheduler_type', 'hotseat') yield self if block_given? end end alias_method_chain :initialize, :defaults end </code></pre> <p>YUCK!</p> <p>I have seen the following examples googling around:</p> <pre><code> def initialize super self.status = ACTIVE unless self.status end </code></pre> <p>and</p> <pre><code> def after_initialize return unless new_record? self.status = ACTIVE end </code></pre> <p>I've also seen people put it in their migration, but I'd rather see it defined in the model code.</p> <p>What's the best way to set default value for fields in ActiveRecord model?</p> http://stackoverflow.com/questions/1726681/freetds-bad-token-from-the-server-sql-server 0 FreeTDS Bad token from the server (sql-server) ryw 2009-11-13T02:07:02Z 2009-11-13T02:47:15Z <p>Today we had a lot more activity than normal between our Rails app and our remote legacy MS-SQL Server 2005 database, and we started getting the error below intermittently. Any ideas what it is + how to prevent (besides avoiding the situation, which we're working on :)</p> <h2>Error Message:</h2> <p>ActiveRecord::StatementInvalid: DBI::DatabaseError: 08S01 (20020) [unixODBC][FreeTDS][SQL Server]Bad token from the server: Datastream processing out of sync: SELECT * FROM [marketing] WHERE ([marketing].[contact_id] = 832085)</p> http://stackoverflow.com/questions/23899/best-practices-for-refactoring-classic-asp 6 Best practices for refactoring classic ASP? ryw 2008-08-23T02:56:37Z 2009-11-04T11:02:51Z <p>I've got to do some significant development in a large, old, spaghetti-ridden ASP system. I've been away from ASP for a long time, focusing my energies on Rails development.</p> <p>One basic step I've taken is to refactor pages into subs and functions with meaningful names, so that at least it's easy to understand @ the top of the file what's generally going on.</p> <p>Is there a worthwhile MVC framework for ASP? Or a best practice at how to at least get business logic out of the views? (I remember doing a lot of includes back in the day -- is that still the way to do it?)</p> <p>I'd love to get some unit testing going for business logic too, but maybe I'm asking too much?</p> http://stackoverflow.com/questions/1495844/find-records-that-have-children-records-that-match-all-entries-in-a-list 1 Find records that have children records that match all entries in a list ryw 2009-09-30T02:26:25Z 2009-10-10T02:11:53Z <pre><code>def DogOwner &lt; ActiveRecord::Base has_many :dogs has_many :breeds, :through =&gt; dogs def self.with_breeds(breeds) # returns a list of DogOwner records who own all breeds in the list # ex: DogOwner.with_breeds("Dalmation","Poodle") # or it could be DogOwner.with_breed_ids(1,3) which would only require # a join down to the dogs table - I could live with that. # do i need to hand generate SQL with n levels of subselects? # or is there something in ActiveRecord that handles this magically? end end </code></pre> http://stackoverflow.com/questions/1495844/find-records-that-have-children-records-that-match-all-entries-in-a-list/1495899#1495899 1 Answer by ryw for Find records that have children records that match all entries in a list ryw 2009-09-30T02:55:11Z 2009-09-30T03:05:57Z <p>I figured out a way using a list of child ids:</p> <pre><code>DogOwner.all(:joins =&gt; :dogs, :conditions =&gt; "dogs.breed_id in (#{list_of_breeds})", :group =&gt; 'dog_owners.id', :having =&gt; "count(*) = #{list_of_breeds.size}") </code></pre> <p>Credit: <a href="http://codeclimber.blogspot.com/2009/05/joins-and-namedscopes-in-activerecord.html" rel="nofollow">Ethan Vizitei's Blog Post</a> inspired the solution.</p> http://stackoverflow.com/questions/426319/should-you-charge-a-customer-for-bug-fixes/1429743#1429743 0 Answer by ryw for Should you charge a customer for bug fixes? ryw 2009-09-15T21:35:23Z 2009-09-15T21:35:23Z <p>Many of these answers assume a waterfall, fixed-price project approach.</p> <p>In the agile/TDD web development world that I live in, if I am working on the project T&amp;M, <em>all</em> work is billable.</p> <p>A bug can be looked at as a feature that hasn't been considered. And I would write a failing test to document the bug, then fix it and make the test pass. It's the same thing as creating a new feature, but in reverse order of implementation. We'd normally want to write the test before the implementation code.</p> <p>No software is bug free; you cannot consider every future edge case.</p> http://stackoverflow.com/questions/40456/sql-missing-rows-when-grouped-by-day-month-year/40619#40619 0 Answer by ryw for sql missing rows when grouped by DAY, MONTH, YEAR ryw 2008-09-02T20:50:00Z 2009-04-03T17:19:13Z <p><a href="http://stackoverflow.com/users/51836/clark">My developer</a> got back to me with this code, underscores converted to dashes because StackOverflow was mangling underscores -- no numbers table required. Our example is complicated a bit by a join to another table, but maybe the code example will help someone someday.</p> <pre><code>declare @career-fair-id int select @career-fair-id = 125 create table #data ([date] datetime null, [cumulative] int null) declare @event-date datetime, @current-process-date datetime, @day-count int select @event-date = (select careerfairdate from tbl-career-fair where careerfairid = @career-fair-id) select @current-process-date = dateadd(day, -90, @event-date) while @event-date &lt;&gt; @current-process-date begin select @current-process-date = dateadd(day, 1, @current-process-date) select @day-count = (select count(*) from tbl-career-fair-junction where attendanceregister &lt;= @current-process-date and careerfairid = @career-fair-id) if @current-process-date &lt;= getdate() insert into #data ([date], [cumulative]) values(@current-process-date, @day-count) end select * from #data drop table #data </code></pre> http://stackoverflow.com/questions/40456/sql-missing-rows-when-grouped-by-day-month-year 2 sql missing rows when grouped by DAY, MONTH, YEAR ryw 2008-09-02T20:06:25Z 2009-04-03T17:19:13Z <p>If I select from a table group by the month, day, year, it only returns rows with records and leaves out combinations without any records, making it appear at a glance that every day or month has activity, you have to look at the date column actively for gaps. How can I get a row for every day/month/year, even when no data is present, in T-SQL?</p> http://stackoverflow.com/questions/492297/dbnetlibconnectionopen-secdoclienthandshake-ssl-security-error 1 [DBNETLIB][ConnectionOpen (SECDoClientHandshake()).]SSL Security error. ryw 2009-01-29T16:16:10Z 2009-02-27T15:19:10Z <p>Our ASP/IIS web server talks to a SQL 2005 db server.</p> <p>Eventually, without a pattern, some pages start showing error instead of the page content:</p> <p>[DBNETLIB][ConnectionOpen (SECDoClientHandshake()).]SSL Security error.</p> <p>Rebooting web server resolves it.</p> <p>Anyone know about it?</p> http://stackoverflow.com/questions/447058/in-rails-fixtures-who-is-quentin 5 In Rails fixtures, who is Quentin? ryw 2009-01-15T14:59:54Z 2009-01-17T01:21:51Z <p>In acts-as-authenticated, and now restful-authentication, the first user fixture is "Quentin." </p> <p>Just curious if anyone knows the origin of that name? Quentin Tarantino? Someone's dog or child?</p> http://stackoverflow.com/questions/447058/in-rails-fixtures-who-is-quentin/451734#451734 3 Answer by ryw for In Rails fixtures, who is Quentin? ryw 2009-01-16T19:55:27Z 2009-01-16T19:55:27Z <p>Answer from Rick Olson = <a href="http://en.wikipedia.org/wiki/Quentin_Quire" rel="nofollow">http://en.wikipedia.org/wiki/Quentin_Quire</a></p> http://stackoverflow.com/questions/18671/quick-easy-way-to-migrate-sqlite3-to-mysql/284044#284044 2 Answer by ryw for Quick easy way to migrate SQLite3 to MySQL? ryw 2008-11-12T14:10:30Z 2008-11-12T14:10:30Z <p>It's messy because dump files are database vendor specific. </p> <p>If you're using Rails, a great plugin exists for this. Read: <a href="http://blog.heroku.com/archives/2007/11/23/yamldb_for_databaseindependent_data_dumps/" rel="nofollow">http://blog.heroku.com/archives/2007/11/23/yamldb_for_databaseindependent_data_dumps/</a></p> http://stackoverflow.com/questions/156083/how-do-screen-scrapers-work/156094#156094 3 Answer by ryw for How do screen scrapers work? ryw 2008-10-01T03:15:07Z 2008-10-01T03:15:07Z <p>General idea: <a href="http://en.wikipedia.org/wiki/Screen_scraping" rel="nofollow">http://en.wikipedia.org/wiki/Screen_scraping</a></p> <p>Ruby + Python (and I'm sure other languages) have nice libraries for providing high-level, rapid coding.</p> http://stackoverflow.com/questions/156030/coming-up-with-creative-ideas-for-games/156064#156064 2 Answer by ryw for Coming up with Creative Ideas for Games ryw 2008-10-01T03:01:20Z 2008-10-01T03:10:36Z <p>Same way you come up with ideas for anything. Steal shamelessly.</p> <p>Here's a site: <a href="http://www.mygameideas.com/top_rated_ideas/of_all_time" rel="nofollow">http://www.mygameideas.com/top_rated_ideas/of_all_time</a></p> http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming/145834#145834 0 Answer by ryw for Python Vs. Ruby for Metaprogramming ryw 2008-09-28T13:29:25Z 2008-09-28T13:29:25Z <p>Ruby is my choice after exploring Python, Smalltalk, and Ruby.</p> http://stackoverflow.com/questions/137623/is-test-driven-development-good-for-a-starter/137662#137662 2 Answer by ryw for Is Test Driven Development good for a starter? ryw 2008-09-26T03:48:21Z 2008-09-26T03:48:21Z <pre><code>def self.learn_tdd_and_programming_together? if you_have_tdd_mentor_sitting_next_to_you? "go for it" else if language.ruby? "it's possible, there is quite a bit of good stuff out there that could give you a chance of learning programming with TDD from the start. It's sort of in the ruby culture" elsif language.dot_net? "learn TDD after you learn the basics of .NET" end end end </code></pre> http://stackoverflow.com/questions/137399/unit-testing-without-assertions/137606#137606 2 Answer by ryw for Unit Testing without Assertions ryw 2008-09-26T03:32:11Z 2008-09-26T03:32:11Z <p>If there is no assertion, it isn't a test.</p> <p>Quit being lazy -- it may take a little time to figure out how to get the assertion in there, but well worth it to know that it did what you expected it to do.</p> http://stackoverflow.com/questions/137469/can-you-and-should-you-straddle-both-worlds-linux-and-windows/137590#137590 0 Answer by ryw for Can you (and should you) straddle both worlds (Linux and Windows) ryw 2008-09-26T03:25:20Z 2008-09-26T03:25:20Z <p>Depends on your goals... if you want to master programming, you need to become "multi-lingual" across many dimensions.</p> <p>If you're content with being "highly proficient", you can stick to one language and ride it quite a long way.</p> http://stackoverflow.com/questions/137521/how-to-protect-a-rails-model-attribute/137538#137538 1 Answer by ryw for How to protect a Rails model attribute? ryw 2008-09-26T03:08:11Z 2008-09-26T03:08:11Z <p>Not as pretty as a one liner, but code below should work (and you could always do some metaprogramming to write an 'immutable' method)</p> <pre><code>def address_id=(id) if new_record? write_attribute(:address_id, id) else raise 'address is immutable!' end end </code></pre> http://stackoverflow.com/questions/129991/should-i-start-with-ruby-or-ruby-on-rails/130003#130003 3 Answer by ryw for Should I start with Ruby or Ruby On Rails? ryw 2008-09-24T21:09:50Z 2008-09-24T21:29:58Z <p>Start with Rails. </p> <p><a href="http://www.pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition" rel="nofollow">Agile Web Development with Rails</a> is now in 3rd edition in beta form, so you can buy beta PDF right now for $24 and be coding late into the night tonight :)</p> http://stackoverflow.com/questions/125195/i-tried-to-learn-python-and-ruby-but-i-need-a-good-project-with-which-i-can-lear/125311#125311 1 Answer by ryw for I tried to learn Python and Ruby but [I need a good project with which I can learn them] ryw 2008-09-24T03:45:32Z 2008-09-24T03:45:32Z <p>On Ruby side, check out <a href="http://www.pragprog.com/screencasts/v-dtrubyom/the-ruby-object-model-and-metaprogramming" rel="nofollow">this screencast series</a>. Very inspirational on the power of dynamic languages. I think you're just not inspired enough :)</p> http://stackoverflow.com/questions/125269/how-would-you-handle-users-who-dont-read-dialog-boxes/125278#125278 11 Answer by ryw for How would you handle users who don't read dialog boxes? ryw 2008-09-24T03:36:12Z 2008-09-24T03:36:12Z <p>Immediately Steve Krug's book <a href="http://www.sensible.com/buythebook.html" rel="nofollow">Don't Make Me Think</a> comes to mind.</p> <p>In the design of dialog boxes, status messages back to user, etc. it is good to use iconography and color hints as to what the words actually say.</p> <p>So highlight error messages red, warnings yellow, etc. </p> http://stackoverflow.com/questions/123665/what-are-the-most-important-prerequisites-to-start-my-own-software-company/123898#123898 2 Answer by ryw for What are the most important prerequisites to start my own software company? ryw 2008-09-23T21:07:35Z 2008-09-23T21:07:35Z <ul> <li>Constraints: start it on the side while you have a full-time job</li> <li>Revenue: don't jump out of the comfy boat until your rickety little raft has at least some actual revenue</li> <li>Patience: following the two rules above minimize risk/exposure to you and your family. You'll feel slowed down as a result.</li> </ul> http://stackoverflow.com/questions/123537/washed-out-user-interface-is-there-any-way-to-correct-for-it/123643#123643 3 Answer by ryw for Washed out user interface - is there any way to correct for it? ryw 2008-09-23T20:26:00Z 2008-09-23T21:04:04Z <p>You chose a bad palette.</p> <p>Do some work on the UI; introduce more natural contrast.</p> <p>You wouldn't want to add programming to work around the bad palette choice, even if you could. </p> <p>Just change the colors. </p> http://stackoverflow.com/questions/62292/are-liquid-layouts-still-relevant/62979#62979 -1 Answer by ryw for Are liquid layouts still relevant? ryw 2008-09-15T13:43:24Z 2008-09-15T13:43:24Z <p>Best practice is to use a centered 950px div -- check out <a href="http://www.blueprintcss.org/" rel="nofollow">Blueprint</a> for a great framework to make it easy to do cross-browser (among other benefits).</p> http://stackoverflow.com/questions/48012/how-do-the-cakephp-and-codeigniter-frameworks-compare-to-the-asp-net-mvc-framewor/49384#49384 0 Answer by ryw for How do the CakePHP and codeigniter frameworks compare to the ASP.NET MVC framework? ryw 2008-09-08T09:43:13Z 2008-09-08T09:43:13Z <p>ASP.NET MVC is sparsely documented at present -- and of course it depends on your background. If you don't know ASP.NET yet, I wouldn't recommend jumping into it with ASP.NET MVC, too many layers of learning at once.</p> http://stackoverflow.com/questions/45179/are-there-benefits-to-classic-asp-over-asp-net/45184#45184 4 Answer by ryw for Are there benefits to Classic ASP over ASP.net ryw 2008-09-05T03:26:54Z 2008-09-05T03:26:54Z <p>For simple sites, I actually prefer ASP vs. ASP.NET, especially if you know HTML well. However with ASP, separating business logic from view is hard; the code you write will likely be challenging to read + maintain.</p> <p>PHP is better than ASP though - and somewhat similar at the basic level. And you could always go to Rails or Django, if you're interested in self-contained web development stack (but a lot longer learning curve).</p> http://stackoverflow.com/questions/42908/where-is-the-chink-in-google-chromes-armor/42914#42914 6 Answer by ryw for Where is the chink in Google Chrome's armor?? ryw 2008-09-04T00:31:16Z 2008-09-04T00:31:16Z <p>They have crossed over from a web browser as a tool to view web pages, to a tool optimized to to work for web applications. There may be some flaws in this initial release, but they are changing the game.</p> http://stackoverflow.com/questions/35615/what-is-a-good-online-resource-for-css-design-patterns/35681#35681 1 Answer by ryw for What is a good online resource for css 'design patterns'? ryw 2008-08-30T04:15:39Z 2008-08-30T04:15:39Z <ul> <li><a href="http://www.csszengarden.com/" rel="nofollow">CSSZenGarden</a></li> <li><a href="http://cssdesignpatterns.com/" rel="nofollow">CSSDesignPatterns</a></li> </ul> http://stackoverflow.com/questions/30067/should-i-migrate-to-asp-net-mvc/30147#30147 1 Answer by ryw for Should I migrate to ASP.NET MVC? ryw 2008-08-27T13:46:15Z 2008-08-27T13:46:15Z <p>No, you shouldn't. Feel free to try it out on a new project, but a lot of people familiar with ASP.NET webforms aren't loving it yet, due to having to muck around with raw HTML + lots of different concepts + pretty slim pickings on documentation/tutorials. </p> http://stackoverflow.com/questions/1495844/find-records-that-have-children-records-that-match-all-entries-in-a-list/1495899#1495899 Comment by ryw on Find records that have children records that match all entries in a list ryw 2009-10-01T13:16:26Z 2009-10-01T13:16:26Z Good point Sam - in my real use case the list is all generated from system data, no user input - and not as fun of a domain :) http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates/388640#388640 Comment by ryw on Rails - setting multiple layouts for a multipart email with mailer templates ryw 2009-06-02T19:28:46Z 2009-06-02T19:28:46Z maybe should put the monkey patch as an initializer? http://stackoverflow.com/questions/492297/dbnetlibconnectionopen-secdoclienthandshake-ssl-security-error/529479#529479 Comment by ryw on [DBNETLIB][ConnectionOpen (SECDoClientHandshake()).]SSL Security error. ryw 2009-02-18T19:53:08Z 2009-02-18T19:53:08Z no resolution yet :( http://stackoverflow.com/questions/447058/in-rails-fixtures-who-is-quentin/452614#452614 Comment by ryw on In Rails fixtures, who is Quentin? ryw 2009-01-19T02:33:58Z 2009-01-19T02:33:58Z I know -- was just reading a PDF on testing by Noel Rappin, saw &quot;Quentin&quot; in there and the question struck me ;) http://stackoverflow.com/questions/156030/coming-up-with-creative-ideas-for-games/156064#156064 Comment by ryw on Coming up with Creative Ideas for Games ryw 2008-10-01T03:06:49Z 2008-10-01T03:06:49Z Clarification: steal from worthy sources ;) I am not one of 'em! http://stackoverflow.com/questions/137399/unit-testing-without-assertions/137429#137429 Comment by ryw on Unit Testing without Assertions ryw 2008-09-26T03:35:46Z 2008-09-26T03:35:46Z i disagree - it's not pragmatic, it's lazy ;) http://stackoverflow.com/questions/137521/how-to-protect-a-rails-model-attribute/137551#137551 Comment by ryw on How to protect a Rails model attribute? ryw 2008-09-26T03:19:48Z 2008-09-26T03:19:48Z nice - didn't know the method existed ;) @Gishu no i don't think it would block saving model - it would just ignore changes to the fields listed in *attributes http://stackoverflow.com/questions/137550/is-programming-math Comment by ryw on Is Programming == Math? ryw 2008-09-26T03:13:10Z 2008-09-26T03:13:10Z programming == art too http://stackoverflow.com/questions/137519/how-do-i-programmatically-show-or-hide-the-outlook-envelope-icon Comment by ryw on How do I programmatically show or hide the Outlook envelope icon? ryw 2008-09-26T03:11:09Z 2008-09-26T03:11:09Z programmatically? http://stackoverflow.com/questions/125269/how-would-you-handle-users-who-dont-read-dialog-boxes/125278#125278 Comment by ryw on How would you handle users who don't read dialog boxes? ryw 2008-09-24T03:47:06Z 2008-09-24T03:47:06Z Definitely. The whole premise of the book is that it's really not possible to interrupt/stop most users ;) http://stackoverflow.com/questions/125019/beginner-looking-for-beautiful-and-instructional-python-code/125052#125052 Comment by ryw on Beginner looking for beautiful and instructional Python code ryw 2008-09-24T03:39:50Z 2008-09-24T03:39:50Z when i saw this question, it took me .1 seconds to think of this book - too bad the answer was already here :) voted up!