User dylanfm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T11:40:06Z http://stackoverflow.com/feeds/user/38795 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1628175/why-developers-think-php-is-easy-language/1628195#1628195 0 Answer by dylanfm for Why developers think PHP is easy language ? dylanfm 2009-10-27T00:55:10Z 2009-10-27T00:55:10Z <p>Aside from the language itself, it's super easy to deploy PHP applications. PHP in comparison to Rails for example (in the days before mod_rails) is a walk in the park to get going.</p> http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/323559#323559 9 Answer by dylanfm for Git for beginners: The definitive practical guide dylanfm 2008-11-27T11:56:59Z 2009-10-16T00:24:40Z <h1>GUIs for git</h1> <h2>Git GUI</h2> <p>Included with git - Run <code>git gui</code> from the command line, and the Windows <a href="http://code.google.com/p/msysgit/" rel="nofollow">msysgit</a> installer adds it to the Start menu.</p> <p>Git GUI can do a majority of what you'd need to do with git. Including staging changes, configuring git and repositories, pushing changes, creating/checkout/deleting branches, merging, and many other things.</p> <p>One of my favourite features is the "stage line" and "stage hunk" shortcuts in the right-click menu, which lets you commit specific parts of a file. You can achieve the same via <code>git add -i</code>, but I find it easier to use.</p> <p>It isn't the prettiest application, but it works on almost all platforms (being based upon Tcl/Tk)</p> <p><a href="http://www.spearce.org/2007/01/git-gui-screenshots.html" rel="nofollow">Screenshots</a> | <a href="http://www.simplicidade.org/notes/archives/2008/10/gitgui%5Fscreenca.html" rel="nofollow">a screencast</a></p> <h2><a href="http://www.kernel.org/pub/software/scm/git/docs/gitk.html" rel="nofollow">GitK</a></h2> <p>Also included with git. It is a git history viewer, and lets you visualise a repositories history (including branches, when they are created, and merged). You can view and search commits</p> <p>Goes together with git-gui nicely</p> <h2><a href="http://github.com/Caged/gitnub/wikis" rel="nofollow">Gitnub</a></h2> <p>Mac OS X application. Mainly an equivalent of <code>git log</code>, but has some integration with <a href="http://github.com/Caged/gitnub/tree/master" rel="nofollow">github</a> (like the "Network view")</p> <p>Looks pretty, and fits with Mac OS X. You can search repositories. The biggest critisism of Gitnub is that it shows history in a linear fashion (a single branch at a time) - it doesn't visualise branching and merging, which can be important with git, although this is a planned improvement.</p> <p><a href="http://github.com/Caged/gitnub/wikis" rel="nofollow">Download links, change log and screenshots</a> | <a href="http://github.com/Caged/gitnub/tree/master" rel="nofollow">git repository</a></p> <h2><a href="http://gitx.frim.nl/" rel="nofollow">GitX</a></h2> <p>Intends to be a "gitk clone for OS X".</p> <p>It can visualise non-linear branching history, perform commits, view and search commits, and it has some other nice features like being able to "Quicklook" any file in any revision (press space in the file-list view), export any file (via drag and drop)</p> <p>Although it is currently still "under development", it is quite usable, and again far better integrated into OS X than <code>git-gui</code>/<code>gitk</code></p> <p><a href="http://gitx.frim.nl/index.html" rel="nofollow">Download</a> | <a href="http://gitx.frim.nl/seeit.html" rel="nofollow">Screenshots</a> | <a href="http://github.com/pieter/gitx/tree/master" rel="nofollow">git repository</a></p> <h2><a href="http://www.syntevo.com/smartgit/index.html" rel="nofollow">SmartGit</a></h2> <p>From the homepage: </p> <blockquote> <p>SmartGit is a front-end for the distributed version control system Git and runs on Windows, Mac OS X and Linux. SmartGit is intended for developers who prefer a graphical user interface over a command line client, to be even more productive with Git — the most powerful DVCS today.</p> </blockquote> <p>SmartGit hasn't been released yet, but you can download it in its pre-release state from <a href="http://www.syntevo.com/smartgit/index.html" rel="nofollow">their website</a>.</p> <p><em>Big thanks to <a href="http://stackoverflow.com/users/745/dbr">dbr</a> for elaborating on the git gui stuff.</em></p> http://stackoverflow.com/questions/1431965/i-have-two-versions-of-ruby-1-8-7-and-1-9-installed-how-to-specify-which-one-fo/1433064#1433064 1 Answer by dylanfm for I have two versions of Ruby (1.8.7 and 1.9) installed how to specify which one for rails? or does it matter dylanfm 2009-09-16T13:46:05Z 2009-09-16T13:46:05Z <p>I use <a href="http://modrails.com/" rel="nofollow">passenger/mod_rails</a> for development locally (on Mac OSX Snow Leopard). In the apache (or nginx) conf file where passenger's settings live, you set a "PassengerRuby" environment variable. You can point this to whichever ruby installation you're wanting to use (don't forget to restart apache afterwards).</p> <p>I'm using <a href="http://rvm.beginrescueend.com/" rel="nofollow">RVM</a> at the moment for managing my ruby installations. In my user's apache conf file I've got the default Mac OSX snow leopard 1.8.7 set up with passenger, and then also one for a 1.8.6 installation via RVM. Whichever one I want to use is left un-commented. Here's how it looks at the moment:</p> <pre><code># Default passenger LoadModule passenger_module /Library/Ruby/Gems/1.8/gems/passenger-2.2.5/ext/apache2/mod_passenger.so PassengerRoot /Library/Ruby/Gems/1.8/gems/passenger-2.2.5 PassengerRuby /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby # Use RVM 1.8.6 ruby # LoadModule passenger_module /Users/dylanfm/.rvm/gems/ruby/1.8.6/gems/passenger-2.2.5/ext/apache2/mod_passenger.so # PassengerRoot /Users/dylanfm/.rvm/gems/ruby/1.8.6/gems/passenger-2.2.5 # PassengerRuby /Users/dylanfm/.rvm/bin/ruby-1.8.6-p383 </code></pre> http://stackoverflow.com/questions/1334741/web-design-advice-questions-to-webdesign-gurus-mentors/1334892#1334892 1 Answer by dylanfm for Web Design Advice - Questions to WebDesign Gurus/Mentors dylanfm 2009-08-26T14:00:13Z 2009-08-27T00:14:11Z <p>Making cool sites is good an all, but to get to the next level you first need to make sure you can build <strong>usable</strong> sites. Once you are able to keep things to the bare necessities and provide the user with an enjoyable experience, you'll be able to add bling and pizazz in appropriate doses.</p> <p><strong>Some paths:</strong></p> <ul> <li><a href="http://www.sensible.com/buythebook.html" rel="nofollow">Dont Make Me Think</a></li> <li>Learn more about <a href="http://www.rosenfeldmedia.com/books/webforms/" rel="nofollow">form design</a></li> <li>Participate in local groups like the <a href="http://webstandardsgroup.org/" rel="nofollow">WSG</a></li> <li>Learn about information architecture (read <a href="http://oreilly.com/catalog/9780596527341/" rel="nofollow">the polar bear book</a> if you want to)</li> <li>Find out more about <a href="http://joeclark.org/book/sashay/serialization/" rel="nofollow">accessibility</a></li> <li>When you find yourself frustrated with a website take care to find out <em>why</em></li> <li>Subscribe to some blogs like <a href="http://www.useit.com/alertbox/" rel="nofollow">Jakob Neilsen's Alertbox</a>, <a href="http://www.alistapart.com/" rel="nofollow">Alistapart</a> and ... (there are a bazillion more out there, but I need to go to bed)</li> </ul> <p><em>Update</em></p> <p>On the other hand, I just was pointed to this presentation regarding form &amp; function: <a href="http://www.slideshare.net/stephenpa/eye-candy-is-a-critical-business-requirement" rel="nofollow">Eye Candy IS A Critical Business Requirement</a>.</p> http://stackoverflow.com/questions/1326576/rails-2-3-3-setting-to-production-mode/1326686#1326686 2 Answer by dylanfm for Rails 2.3.3 - Setting to production mode dylanfm 2009-08-25T07:53:44Z 2009-08-25T07:53:44Z <p>You'll need to set the RackEnv instead of RailsEnv. Actually, I just do both (although I mightn't need to...?).</p> <p>Example vhost for a Rails 2.3 app:</p> <pre><code>&lt;VirtualHost *:80&gt; ... RackEnv production RailsEnv production ... &lt;/VirtualHost&gt; </code></pre> http://stackoverflow.com/questions/1310951/input-field-events-using-jquery/1310978#1310978 1 Answer by dylanfm for Input field events using jquery dylanfm 2009-08-21T09:37:56Z 2009-08-21T09:37:56Z <p>You might want to look at using a jQuery form validation plugin. I've had success with <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">this one</a> in the past.</p> http://stackoverflow.com/questions/1304058/javascript-seo/1304140#1304140 1 Answer by dylanfm for Javascript & SEO dylanfm 2009-08-20T05:36:24Z 2009-08-20T05:36:24Z <p>Important content, whether it be needed for SEO, accessibility or both, should be available to users (or in this case, bots) without JS. Although, recently I read <a href="http://clipperhouse.com/blog/post/The-Googlebot-runs-Javascript.aspx" rel="nofollow">this little blog post</a> which says that Google bot has JS.</p> http://stackoverflow.com/questions/1210861/how-do-i-split-a-string-in-ruby-maintaining-whitespaces-in-the-split/1210893#1210893 2 Answer by dylanfm for How do I split a string in ruby maintaining whitespaces in the split dylanfm 2009-07-31T06:09:37Z 2009-07-31T06:09:37Z <p>Hopefully this helps..</p> <pre><code>&gt;&gt; "hello\t World\nbla".scan(/\w+\s*/) =&gt; ["hello\t ", "World\n", "bla"] </code></pre> http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1191048#1191048 -1 Answer by dylanfm for Common mistakes for CSS-designers to avoid? dylanfm 2009-07-27T22:39:14Z 2009-07-27T22:39:14Z <p>Try to use either margin or padding, rather than both, on an element. You can save yourself from some browser issues.</p> http://stackoverflow.com/questions/1134139/how-would-you-code-this-the-so-menu/1134717#1134717 0 Answer by dylanfm for How would you code this: The SO Menu dylanfm 2009-07-15T23:53:47Z 2009-07-15T23:53:47Z <p>I would use an unordered list for the navigation. The <code>li</code> elements would be floated left. The anchors within the <code>li</code>'s would be styled to give the needed look. </p> <p>Rather than using a <code>youarehere</code> class on the active link, I'd apply a class to the body and show the active links somewhat like this: <code>body.questions ul.nav li.questions-link:link, body.questions ul.nav li.questions-link:visited {...}</code>. (Probably not using this much of a selector). The body class allows you to do further customisation without much hassle (i.e. different background images or colour schemes and so on).</p> <p>The SO logo would be a <code>h1</code> using image replacement with CSS to show the image instead.</p> <p>Any IE browser issues would be handled with conditional comments. </p> http://stackoverflow.com/questions/1117254/github-doubt-sync-repo/1117390#1117390 1 Answer by dylanfm for Github doubt - sync repo dylanfm 2009-07-13T01:16:52Z 2009-07-13T01:16:52Z <p>I think you might want to look at what <a href="http://github.com/guides/fork-a-project-and-submit-your-modifications" rel="nofollow">the forking guide</a> says beneath "<strong>Pulling in upstream changes</strong>". The upstream branch isn't some magic branch though, you'll need to have your repo set up like their's in that tutorial. If there's a conflict, I think you'll just need to merge it like any other merge conflict in git.</p> http://stackoverflow.com/questions/1072035/how-do-you-develop-outside-in-rails-app-using-cucumber-rspec/1072072#1072072 3 Answer by dylanfm for How do you develop outside-in Rails app using Cucumber & RSpec? dylanfm 2009-07-02T02:01:02Z 2009-07-02T02:01:02Z <p>I generally think of Cucumber as a way to do integration testing on your application. Combined with Webrat, you can test user workflows, views and so on in a great way. For unit tests, you'll want to go down to a lower level and test your models just with rspec. You may also want to do some functional tests on the controllers, and I probably wouldn't use Cucumber for that either.</p> <p>Here are a couple of videos:</p> <ul> <li><a href="http://mwrc2009.confreaks.com/14-mar-2009-15-00-bdd-with-cucumber-ben-mabey.html" rel="nofollow">http://mwrc2009.confreaks.com/14-mar-2009-15-00-bdd-with-cucumber-ben-mabey.html</a></li> <li><a href="http://rubyconf2008.confreaks.com/rspec-and-cucumber.html" rel="nofollow">http://rubyconf2008.confreaks.com/rspec-and-cucumber.html</a></li> </ul> http://stackoverflow.com/questions/1071881/equality-testing-in-javascript/1071917#1071917 4 Answer by dylanfm for Equality testing in Javascript dylanfm 2009-07-02T00:05:14Z 2009-07-02T00:05:14Z <p><code>thisName</code> and <code>oldName</code> are both arrays, do something like this:</p> <pre><code>var oldName = name1.name.split('_',1)[0]; //dave var thisName= name2.name.split('_',1)[0]; //dave </code></pre> <p>And I think it should work.</p> http://stackoverflow.com/questions/1062961/date-parsing-with-regular-expressions-in-javascript/1063042#1063042 0 Answer by dylanfm for Date parsing with regular expressions in JavaScript dylanfm 2009-06-30T10:50:16Z 2009-06-30T10:50:16Z <p>Hopefully this helps:</p> <pre><code>var digitpattern = /\d+/g, datetime = '2009-05-11 16:59:20', matches = datetime.match(digitpattern); console.log ('year = ' + matches[0]); console.log ('month = ' + matches[1]); console.log ('day = ' + matches[2]); console.log ('hour = ' + matches[3]); console.log ('minutes = ' + matches[4]); console.log ('seconds = ' + matches[5]); </code></pre> <p>Or, you might like to use something like <a href="http://www.datejs.com/" rel="nofollow">DateJS</a>.</p> http://stackoverflow.com/questions/980675/ruby-add-to-array-simple-question/980707#980707 1 Answer by dylanfm for ruby add to array... simple question dylanfm 2009-06-11T12:04:09Z 2009-06-11T12:04:09Z <p><code>@build</code> will need to be an array, or an object that responds to <code>&lt;&lt;</code>, for <code>@build &lt;&lt;</code> to work.</p> <p>When you've done:</p> <pre><code>@build = @build1 + @build2 </code></pre> <p>What is the value of <code>@build</code>?</p> http://stackoverflow.com/questions/978799/is-there-an-easy-way-to-convert-jquery-code-to-javascript/978829#978829 1 Answer by dylanfm for is there an easy way to convert jquery code to javascript? dylanfm 2009-06-11T00:55:56Z 2009-06-11T00:55:56Z <p>Jeremy Keith's book "<a href="http://domscripting.com/book" rel="nofollow">DOM Scripting</a>" is a great intro to working with Javascript and the DOM. I highly recommend it, whether you want to use jQuery or not. It's good to know what's going on beneath.</p> http://stackoverflow.com/questions/973650/base-send-include-instancemethods-what-does-this-do/973666#973666 0 Answer by dylanfm for "base.send :include, InstanceMethods" ---> What does this do? dylanfm 2009-06-10T04:21:07Z 2009-06-10T04:21:07Z <p>It's defining a class method which takes a parameter "<code>base</code>". It then calls the <code>include</code> and <code>extend</code> methods on <code>base</code>, passing the module <code>InstanceMethods</code> and <code>ClassMethods</code> as arguments, respectively. The call to <code>include</code> will add the instance methods defined in <code>InstanceMethods</code> to <code>base</code>. I'm not familiar with the <code>extend</code> method, but I assume it will do something like that too, but for class methods.</p> http://stackoverflow.com/questions/945644/is-there-a-way-to-check-what-fonts-are-installed-on-machines-via-the-web/949819#949819 0 Answer by dylanfm for Is there a way to check what fonts are installed on machines via the web? dylanfm 2009-06-04T10:48:58Z 2009-06-04T10:48:58Z <p>Checkout the jQuery plug-in <a href="http://github.com/philoye/fontunstack/tree/master" rel="nofollow">FontUnstack</a>, from this <a href="http://stackoverflow.com/questions/929537/all-about-choosing-the-right-font-for-a-website/931848#931848">question</a>.</p> http://stackoverflow.com/questions/944107/where-to-put-these-code-in-a-rails-web-application/944184#944184 2 Answer by dylanfm for Where to put these code in a Rails web application? dylanfm 2009-06-03T11:13:59Z 2009-06-03T11:39:21Z <p>If this is always used with one model I'd put it in that model. The <code>self.</code> before your method name means that it's a class method, so if you define the method like this:</p> <pre><code>class Milestone &lt; ActiveRecord::Base def self.number_of_months(start_date,to_date) # Get how many months you want to view from the start months (to_date.month - start_date.month) + (to_date.year - start_date.year) * 12 + 1 end end </code></pre> <p>You'd use it by doing this:</p> <pre><code>Milestone.number_of_months(date1,date2) </code></pre> <p>Or you might want to put it in the <code>config/initializers</code> directory. For example, create a file called <code>date.rb</code> in the directory containing:</p> <pre><code>class Date def self.number_of_months(start_date,to_date) # Get how many months you want to view from the start months (to_date.month - start_date.month) + (to_date.year - start_date.year) * 12 + 1 end end </code></pre> <p>This will be available as a class method to the Date class.</p> <p><em>My first answer before I noticed that you mention the method needs to be used in controllers and models. Helpers are used for views, this probably won't be of assistance to you.</em></p> <p>This should be a helper method. There's a helper module for each controller, but there's also an application-wide one. That method is fine to put in there, just make sure it's not a class method (remove the <code>self.</code>). If you don't want to add the method to the application helper, you can use the <code>helper</code> declaration in a controller along with the helper module it belongs to i.e. if the method is in <code>date_range_helper.rb</code> use <code>helper :date_range</code>.</p> http://stackoverflow.com/questions/929537/all-about-choosing-the-right-font-for-a-website/931848#931848 2 Answer by dylanfm for All about choosing the right font for a website dylanfm 2009-05-31T11:04:42Z 2009-05-31T11:04:42Z <p>Use the right typeface for your site. It's not as simple as saying "this is the best font for websites". Here are two quotes (read principles) from Robert Bringhurst's <a href="http://rads.stackoverflow.com/amzn/click/0881791326" rel="nofollow">"The Elements of Typographic Style"</a>:</p> <ul> <li>"Typography exists to honor content."</li> <li>"Choose faces that suit the task as well as the subject."</li> </ul> <p>On another note, unless a serif face really suits the website, sans-serif faces are more appropriate for digital media.</p> <p>With regards to your second point, Phil Oye has recently released <a href="http://github.com/philoye/fontunstack/tree/master" rel="nofollow">FontUnstack</a>, a jQuery plugin which will tell you what font is being used for a given element. The element will be given a class (i.e. "<code>set_in_gill_sans</code>") through which you can apply specific styles for different typefaces.</p> <p>Also, check out the <a href="http://media.24ways.org/2007/17/fontmatrix.html" rel="nofollow">font matrix</a> (1.5 years old) and these well thought-out <a href="http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/" rel="nofollow">font-stacks</a>.</p> http://stackoverflow.com/questions/903160/in-ruby-on-rails-2-3-2-how-to-print-out-params-during-a-create-action/903216#903216 1 Answer by dylanfm for in Ruby on Rails 2.3.2, how to print out params during a create action? dylanfm 2009-05-24T06:24:16Z 2009-05-24T06:24:16Z <p>If you're on a Mac, <a href="http://github.com/mmower/spike/tree/master" rel="nofollow">Spike</a> is a great little app the analyses log files and will let you inspect params for requests, amongst other things.</p> http://stackoverflow.com/questions/881887/how-do-i-provide-info-to-google-about-interesting-important-pages-on-my-website/881999#881999 0 Answer by dylanfm for How do I provide info to Google about interesting/important pages on my website? dylanfm 2009-05-19T10:36:22Z 2009-05-19T10:36:22Z <p>In your <a href="http://sitemaps.org" rel="nofollow">sitemap</a> you can specify priority for pages.</p> http://stackoverflow.com/questions/846639/git-ignore-file-for-c-projects 1 Git ignore file for C projects dylanfm 2009-05-11T03:30:20Z 2009-05-13T15:53:01Z <p>I've just started to learn C (using <a href="http://mindview.net/CDs/ThinkingInC/beta3" rel="nofollow">Thinking In C</a>) and I'm wondering about what files I should be ignoring in a C project's git repository. </p> <p>No suggestion can be too obvious -- I'm a total noob. Thanks!</p> http://stackoverflow.com/questions/842839/how-to-call-an-attraccessor-attribtue-inside-the-class-but-outside-any-methods/842932#842932 1 Answer by dylanfm for How to call an attr_accessor attribtue inside the class (but outside any methods)? dylanfm 2009-05-09T08:17:05Z 2009-05-09T08:17:05Z <p>Have a look at the <code>initialize</code> method in <a href="http://github.com/jnunemaker/httparty/blob/8da360fb4dbc54041a0e65e5b78a83ad408b7db4/examples/aaws.rb" rel="nofollow">this example file</a> from the Github repo. I haven't used HTTParty before, but this looks like what you're after.</p> <p>Also, from your example, it looks like you're mixing up class methods and instance variables.</p> http://stackoverflow.com/questions/832941/what-was-your-first-programming-book/833221#833221 0 Answer by dylanfm for What was your first programming book? dylanfm 2009-05-07T06:52:39Z 2009-05-07T06:52:39Z <p>PHP and MySQL for Dynamic Websites by Larry Ulman</p> http://stackoverflow.com/questions/828241/unable-to-install-gem/828719#828719 0 Answer by dylanfm for Unable to install gem dylanfm 2009-05-06T09:01:23Z 2009-05-06T09:01:23Z <p>You may need to <a href="http://rubygems.org/read/chapter/3#page14" rel="nofollow">update rubygems</a>.</p> http://stackoverflow.com/questions/822980/what-are-the-must-have-ruby-gems/823208#823208 1 Answer by dylanfm for What are the "Must Have" Ruby Gems dylanfm 2009-05-05T03:37:28Z 2009-05-05T03:37:28Z <ul> <li><strong>rake</strong></li> <li><strong>autotest</strong> (zentest)</li> <li>rspec</li> <li>shoulda</li> <li>cucumber</li> <li>webrat</li> <li>machinist</li> </ul> http://stackoverflow.com/questions/805222/how-to-copy-a-local-git-branch-to-a-remote-repo/805230#805230 0 Answer by dylanfm for How to copy a local Git branch to a remote repo dylanfm 2009-04-30T03:20:28Z 2009-04-30T03:20:28Z <p>This <a href="http://github.com/guides/push-a-branch-to-github" rel="nofollow">page on Github guides</a> might help you out (it's not Github specific).</p> http://stackoverflow.com/questions/93915/conferences-that-offer-videos-for-downloading/788924#788924 1 Answer by dylanfm for Conferences that offer videos for downloading? dylanfm 2009-04-25T13:30:30Z 2009-04-25T13:30:30Z <p>The <a href="http://developer.yahoo.net/blogs/theater/" rel="nofollow">Yahoo! Developer Network</a> has some great videos up. Some good javascript ones, especially <a href="http://developer.yahoo.net/blogs/theater/archives/2007/01/douglas%5Fcrockford%5Fan%5Finconveni.html" rel="nofollow">Douglas</a> <a href="http://developer.yahoo.net/blogs/theater/archives/2007/01/douglas%5Fcrockford%5Fadvanced%5Fjav.html" rel="nofollow">Crockford's</a> (there are more than these 2).</p> http://stackoverflow.com/questions/775699/what-ruby-programming-book-should-i-read-first/776663#776663 1 Answer by dylanfm for What Ruby programming book should I read first? dylanfm 2009-04-22T11:04:49Z 2009-04-22T11:04:49Z <p>I read Programming Ruby (pickaxe) first, then The Ruby Programming Language. I'm happy I read them in that order. </p> <p>The pickaxe book gives you a good overview of Ruby and it has a good reference section too. After familiarising myself with Ruby through the Pickaxe, I went to the much more in depth The Ruby Programming Language. Partially written by Matz, Ruby's creator, it goes quite deep into Ruby and provides lots of great insight into making use of Ruby's many features. I has a great metaprogramming section too.</p> http://stackoverflow.com/questions/1739139/using-order-and-limit-options-ruby-on-rails/1739172#1739172 Comment by dylanfm on Using :order and :limit options - Ruby On Rails dylanfm 2009-11-16T01:11:44Z 2009-11-16T01:11:44Z It might not be called &quot;Date&quot;. Try &quot;date&quot;, &quot;created_at&quot; or &quot;updated_at&quot;. http://stackoverflow.com/questions/1660619/change-an-input-field-before-submit/1660651#1660651 Comment by dylanfm on Change an input field before submit dylanfm 2009-11-02T11:16:36Z 2009-11-02T11:16:36Z Be sure to allow for more than just a click, some people might submit a form with return or tab&gt;space/tab&gt;return. http://stackoverflow.com/questions/1571601/best-way-to-code-iterator-in-javascript/1571631#1571631 Comment by dylanfm on Best way to code iterator in javascript dylanfm 2009-10-15T11:05:55Z 2009-10-15T11:05:55Z Yea, but you'll want to make sure that customObject.hasOwnProperty(a) returns true for each method/property. Otherwise you could end up with inherited stuff. http://stackoverflow.com/questions/1475808/cumulative-array-sum-in-ruby/1475854#1475854 Comment by dylanfm on Cumulative array sum in Ruby dylanfm 2009-09-25T07:18:29Z 2009-09-25T07:18:29Z Whoops first one was very ugly http://stackoverflow.com/questions/1304058/javascript-seo/1304140#1304140 Comment by dylanfm on Javascript & SEO dylanfm 2009-08-21T06:15:06Z 2009-08-21T06:15:06Z Ah thanks. I should've paid more attention :) http://stackoverflow.com/questions/1210861/how-do-i-split-a-string-in-ruby-maintaining-whitespaces-in-the-split Comment by dylanfm on How do I split a string in ruby maintaining whitespaces in the split dylanfm 2009-07-31T06:37:09Z 2009-07-31T06:37:09Z Yea definitely. I think there's one coming up on Tuesday August 11. And there's Railscamp in November too. http://stackoverflow.com/questions/1210861/how-do-i-split-a-string-in-ruby-maintaining-whitespaces-in-the-split Comment by dylanfm on How do I split a string in ruby maintaining whitespaces in the split dylanfm 2009-07-31T06:12:53Z 2009-07-31T06:12:53Z BTW Sam, your profile almost has 1337 views hehe. Hello to a fellow Sydney-sider. http://stackoverflow.com/questions/1190953/common-mistakes-for-css-designers-to-avoid/1191044#1191044 Comment by dylanfm on Common mistakes for CSS-designers to avoid? dylanfm 2009-07-27T22:40:52Z 2009-07-27T22:40:52Z Absolutely, but on some sites this is necessary. Sometimes CMS (vendors) split things into fairly small chunks and modules so that your CSS ends up looking like this. http://stackoverflow.com/questions/1134139/how-would-you-code-this-the-so-menu/1134152#1134152 Comment by dylanfm on How would you code this: The SO Menu dylanfm 2009-07-16T02:54:13Z 2009-07-16T02:54:13Z As well as :hover, you should add a :focus for keyboard use. http://stackoverflow.com/questions/1083565/parsing-xml-namespaces/1083656#1083656 Comment by dylanfm on Parsing XML namespaces? dylanfm 2009-07-05T08:45:41Z 2009-07-05T08:45:41Z I think you can just use getElementsByTagName(&quot;yweather:astronomy&quot;) with IE. Also, Google feeds API has a cross browser implementation. Maybe you can use that, or something like it: <a href="http://code.google.com/apis/ajaxfeeds/documentation/reference.html#getElementsByTagNameNS" rel="nofollow">code.google.com/apis/ajaxfeeds/&hellip;</a> http://stackoverflow.com/questions/855027/ruby-on-rails-or-a-php-framework/893912#893912 Comment by dylanfm on Ruby on Rails or a PHP framework dylanfm 2009-06-12T13:34:04Z 2009-06-12T13:34:04Z RoR's performance has been improved immensely over the past year or so. It now outperforms all the popular PHP frameworks. http://stackoverflow.com/questions/980675/ruby-add-to-array-simple-question/980734#980734 Comment by dylanfm on ruby add to array... simple question dylanfm 2009-06-11T12:37:02Z 2009-06-11T12:37:02Z This is probably a good place to use inject too. <a href="http://www.ruby-doc.org/core/classes/Enumerable.html#M003171" rel="nofollow">ruby-doc.org/core/classes/&hellip;</a> http://stackoverflow.com/questions/931722/check-this-web-optimization-report-how-can-i-fix-it/931759#931759 Comment by dylanfm on Check this web optimization report - how can I fix it? dylanfm 2009-05-31T09:45:36Z 2009-05-31T09:45:36Z Sprites are certainly a good idea. http://stackoverflow.com/questions/929535/what-development-notepad-should-i-use/929807#929807 Comment by dylanfm on What development notepad should I use? dylanfm 2009-05-30T14:39:19Z 2009-05-30T14:39:19Z Yes, its not free, but Textmate kicks butt. Well worth the investment! http://stackoverflow.com/questions/929772/how-do-i-validate-xhtml-atom-and-css-in-ruby Comment by dylanfm on How do I validate XHTML, ATOM, and CSS in Ruby? dylanfm 2009-05-30T14:38:42Z 2009-05-30T14:38:42Z A shameless plug, and there are a few of these around, but I wrote a little markup validator gem which uses the w3c api you can see it here <a href="http://github.com/DylanFM/please_validate/tree/master" rel="nofollow">github.com/DylanFM/please_validate/&hellip;</a>