User berberich - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:14:43Zhttp://stackoverflow.com/feeds/user/732http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84985#849850Answer by berberich for What is the easiest or fastest way to make CSS render the same in all browsersberberich2008-09-17T16:22:59Z2008-09-17T16:22:59Z<p>I'd recommend taking a look at <a href="http://www.blueprintcss.org/" rel="nofollow">Blueprint</a> and <a href="http://960.gs/" rel="nofollow">960 Grid System</a>. </p>
<p>Besides doing resets and including CSS fixes for Internet Explorer, they'll both give you an easy to work with design grid that will take care of a lot of the tedious tweaking when building CSS-based layouts.</p>
http://stackoverflow.com/questions/69375/looking-for-ways-to-automate-web-site-testing/69429#694290Answer by berberich for Looking for ways to automate web site testingberberich2008-09-16T04:39:39Z2008-09-16T04:39:39Z<p>I can think of a couple of good web application testing suites that should get the job done - one free/open source and one commercial:</p>
<ol>
<li><a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a> (open source/cross platform)</li>
<li><a href="http://www.automatedqa.com/products/testcomplete/index.asp" rel="nofollow">TestComplete</a> (commercial/Windows-based)</li>
</ol>
<p>Both will let you create test suites by verifying database records based on interactions with the web app.</p>
<p>The fact that you're Windows/ASP based <em>might</em> mean that TestComplete will get you up and running faster, as it's native to Windows and .NET. You can download a free trial to see if it'll work for you before making the investment.</p>
http://stackoverflow.com/questions/64380/using-apache-modrewrite-to-remove-sub-directories-from-url2Using Apache mod_rewrite to remove sub-directories from URLberberich2008-09-15T16:22:00Z2008-09-15T16:41:54Z
<p>I'm managing an instance of Wordpress where the URLs are in the following format:</p>
<pre><code>http://www.example.com/example-category/blog-post-permalink/
</code></pre>
<p>The blog author did an inconsistent job of adding categories to posts, so while some of them had legitimate categories in their URLS, at least half are "uncategorized".</p>
<p>I can easily change Wordpress to render the URL w/o the category name (e.g., <code>http://www.example.com/blog-post-permalink/</code>), but I'd like to create a mod_rewrite rule to automatically redirect any requests for the previous format to the new, cleaner one.</p>
<p>Do you have a good mod_rewrite recipe to handle this, taking into account that I want to honor requests for the real WordPress directories that are in my webroot?</p>
http://stackoverflow.com/questions/40655/simple-ajax-php-contact-form-with-validation/40668#406684Answer by berberich for Simple Ajax/PHP contact form with validationberberich2008-09-02T21:06:41Z2008-09-02T21:06:41Z<p><a href="http://www.dustindiaz.com/ajax-contact-form/" rel="nofollow">This one</a> is a few years old, but should work fine.</p>
<p>Personally, I'd recommend taking a look at the jQuery <a href="http://plugins.jquery.com/project/form" rel="nofollow">Form Plug-in</a>. It's not plug and play, but it's well tested and easy to build on top of.</p>
http://stackoverflow.com/questions/26085/what-is-a-good-content-management-system-to-deploy-for-a-personal-website-blog/40649#406491Answer by berberich for What is a good Content Management System to deploy for a personal website/blog?berberich2008-09-02T20:58:41Z2008-09-02T20:58:41Z<p>I'd take a peek at <a href="http://expressionengine.com/" rel="nofollow">ExpressionEngine</a>. It runs on PHP and MySQL, and makes a good CMS in addition to being a good blog engine.</p>
<p>It's not open source, but there is a free version called "Core".</p>
http://stackoverflow.com/questions/10836/your-experience-with-net-based-cms/33069#330694Answer by berberich for Your experience with .Net based CMSberberich2008-08-28T18:48:42Z2008-08-28T18:48:42Z<p>The open source <a href="http://umbraco.org/" rel="nofollow">Umbraco</a> CMS seems like it's worth a look. I haven't built anything on top of it yet, but it's my choice for a future website project after evaluating it.</p>
<p>It seems to be <a href="http://umbraco.org/documentation" rel="nofollow">pretty well documented</a>, including its <a href="http://umbraco.org/apiDocs/" rel="nofollow">API</a>.</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/8866#88660Answer by berberich for What good technology podcasts are out there?berberich2008-08-12T14:10:02Z2008-08-12T14:10:02Z<p>In addition to many of the other great ones listed, here are a couple of others for specific technologies that I regularly listen to:</p>
<ul>
<li><a href="http://blog.michaeltrier.com/tags/twid" rel="nofollow" title="http://www.scribd.com/doc/2547864/msnetformattingstrings">This Week in Django</a></li>
<li><a href="http://blogs.vmware.com/vmtn/podcasts/index.html" rel="nofollow" title="DNR TV">VMware Communities Roundtable</a></li>
</ul>
http://stackoverflow.com/questions/8213/generate-insert-sql-statements-from-a-csv-file/8434#84340Answer by berberich for Generate Insert SQL statements from a csv fileberberich2008-08-12T03:22:10Z2008-08-12T03:22:10Z<p>I use a slight variation on Balloon's <a href="http://beta.stackoverflow.com/questions/8213/generate-insert-sql-statements-from-a-csv-file#8220" rel="nofollow">Excel technique</a>.</p>
<p>I <strong>highly</strong> recommend downloading the <em>free</em> <a href="http://www.asap-utilities.com" rel="nofollow">ASAP Utilities</a> plug-in for Excel. One of the many time saving tools they include are <a href="http://www.asap-utilities.com/asap-utilities-excel-tools-tip.php?tip=79&utilities=Text" rel="nofollow">insert before current value</a> and <a href="http://www.asap-utilities.com/asap-utilities-excel-tools-tip.php?tip=80&utilities=Text" rel="nofollow">insert after current value</a> options.</p>
<p>Those should let you reach a solution quicker by helping you build your insert statements.</p>
http://stackoverflow.com/questions/1410407/how-to-increase-clickonce-download-speed/1410464#1410464Comment by berberich on How to increase ClickOnce download speed?berberich2009-09-23T16:08:09Z2009-09-23T16:08:09ZYou can turn on HTTP compression in IIS to decrease the download file size. This has made a significant difference for us.http://stackoverflow.com/questions/64380/using-apache-modrewrite-to-remove-sub-directories-from-url/64429#64429Comment by berberich on Using Apache mod_rewrite to remove sub-directories from URLberberich2008-09-15T16:54:22Z2008-09-15T16:54:22ZThat seems to work great with my testing so far. Thanks for the help!