<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Finely Cultured &#187; How-To</title>
	<atom:link href="http://finelycultured.com/category/tech/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://finelycultured.com</link>
	<description>Eric Danielson&#039;s Personal Blog</description>
	<lastBuildDate>Tue, 10 Aug 2010 04:30:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Mac OS X Tip: Use a solid color background of any color</title>
		<link>http://finelycultured.com/2009/11/mac-os-x-tip-use-a-solid-color-background-of-any-color/</link>
		<comments>http://finelycultured.com/2009/11/mac-os-x-tip-use-a-solid-color-background-of-any-color/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 23:20:38 +0000</pubDate>
		<dc:creator>Eric Danielson</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://finelycultured.com/?p=47</guid>
		<description><![CDATA[I&#8217;ve been annoyed by the inability to easily set a solid color background since I started using OS X. Apple ships a couple &#8220;Solid background&#8221; png files, but they&#8217;re without fail Not the colors I want. Turns out, there&#8217;s a nice, easy way to get a solid color background of your choice that doesn&#8217;t involve [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been annoyed by the inability to easily set a solid color background since I started using OS X. Apple ships a couple &#8220;Solid background&#8221; png files, but they&#8217;re without fail Not the colors I want.</p>
<p>Turns out, there&#8217;s a nice, easy way to get a solid color background of your choice that doesn&#8217;t involve making a new image for each color you want. OS X supports transparency in PNGs used as wallpaper, showing the desktop color through the transparent parts. If you use a small transparent PNG and set it to &#8220;Center&#8221;, you&#8217;ll get a solid color desktop, and you can change the color using the color picker next to the &#8220;Center&#8221; pull-down.</p>
<p>I&#8217;ve conveniently attached a 128&#215;128 totally transparent png file below:</p>
<div id="attachment_48" class="wp-caption aligncenter" style="width: 138px"><img class="size-full wp-image-48 " title="blank" src="http://finelycultured.com/wp-content/uploads/2009/11/blank.png" alt="Save me and use me as wallpaper!" width="128" height="128" /><p class="wp-caption-text">Right-click above me!</p></div>
<p>Save this file to your &#8220;Pictures&#8221; folder, open up System Preferences, pick Desktop &amp; Screensaver, select the blank picture, and choose &#8220;Center&#8221; from the orientation pulldown menu. A color selection will appear to the left &#8211; click it, and select the color you want your desktop to be.</p>
<p>Simple, but this has been periodically bugging the hell out of me for about a decade now.</p>
<p>Note: This is based on a tip on MacOSXHints, found here:<br />
<a href="http://www.macosxhints.com/article.php?story=20021002055217828"> http://www.macosxhints.com/article.php?story=20021002055217828</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finelycultured.com/2009/11/mac-os-x-tip-use-a-solid-color-background-of-any-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Apache2&#8242;s Digest authentication</title>
		<link>http://finelycultured.com/2009/09/using-apache2s-digest-authentication/</link>
		<comments>http://finelycultured.com/2009/09/using-apache2s-digest-authentication/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:48:32 +0000</pubDate>
		<dc:creator>Eric Danielson</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://finelycultured.com/?p=25</guid>
		<description><![CDATA[I finally got Apache&#8217;s Digest authentication, and since there&#8217;s a serious dearth of information online about getting Digest working, I decided I&#8217;d write up a bit. It&#8217;s not difficult, but I&#8217;ve had far more trouble than I should have, and most of that&#8217;s due to nonexistant documentation. Why Digest? Standard HTTP auth sends the password [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got Apache&#8217;s Digest authentication, and since there&#8217;s a serious dearth of information online about getting Digest working, I decided I&#8217;d write up a bit. It&#8217;s not difficult, but I&#8217;ve had far more trouble than I should have, and most of that&#8217;s due to nonexistant documentation.</p>
<h2>Why Digest?</h2>
<p>Standard HTTP auth sends the password in plaintext, which is generally bad. On sites with an SSL cert, this is less of a problem, since the traffic is encrypted to begin with, but on smaller sites, it&#8217;s a lot of overhead to set up SSL.<br />
Digest authentication hashes the password before sending it &#8211; it&#8217;s an MD5, which isn&#8217;t great, but it&#8217;s also not your password flapping in the breeze, so to speak. It&#8217;s a good intermediate step to make sure you&#8217;re not transmitting plaintext passwords anywhere.</p>
<h2>What&#8217;s the drawback?</h2>
<p>There&#8217;s a very small performance hit, and it&#8217;s not as easy to set up, but the biggest drawback is that you have to rebuild your apache users file.</p>
<h2>So how do I do it?</h2>
<p>Digest is very similar to standard Apache access configuration, with just a couple changes.</p>
<ol>
<li>Make sure you have digest enabled &#8211; if you have shell access, type:<br />
<code>a2enmod auth_digest</code><br />
otherwise, in your httpd.conf or apache2.conf file, include the line:<br />
<code>LoadModule auth_digest_module modules/mod_auth_digest.so</code></li>
<li>Create your new Digest authentication file. At the shell, type:<br />
<code><br />
cd /var/www/<br />
htdigest -c .digest Internal Admin<br />
</code><br />
Note: This code creates a user named Admin in the realm &#8220;Internal&#8221; &#8211; we&#8217;ll get to realms later.<br />
You&#8217;ll be asked for a password, and then asked to confirm the password.</li>
<li>Create your .htaccess file in the directory you want to protect &#8211; in this case, we&#8217;ll assume it&#8217;s http://(yourdomain)/Private:<br />
<code><br />
BrowserMatch "MSIE" AuthDigestEnableQueryStringHack=On<br />
AuthType Digest<br />
AuthName "Internal"<br />
AuthDigestDomain /Private<br />
AuthUserFile /var/www/.digest<br />
Require user valid-user<br />
</code><br />
The first line is necessary to make Digest work for IE6. IE7 seems fine.<br />
AuthName is the realm you chose earlier &#8211; Digest allows you to make multiple &#8220;realms&#8221; to protect different directories.<br />
Also, note the AuthUserFile line &#8211; Apache docs swear that line should read AuthDigestFile. It shouldn&#8217;t.</li>
</ol>
<p>That&#8217;s it &#8211; you&#8217;re using Digest!<br />
The code is interchangeable anywhere you&#8217;d normally use standard Apache password auth, and you can use all the other normal .htaccess commands as well. It&#8217;s just a mildly more secure, and horrendously documented, alternative to standard HTTP authentication.</p>
<p><a href="Authentication, Authorization and Access Control">Apache.org: Authentication, Authorization and Access Control</a><br />
<a href="http://httpd.apache.org/docs/2.0/mod/mod_auth_digest.html">Apache.org: Apache Module mod_auth_digest</a></p>
]]></content:encoded>
			<wfw:commentRss>http://finelycultured.com/2009/09/using-apache2s-digest-authentication/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
