<?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 &#187; code</title>
	<atom:link href="http://www.notoriouswebmaster.com/category/code/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 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>Starting XAMPP Automatically Upon Login on OSX</title>
		<link>http://www.notoriouswebmaster.com/2009/08/29/starting-xampp-automatically-upon-login-on-osx/</link>
		<comments>http://www.notoriouswebmaster.com/2009/08/29/starting-xampp-automatically-upon-login-on-osx/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 22:45:06 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[weekend sysadmin]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=337</guid>
		<description><![CDATA[I was SO getting tired of opening a terminal window to get my web server going when I needed to do some web dev on my MacBook Pro, I finally started looking around for ways to start XAMPP on it&#8217;s own when I booted my machine.
I found the answer deep in the forums.  It [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2009/08/29/starting-xampp-automatically-upon-login-on-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Less is More</title>
		<link>http://www.notoriouswebmaster.com/2009/07/01/less-is-more/</link>
		<comments>http://www.notoriouswebmaster.com/2009/07/01/less-is-more/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 19:16:43 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=248</guid>
		<description><![CDATA[Among other things, I&#8217;m the main HTML/CSS guy on Tucows.com and butterscotch.com.  As such, I&#8217;ve run into many situations where I found the only way to get the effect I was looking for, was to copy a chunk of CSS code from the same document; whether it&#8217;s as simple as a colour code, or [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2009/07/01/less-is-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave: This Will Change Everything</title>
		<link>http://www.notoriouswebmaster.com/2009/05/30/google-wave-this-will-change-everything/</link>
		<comments>http://www.notoriouswebmaster.com/2009/05/30/google-wave-this-will-change-everything/#comments</comments>
		<pubDate>Sat, 30 May 2009 14:42:58 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[cyberculture]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=223</guid>
		<description><![CDATA[Google is set to stand communications on its head.  Again.
The soon to be released Google Wave program, web app, platform, protocol, paradigm is introducing a new way to do email, IM, forums, wikis, social networking and blogs.  All-in-one.  And not to put too fine a point on it, it looks pretty slick.
Not [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2009/05/30/google-wave-this-will-change-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Subversion on OS X</title>
		<link>http://www.notoriouswebmaster.com/2009/05/26/setting-up-subversion-on-os-x/</link>
		<comments>http://www.notoriouswebmaster.com/2009/05/26/setting-up-subversion-on-os-x/#comments</comments>
		<pubDate>Wed, 27 May 2009 03:22:27 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[knife the mac]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=219</guid>
		<description><![CDATA[I was dismayed, I must admit, to find a dearth of binaries when I was ready to install Subversion, the open source version control system, on Bender2, my MacBook Pro.  But the journey brought me to an even better conclusion.
Apple has an article about installing Subversion on OS X, but it&#8217;s old (2005), and [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2009/05/26/setting-up-subversion-on-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>butterscotch.com: My New Favourite Flavour</title>
		<link>http://www.notoriouswebmaster.com/2008/11/16/butterscotchcom-my-new-favourite-flavour/</link>
		<comments>http://www.notoriouswebmaster.com/2008/11/16/butterscotchcom-my-new-favourite-flavour/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 15:17:03 +0000</pubDate>
		<dc:creator>Alfred Ayache</dc:creator>
				<category><![CDATA[bidness]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[this is my navel]]></category>

		<guid isPermaLink="false">http://www.notoriouswebmaster.com/?p=91</guid>
		<description><![CDATA[I&#8217;ve been kept very busy over the past couple of months setting up butterscotch.com: Tucows&#8217; new video network, brimming with terrific videos, short and long, providing tips, tricks and insights into technology for pros and tyros.  Our new team includes tech media veterans Andy Walker, as General Manager and Executive Producer; Amber MacArthur, Director of [...]]]></description>
		<wfw:commentRss>http://www.notoriouswebmaster.com/2008/11/16/butterscotchcom-my-new-favourite-flavour/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
