User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:35:13Zhttp://stackoverflow.com/feeds/user/7366http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/673655/how-can-i-improve-loading-times-on-a-static-html-site/673726#6737261Answer by davidok for How can I improve loading times on a static HTML site?davidok2009-03-23T15:01:32Z2009-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
<FilesMatch "\.(ico|gif|jpe?g|png|js|css)$">
ExpiresDefault "access plus 1 year"
</FilesMatch>
</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#1862816Answer by davidok for Is it time to start using HTML5?davidok2008-10-09T07:38:50Z2008-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#1775891Answer by davidok for How do I change the index page for rails?davidok2008-10-07T08:25:50Z2008-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#1135383Answer by davidok for Running SQL Server on the Web Serverdavidok2008-09-22T07:03:20Z2008-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#629660Answer by davidok for Learning Ruby on Railsdavidok2008-09-15T13:41:57Z2008-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#711745Comment by on Why isn't Smalltalk popular?2009-04-03T02:59:05Z2009-04-03T02:59:05ZPython is already installed on recent version of OS X too.