<?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>Notorious Webmaster</title>
	<atom:link href="http://www.notoriouswebmaster.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.notoriouswebmaster.com</link>
	<description>Building the Interweb, one byte at a time.</description>
	<lastBuildDate>Thu, 02 Sep 2010 16:55:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Alfred&#8217;s CSS3 Notes &#8211; Multi-Column Text</title>
		<link>http://www.notoriouswebmaster.com/2010/09/02/alfreds-css3-notes-multi-column-text/</link>
		<comments>http://www.notoriouswebmaster.com/2010/09/02/alfreds-css3-notes-multi-column-text/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 16:55:55 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=539</guid>
		<description><![CDATA[Only supported in Webkit and Gecko, at the moment.  Not available in Opera or IE.
section#mysection {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-width: 15em;
-moz-column-width: 15em;
column-width: 15em;
-webkit-column-gap: 5em;
-mox-column-gap: 5em;
column-gap: 5em;
-webkit-column-rule: 2px solid #ff0000;
-mox-column-rule: 2px solid #ff0000;
column-rule: 2px solid #ff0000;
}
Cannot:

select a given column
size columns differently
specify percentages

column-rule property allows for border type effect between columns.
]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/09/02/alfreds-css3-notes-multi-column-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred&#8217;s OS X Notes &#8211; Screenshots and Screen Captures</title>
		<link>http://www.notoriouswebmaster.com/2010/08/29/alfreds-os-x-notes-screenshots-and-screen-captures/</link>
		<comments>http://www.notoriouswebmaster.com/2010/08/29/alfreds-os-x-notes-screenshots-and-screen-captures/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 14:46:40 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[knife the mac]]></category>
		<category><![CDATA[weekend sysadmin]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[screen capture]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[skitch]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=518</guid>
		<description><![CDATA[Every once in a while I need to take a screenshot or screen capture in OS X.  (So what&#8217;s the difference between a screenshot and a screen capture?  None really, as far as I know.  But you have to include both so people searching for either will find these nuggets of wisdom.) [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/08/29/alfreds-os-x-notes-screenshots-and-screen-captures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred&#8217;s Apache Notes</title>
		<link>http://www.notoriouswebmaster.com/2010/08/26/alfreds-apache-notes/</link>
		<comments>http://www.notoriouswebmaster.com/2010/08/26/alfreds-apache-notes/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 02:56:42 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[conf]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[notes]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=469</guid>
		<description><![CDATA[A few notes on configuring Apache.
Creating aliases within virtual host
	ServerName example.com
	ServerAlias examplea.com
	ServerAlias exampleb.com
	ServerAlias examplec.com

Running HTML files through PHP
AddType application/x-httpd-php .html
]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/08/26/alfreds-apache-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred&#8217;s CSS3 Notes &#8211; Text Properties</title>
		<link>http://www.notoriouswebmaster.com/2010/08/26/alfreds-cs3-notes/</link>
		<comments>http://www.notoriouswebmaster.com/2010/08/26/alfreds-cs3-notes/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 02:54:40 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=479</guid>
		<description><![CDATA[Text Shadow
text-shadow: 1px 1px 5px #BCBCBC, -1px -1px 3px #FF0000;
In this example, we have two shadows separated by commas.  The first element is the horizontal offset, the second, the vertical offset; the third is the blur; and finally, the colour.
Text Stroke
Only available in Webkit.  Draws a border around the text.
-webkit-text-stroke: 1px #000;

Also comes [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/08/26/alfreds-cs3-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred&#8217;s CSS3 Notes &#8211; Selectors</title>
		<link>http://www.notoriouswebmaster.com/2010/08/20/alfreds-css3-notes-selectors/</link>
		<comments>http://www.notoriouswebmaster.com/2010/08/20/alfreds-css3-notes-selectors/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 17:31:50 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=486</guid>
		<description><![CDATA[Target Selector
Applies styling when the selector is in a target state.  Which is to say it is the target of a hash mark in the URL.
#container:target {
&#160;&#160;background-color: #f6f6f6;
}
Adjacent Sibling Selector
From CSS2:
h2 + p {}
Will select the second element when it immediately follows the first. (Reference)
General Sibling Selector
From CSS3:
h2 ~ p {}
Selects all p&#8217;s that [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/08/20/alfreds-css3-notes-selectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TextMate Notes</title>
		<link>http://www.notoriouswebmaster.com/2010/07/03/textmate-notes/</link>
		<comments>http://www.notoriouswebmaster.com/2010/07/03/textmate-notes/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 15:35:26 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=458</guid>
		<description><![CDATA[The time has come, the walrus said, to sit your fat ass down and learn TextMate.  How can you code if you don&#8217;t know your tools?  So, for now, just a few links I think I may want to keep around.
Multi-Stroke Key Bindings
Revert To Default Bundles
GetBundle
]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/07/03/textmate-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Beat the Rogers Quick Start Menu</title>
		<link>http://www.notoriouswebmaster.com/2010/06/27/finally-beat-the-rogers-quick-start-menu/</link>
		<comments>http://www.notoriouswebmaster.com/2010/06/27/finally-beat-the-rogers-quick-start-menu/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 17:15:44 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[bidness]]></category>
		<category><![CDATA[pop goes the culture]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=447</guid>
		<description><![CDATA[In January, Rogers introduced a new feature to its cable TV subscribers: a Quick Start Menu.  What&#8217;s on this menu?  How can it help me?  It doesn&#8217;t matter.  The brain trust at Rogers decided to put the menu behind the &#8220;Guide&#8221; button, which normally brings up the Integrated Program Guide (IPG). [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/06/27/finally-beat-the-rogers-quick-start-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The State of the Interwebs</title>
		<link>http://www.notoriouswebmaster.com/2010/03/03/the-state-of-the-interwebs/</link>
		<comments>http://www.notoriouswebmaster.com/2010/03/03/the-state-of-the-interwebs/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 15:20:15 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[cyberculture]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=435</guid>
		<description><![CDATA[
JESS3 / The State of The Internet from JESS3 on Vimeo.
]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/03/03/the-state-of-the-interwebs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Podcasts We Love</title>
		<link>http://www.notoriouswebmaster.com/2010/02/23/podcasts-we-love/</link>
		<comments>http://www.notoriouswebmaster.com/2010/02/23/podcasts-we-love/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 04:55:07 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[copyfight]]></category>
		<category><![CDATA[cyberculture]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[Berkman Center]]></category>
		<category><![CDATA[Cory Doctorow]]></category>
		<category><![CDATA[Economist]]></category>
		<category><![CDATA[Entrepreneurship]]></category>
		<category><![CDATA[Harvard]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Jesse Brown]]></category>
		<category><![CDATA[New Yorker]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[Stanford]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=414</guid>
		<description><![CDATA[I&#8217;ve been giving my mom my castoff MP3 players.  Recently I bought my parents His &#038; Her&#8217;s iPod Nano&#8217;s.  New ones even.  And that&#8217;s when Mom discovered the joy of podcasts.  She&#8217;s got her own faves, but they&#8217;re mostly (all) French, which doesn&#8217;t really jive with my readership (yep, the same [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/02/23/podcasts-we-love/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://www.stanford.edu/group/edcorner/uploads/podcast/fiorina070502.mp3" length="34406399" type="audio/mpeg" />
<enclosure url="http://ecorner.stanford.edu/downloadMaterial.html?mid=1678&amp;fileId=6445" length="25940427" type="audio/mpeg" />
<enclosure url="http://ecorner.stanford.edu/downloadMaterial.html?mid=1651&amp;fileId=6329" length="26020675" type="audio/mpeg" />
<enclosure url="http://ecorner.stanford.edu/downloadMaterial.html?mid=1677&amp;fileId=6429" length="28589870" type="audio/mpeg" />
<enclosure url="http://ecorner.stanford.edu/downloadMaterial.html?mid=1683&amp;fileId=6508" length="28180896" type="audio/mpeg" />
		</item>
		<item>
		<title>Crash and Renewal</title>
		<link>http://www.notoriouswebmaster.com/2010/02/22/crash-and-renewal/</link>
		<comments>http://www.notoriouswebmaster.com/2010/02/22/crash-and-renewal/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 02:54:18 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[health issues]]></category>
		<category><![CDATA[save the planet]]></category>
		<category><![CDATA[this is my navel]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=384</guid>
		<description><![CDATA[
I was on my way to work, on a fine Tuesday morning.  Heading South on Dufferin, at Davenport, I had the green.  A white Volvo was headed North, but suddenly, without signaling or giving me my right of way, turned West, crossing into my lane.  I swerved trying to avoid it, but [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2010/02/22/crash-and-renewal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
