<?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>Pixelpowrrr</title>
	<atom:link href="http://pixelpowrrr.ca/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://pixelpowrrr.ca/blog</link>
	<description>the revolution will be w3c-compliant</description>
	<lastBuildDate>Sat, 18 Dec 2010 17:52:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Your First Drupal Tools</title>
		<link>http://pixelpowrrr.ca/blog/2010/12/your-first-drupal-tools/</link>
		<comments>http://pixelpowrrr.ca/blog/2010/12/your-first-drupal-tools/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 17:50:39 +0000</pubDate>
		<dc:creator>Pixelpowrrr</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[incite! weekend]]></category>
		<category><![CDATA[try this at home]]></category>

		<guid isPermaLink="false">http://pixelpowrrr.ca/blog/?p=53</guid>
		<description><![CDATA[Downloads Filezilla Plugin Manager Filezilla is a free FTP client; you&#8217;ll use it to upload files (like Drupal modules) from your computer to your website. You can download versions for Windows, Mac and Linux. The first Drupal module you should install is Plugin Manager, which will allow you to install modules right from your Drupal [...]]]></description>
			<content:encoded><![CDATA[<h3>Downloads</h3>
<ul>
<li><a href="http://filezilla-project.org/download.php?type=client">Filezilla</a></li>
<li><a href="http://dl.dropbox.com/u/2894031/plugin_manager.zip">Plugin Manager</a></li>
</ul>
<p><a href="http://filezilla-project.org/">Filezilla</a> is a free FTP client; you&#8217;ll use it to upload files (like Drupal modules) from your computer to your website. You can download versions for <a href="http://filezilla-project.org/download.php?type=client">Windows, Mac and Linux</a>.</p>
<p>The first Drupal module you should install is <a href="http://drupal.org/project/plugin_manager">Plugin Manager</a>, which will allow you to install modules right from your Drupal administration panel, without having to download them to your computer and upload them using FTP. Drupal modules are in a compression file format called <em>.tar.gz</em>—which is kind of like .zip except Windows doesn&#8217;t have the built-in ability to unpack it. You can install the free program <a href="http://www.7-zip.org/">7zip</a> to open .tar.gz files, but for the sake of speed I&#8217;ve made <a href="http://dl.dropbox.com/u/2894031/plugin_manager.zip">a .zip version of Plugin Manager</a> available for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpowrrr.ca/blog/2010/12/your-first-drupal-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Very Simple Web Page</title>
		<link>http://pixelpowrrr.ca/blog/2010/12/a-very-simple-web-page/</link>
		<comments>http://pixelpowrrr.ca/blog/2010/12/a-very-simple-web-page/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 05:15:29 +0000</pubDate>
		<dc:creator>Pixelpowrrr</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[incite! weekend]]></category>
		<category><![CDATA[try this at home]]></category>

		<guid isPermaLink="false">http://pixelpowrrr.ca/blog/?p=45</guid>
		<description><![CDATA[w3schools&#8217; Tryit Editor is a great tool for testing out simple HTML and CSS; I&#8217;ve created a simple web page you can paste into the left-hand side to experiment with. Try substituting different colours, making the blockquote&#8217;s border dotted instead of solid, or deleting the line list-style-type: none;. &#60;html&#62; &#60;head&#62; &#60;title&#62;Website Title&#60;/title&#62; &#60;style type="text/css"&#62; body [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.w3schools.com/html/tryit.asp?filename=tryhtml_basic">w3schools&#8217; Tryit Editor</a> is a great tool for testing out simple HTML and CSS; I&#8217;ve created a simple web page you can paste into the left-hand side to experiment with. Try substituting <a href="http://www.ficml.org/jemimap/style/color/wheel.html">different colours</a>, making the blockquote&#8217;s border dotted instead of solid, or deleting the line <code>list-style-type: none;</code>.<br />
<code><br />
&lt;html&gt;<br />
	&lt;head&gt;<br />
		&lt;title&gt;Website Title&lt;/title&gt;<br />
		&lt;style type="text/css"&gt;<br />
		body {<br />
			background-color: #eeeeff;<br />
		}<br />
		h1,h2 {<br />
			font-family: Helvetica,Arial,sans-serif;<br />
			color: #666;<br />
		}<br />
		a {<br />
			text-decoration: none;<br />
			color: #ff5500;<br />
		}<br />
		a:hover {<br />
			text-decoration: underline;<br />
			color: #5577ff;<br />
		}<br />
		ul {<br />
			list-style-type: none;<br />
		}<br />
		blockquote {<br />
			padding: 10px;<br />
			border-left: 1px solid #ccc;<br />
			background-color: #fff;<br />
		}<br />
		&lt;/style&gt;<br />
	&lt;/head&gt;<br />
	&lt;body&gt;<br />
		&lt;h1&gt;Website Title&lt;/h1&gt;<br />
		&lt;h2&gt;Sub-Heading&lt;/h2&gt;<br />
		&lt;p&gt;This is a paragraph of filler text about nothing in particular. Here’s a link to &lt;a href="http://pixelpowrrr.ca/blog/"&gt;some other website&lt;/a&gt;. This is the second sentence, which contains no useful information. This is the third. And finally, the grand conclusion. Wow, I hope this took up a lot of space. Have a list of things:&lt;/p&gt;<br />
		&lt;ul&gt;<br />
		&lt;li&gt;Item 1&lt;/li&gt;<br />
		&lt;li&gt;Item 2&lt;/li&gt;<br />
		&lt;li&gt;Item 3&lt;/li&gt;<br />
		&lt;li&gt;Item 4&lt;/li&gt;<br />
		&lt;/ul&gt;<br />
		&lt;p&gt;And now here’s &lt;a href="http://pixelpowrrr.ca/blog/"&gt;a quote from somewhere&lt;/a&gt;:&lt;/p&gt;<br />
		&lt;blockquote&gt;This is a quote from another website. And some more filler text. &lt;/blockquote&gt;<br />
	&lt;/body&gt;<br />
&lt;/html&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpowrrr.ca/blog/2010/12/a-very-simple-web-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build-Your-Own-Website Workshop</title>
		<link>http://pixelpowrrr.ca/blog/2010/12/build-your-own-website-workshop/</link>
		<comments>http://pixelpowrrr.ca/blog/2010/12/build-your-own-website-workshop/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 19:49:38 +0000</pubDate>
		<dc:creator>Pixelpowrrr</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[allied media conference]]></category>
		<category><![CDATA[downloads]]></category>

		<guid isPermaLink="false">http://pixelpowrrr.ca/blog/?p=35</guid>
		<description><![CDATA[Here are the materials from the website-building workshop we presented at last year&#8217;s AMC! Build-Your-Own-Website Workshop Outline [PDF] – These are the notes we used for the presentation, basically a step-by-step guide to setting up and customizing a basic WordPress or Drupal website. Pixelpowrrr! Zine [PDF] – And this is the (even more basic) zine [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the materials from the <a href="http://talk.alliedmedia.org/message-boards/sessions/build-your-own-website-workshop-two-part-open-source-adventure">website-building workshop</a> we presented at last year&#8217;s <a href="http://alliedmedia.org">AMC</a>!</p>
<p><a href="http://pixelpowrrr.ca/blog/wp-content/uploads/2010/12/Build-Your-Own-Website.pdf">Build-Your-Own-Website Workshop Outline</a> <strong>[PDF]</strong> – These are the notes we used for the presentation, basically a step-by-step guide to setting up and customizing a basic WordPress or Drupal website.</p>
<p><a href="http://pixelpowrrr.ca/blog/wp-content/uploads/2010/12/pixzine.pdf">Pixelpowrrr! Zine</a> <strong>[PDF]</strong> – And this is the (even more basic) zine we also distributed. </p>
]]></content:encoded>
			<wfw:commentRss>http://pixelpowrrr.ca/blog/2010/12/build-your-own-website-workshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

