User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:35:13Z http://stackoverflow.com/feeds/user/7366 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/673655/how-can-i-improve-loading-times-on-a-static-html-site/673726#673726 1 Answer by davidok for How can I improve loading times on a static HTML site? davidok 2009-03-23T15:01:32Z 2009-03-23T15:01:32Z <p>Enable caching for image files (the example below also adds css and js caching) which will ensure users don't download files twice. If you are using apache 1.3 or 2:</p> <pre><code>ExpiresActive On &lt;FilesMatch "\.(ico|gif|jpe?g|png|js|css)$"&gt; ExpiresDefault "access plus 1 year" &lt;/FilesMatch&gt; </code></pre> <p>It is probably a reasonable idea to enable gzip compression for html and css. In apache 2:</p> <pre><code>SetOutputFilter DEFLATE </code></pre> <p>and in apache 1.3:</p> <pre><code>mod_gzip_on Yes </code></pre> http://stackoverflow.com/questions/186264/is-it-time-to-start-using-html5/186281#186281 6 Answer by davidok for Is it time to start using HTML5? davidok 2008-10-09T07:38:50Z 2008-10-09T07:38:50Z <p><a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(HTML_5)" rel="nofollow">Comparison of Layout Engines (HTML 5)</a></p> <p>So, No.</p> http://stackoverflow.com/questions/177062/how-do-i-change-the-index-page-for-rails/177589#177589 1 Answer by davidok for How do I change the index page for rails? davidok 2008-10-07T08:25:50Z 2008-10-07T08:25:50Z <p>Don't forget to restart your server.</p> <p>You can also run rake routes to show all the known routes and make sure everything looks sane.</p> http://stackoverflow.com/questions/113531/running-sql-server-on-the-web-server/113538#113538 3 Answer by davidok for Running SQL Server on the Web Server davidok 2008-09-22T07:03:20Z 2008-09-22T07:03:20Z <p>It really comes down to how much work your webserver and your sql server are doing.</p> <p>Without more information I doubt you are going to get any helpful answers.</p> http://stackoverflow.com/questions/55574/learning-ruby-on-rails/62966#62966 0 Answer by davidok for Learning Ruby on Rails davidok 2008-09-15T13:41:57Z 2008-09-15T13:41:57Z <p>I have found "The Rails Way" by Obie Fernandez excellent and often found myself referring to it when Agile Web Development with Rails didn't seem to go far enough. Obie Fernandez has a decent <a href="http://obiefernandez.com/" rel="nofollow">blog</a> too.</p> http://stackoverflow.com/questions/711140/why-isnt-smalltalk-popular/711745#711745 Comment by on Why isn't Smalltalk popular? 2009-04-03T02:59:05Z 2009-04-03T02:59:05Z Python is already installed on recent version of OS X too.