<?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>Open Source Design - Spring10 &#187; jillian</title>
	<atom:link href="http://a.parsons.edu/~zeravivm/s10/osd/author/jillian/feed/" rel="self" type="application/rss+xml" />
	<link>http://a.parsons.edu/~zeravivm/s10/osd</link>
	<description>Students at Parsons designing with &#38; for Free and Open Source Software</description>
	<lastBuildDate>Fri, 04 Jun 2010 02:08:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Git: Everything work except this part!</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/12/git-everything-work-except-this-part/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/12/git-everything-work-except-this-part/#comments</comments>
		<pubDate>Wed, 12 May 2010 19:22:40 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=4116</guid>
		<description><![CDATA[
so maybe it already exists?

nOOO it doesnt
]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-4117" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/12/git-everything-work-except-this-part/picture-1-8/"><img class="alignnone size-medium wp-image-4117" title="github" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/05/Picture-1-475x44.png" alt="" width="475" height="44" /></a></p>
<p>so maybe it already exists?</p>
<p><a rel="attachment wp-att-4118" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/12/git-everything-work-except-this-part/picture-2-5/"><img class="alignnone size-full wp-image-4118" title="github 2" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/05/Picture-21.png" alt="" width="397" height="33" /></a></p>
<p>nOOO it doesnt</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/12/git-everything-work-except-this-part/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Multiple Columns within One Loop in Thematic</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/divide-the-posts-in-the-loop-into-separate-columns/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/divide-the-posts-in-the-loop-into-separate-columns/#comments</comments>
		<pubDate>Tue, 04 May 2010 18:11:45 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[columns]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[multiple columns]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[thematic]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3827</guid>
		<description><![CDATA[When you would use this:
This is especially useful for when you have a portfolio site and you would like to divide the thumbnails of your work into 2 or more columns. For an example of a portfolio site with a gallery of thumbnails click here.
What you should have done already::
1. You should have installed Thematic [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>When you would use this:</strong></h2>
<p>This is especially useful for when you have a portfolio site and you would like to divide the thumbnails of your work into 2 or more columns. <a href="http://www.bigspaceship.com/portfolio/">For an example of a portfolio site with a gallery of thumbnails click here.</a></p>
<h2><strong>What you should have done already::</strong></h2>
<p>1. You should have installed Thematic on your Wordpress</p>
<p>2.You should remove the index loop on your Thematic child function. If you haven&#8217;t done so here is the code.</p>

<div class="wp_syntax"><table><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* Get rid of the original loop first (otherwise we'll have two of them): */</span>
<span style="color: #000000; font-weight: bold;">function</span> remove_index_loop<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thematic_indexloop'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'thematic_index_loop'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'remove_index_loop'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></td></tr></table></div>

<p>3.<strong> Recommended:</strong> <a href="http://a.parsons.edu/~zeravivm/s10/osd/jkhurd1/05/04/installing-blueprint-in-thematic/">Install Blueprint in Thematic.</a></p>
<p>4. You should have published however many posts you are planning to put on your page.</p>
<p>Let&#8217;s start by looking at sample code on how to divide posts into 2 divs.</p>
<h2><strong>Code for dividing loop into 2 columns:</strong></h2>
<script src="http://gist.github.com/389772.js"></script>
<h2><strong>Step by step explanation of the code:</strong></h2>
<p>A bit overwhelming? Don&#8217;t worry don&#8217;t be scared by the long code you only need to focus on the bottom part anyways. Let&#8217;s take a closer look at that.</p>
<p>The query posts have been divided into seperate divs for the posts. The code counts how many posts there are in the loop (4 in this case). It needs to echo the</p>
<p>in order to close it.</p>

<div class="wp_syntax"><table><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* In the case you're rendering the very last post, do nothing: */</span>
 <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$count</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre></div></td></tr></table></div>

<p>and after the 2nd post it will close the first div and start a new div. Although you are establishing the div here and it may look like html, you are actually echo-ing the div in php<br />
<script src="http://gist.github.com/397570.js"></script><br />
<strong><br />
IMPORTANT: </strong>The $count variable isn&#8217;t specified, so it&#8217;s treated like zero. So after very first loop round statement $count%2=0 matches, and &lt;div&gt; gets closed leaving single post in first column, so you musn&#8217;t forget to add:</p>

<div class="wp_syntax"><table><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span></pre></div></td></tr></table></div>

<p>before</p>

<div class="wp_syntax"><table><tr><td><div class="code"><pre class="php" style="font-family:monospace;"> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$portfolio_query</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$portfolio_query</span><span style="color: #339933;">-&amp;</span>gt<span style="color: #339933;">;</span>the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></td></tr></table></div>

<p>or it will only place 1 post in the first div and you will be very frustrated.</p>
<p>Okay so now if you want to divide your loop into 3 columns, the exact same theory applies.</p>
<h2><strong>Code for dividing loop into 3 columns:</strong></h2>
<script src="http://gist.github.com/389800.js"></script>
<h2><strong>Step by step explanation of the code:</strong></h2>
<p>In this example I have 9 posts and I want to 3 columns to have 3 posts each.</p>
<p>Again the code counts how many posts you have on the page.</p>

<div class="wp_syntax"><table><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/* In the case you're rendering the very last post, do nothing: */</span>
 <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$count</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">9</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span></pre></div></td></tr></table></div>

<p>If you already have 6 posts, close the div and open the 3rd column:<br />
<script src="http://gist.github.com/397572.js"></script><br />
And if you already have 3 posts, close the first div and open the 2nd column:<br />
<script src="http://gist.github.com/397576.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/divide-the-posts-in-the-loop-into-separate-columns/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sanity hanging by a thread (in a good way)</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/sanity-hanging-by-a-thread-in-a-good-way/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/sanity-hanging-by-a-thread-in-a-good-way/#comments</comments>
		<pubDate>Tue, 04 May 2010 13:37:34 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[page templates]]></category>
		<category><![CDATA[queryposts]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3815</guid>
		<description><![CDATA[OKAY! My goals for this week have been accomplished. Thank you Mushon for helping me and thanks Angel for your github as always.
1. Change my loops into queries
2. Take the blog description off the pages
2. Create a loop on the portfolio page (page templates were not working)
3. Successfully divide this loop into 3 columns (with [...]]]></description>
			<content:encoded><![CDATA[<p>OKAY! My goals for this week have been accomplished. Thank you Mushon for helping me and thanks Angel for your github as always.</p>
<p>1. Change my loops into queries</p>
<p>2. Take the blog description off the pages</p>
<p>2. Create a loop on the portfolio page (page templates were not working)</p>
<p>3. Successfully divide this loop into 3 columns (with help of wpquestions.com)</p>
<p><a href="http://jillian-fu.com">Here is my site so far.</a></p>
<p><a href="http://gist.github.com/389431">Here is the code.</a></p>
<p>Here is the gist</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/04/sanity-hanging-by-a-thread-in-a-good-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conditional Tags with &#8216;init&#8217; Don&#8217;t Work (draft 1)</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/01/conditional-tags-with-init-dont-work-draft-1/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/01/conditional-tags-with-init-dont-work-draft-1/#comments</comments>
		<pubDate>Sat, 01 May 2010 22:40:09 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[action hooks]]></category>
		<category><![CDATA[conditional tags]]></category>
		<category><![CDATA[init]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3789</guid>
		<description><![CDATA[I am not covering all types of conditional tags I am just discussing them in conjunction with &#8216;inits&#8217; . If you just want information about conditional tags here is a link. Conditional Tags. There is not a lot of information out there about conditional tags with &#8216;init&#8217; but I&#8217;m here to tell you why it [...]]]></description>
			<content:encoded><![CDATA[<p>I am not covering all types of conditional tags I am just discussing them in conjunction with &#8216;inits&#8217; . If you just want information about conditional tags here is a link. <a href="http://codex.wordpress.org/Conditional_Tags">Conditional Tags.</a> There is not a lot of information out there about conditional tags with &#8216;init&#8217; but I&#8217;m here to tell you why it doesn&#8217;t work.</p>
<p><strong>Define init: </strong><br />
Lets first define what &#8216;init&#8217; does. &#8216;init&#8217; is short for &#8220;to initialize&#8221; and runs after WordPress has finished loading but before any headers are sent.  It serves to specify that your own  functions are used instead of the default functions. An example of  &#8216;init&#8217; is when removing the index loop.</p>
<p><strong>Code using init: </strong></p>
<pre>function remove_index_loop() {
	remove_action('thematic_indexloop', 'thematic_index_loop');
}
add_action('init', 'remove_index_loop');
</pre>
<p><strong>Problem: </strong><br />
What I wanted to do is to remove my blog description (made it in the dashboard) on my pages but keep it on my homepage. I started off just copying the remove index loop code, inserting a conditional statement but I found that it didn&#8217;t work because the code wasn&#8217;t reading my conditional statement. Finally, I removed &#8216;init&#8217; and replaced it with a theme hook instead and it worked fine.</p>
<p><strong>Code where init wouldn&#8217;t work: </strong></p>
<pre>function remove_thematic_blogdescription() {
 if (!is_home()) {
 remove_action('thematic_header','thematic_blogdescription',5);
 }
}

add_action('thematic_before','remove_thematic_blogdescription');</pre>
<p><strong> Why &#8216;init&#8217; doesn&#8217;t work with conditional tags:<br />
</strong>&#8216;init&#8217; loads before the page starts loading so the page doesn&#8217;t know what it is (main page? front page? category page? which category?). Tying it to an action hook makes sure it is called in the right moment when the page already knows that data.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/05/01/conditional-tags-with-init-dont-work-draft-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OSD Project and What&#8217;s on so far</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/26/osd-project-and-whats-on-so-far/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/26/osd-project-and-whats-on-so-far/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 01:03:41 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[loops]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3738</guid>
		<description><![CDATA[OSD Project Proposal:
I am currently thinking of writing a tutorial about creating template files within the Thematic Childtheme. I&#8217;m having a LOT of trouble doing that right now and after looking at last semester&#8217;s tutorial on this same subject, I think if I figure it out I could make the tutorial even better and clearer.
Things [...]]]></description>
			<content:encoded><![CDATA[<p><strong>OSD Project Proposal:</strong></p>
<p>I am currently thinking of writing a tutorial about creating template files within the Thematic Childtheme. I&#8217;m having a LOT of trouble doing that right now and after looking at last semester&#8217;s tutorial on this same subject, I think if I figure it out I could make the tutorial even better and clearer.</p>
<p>Things I&#8217;d like to cover:</p>
<p>1. Formatting the loops on the page templates are a little different than the index page</p>
<p>2. I&#8217;m also planning to divide my loops into three columns on the portfolio template page so that might be interesting</p>
<p><strong>WP Progress this week:</strong></p>
<p>1. Blueprinted what I could</p>
<p>2. Added the thumbnail feature</p>
<p>3. Created a template for my portfolio page but having trouble php-ing inside it</p>
<p>GRRr for GITHUB. Spent the whole of Friday trying to figure it out but I get responses such as &#8220;that folder already exists&#8221; or &#8220;disconnected from server because blablabla&#8221;. So here is my code on github</p>
<p><a href="http://gist.github.com/380180">Portfolio Page</a></p>
<p><a href="http://gist.github.com/380181">Index Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/26/osd-project-and-whats-on-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This week&#8217;s update</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/22/this-weeks-update/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/22/this-weeks-update/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 14:58:49 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[multiple loops]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3707</guid>
		<description><![CDATA[Just saying that last class&#8217;s guests were very helpful and shed some good light about wordpress and how we can use it when we get out of school. I was both inspired and intimidated. Angel and I got sitting down with Alan Cole and he explained lots of things.
1. Closing queries so that they don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Just saying that last class&#8217;s guests were very helpful and shed some good light about wordpress and how we can use it when we get out of school. I was both inspired and intimidated. Angel and I got sitting down with Alan Cole and he explained lots of things.</p>
<p>1. Closing queries so that they don&#8217;t mess up your multiple loops</p>
<p>2. Creating page templates and putting your loops there so that don&#8217;t mess up the other loops on your homepage</p>
<p>3. Since I have a mini blog that doesn&#8217;t do anything much, I can just download a widget for it instead of making it a loop</p>
<p>I&#8217;m looking forward to see Alan&#8217;s code on the blog <img src='http://a.parsons.edu/~zeravivm/s10/osd/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So for this week I have to restyle everything on blueprint. Hoping it won&#8217;t take a while. If I get that going, I&#8217;ll try to change and make my blog a widget and see if I can start making a page template for my other pages.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>So I&#8217;ve made the blog widget. It&#8217;s called the Query Posts Widget. It&#8217;s for people who don&#8217;t want to deal with php and creating multiple loops and very easy to modify.</p>
<p>If you want a link to the tutorial page. <a href="http://wordpress.tv/2009/03/17/using-the-query-posts-widget-plugin-video-overview-tutorial/">here it is.</a> Recommended by Alan Cole who got it from JustinTadlock.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/22/this-weeks-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Success&#8230;.kind of?</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/18/success-kind-of/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/18/success-kind-of/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 23:34:10 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[gist]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3690</guid>
		<description><![CDATA[Okay so I FINALLY got my 2 column thing going on for my front page (YAY!) and it really made my weekend fabulous. Mushon thanks for the advice you put on my gist. In the end I didn&#8217;t need to change the line. Instead I somehow managed to fix it. I don&#8217;t know how but [...]]]></description>
			<content:encoded><![CDATA[<p>Okay so I FINALLY got my 2 column thing going on for my front page (YAY!) and it really made my weekend fabulous. Mushon thanks for the advice you put on my gist. In the end I didn&#8217;t need to change the line. Instead I somehow managed to fix it. I don&#8217;t know how but I just did. I also organized all my html properly in the functions.php file so that everything doesn&#8217;t move anymore when I change the CSS of one thing. And because of this I don&#8217;t think I&#8217;ll really need blueprint. If I find I&#8217;m still having problems placing things later on, I will place blueprint in.</p>
<p>A couple of problems still</p>
<p>1. gist : figuring out how to delete the blank folder I put up and placing the real wordpress files instead</p>
<p>2. Adding the thumbnail feature. I looked at Joan&#8217;s post and at last semester&#8217;s code and somehow it doesn&#8217;t detect the thumbnail feature and errors it out.</p>
<p>3. Removing the loop from my pages. I&#8217;ve tried googling this and looking it up in wordpress but I can&#8217;t seem to find a solution. I know it&#8217;s and if statement. Does anyone know of any references I could use?</p>
<p><a href="http://gist.github.com/370623">Here is my gist</a></p>
<p><a href="http://jillian-fu.com">Here is a link to my site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/18/success-kind-of/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s on for next week</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/15/whats-on-for-next-week/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/15/whats-on-for-next-week/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:26:29 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3667</guid>
		<description><![CDATA[Okay so in class I fixed the basic structure of my site: placing all the divs in the right place and putting them in the correct part of the php file. It is quite messed up because I&#8217;m trying to split my loop into two. Take a look here My Site. 
I haven&#8217;t gotten github [...]]]></description>
			<content:encoded><![CDATA[<p>Okay so in class I fixed the basic structure of my site: placing all the divs in the right place and putting them in the correct part of the php file. It is quite messed up because I&#8217;m trying to split my loop into two. Take a look here <a href="http://jillian-fu.com">My Site. </a></p>
<p>I haven&#8217;t gotten github up because I made a blunder. I accidently uploaded a different imaginary folder onto github and I&#8217;m not sure how to fix it? http://github.com/jillianfu/My-wordpress-site. Aaaarrrgh.</p>
<p>For the meantime I&#8217;m going to post my problematic code onto gist and maybe Mushon you could see why it&#8217;s messing up my whole site? <a href="http://gist.github.com/367200">gist code</a></p>
<p>My goals for next week are as follow:</p>
<p>1. Get github up</p>
<p>2. Figuring out how to split the loop into 2 columns. It&#8217;s stumping me right now coz everytime I paste the code Mushon had in and change it to fit my page, it messes up the whole thing.</p>
<p>That&#8217;s basically it. If i can get the loops split, then I might look into taking it off other pages other than the index page.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/15/whats-on-for-next-week/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vexed and Bothered</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/11/vexed-and-bothered/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/11/vexed-and-bothered/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 02:44:12 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tiger]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3616</guid>
		<description><![CDATA[So github is still not working. Mushon, the links you gave were again for Leopard and Tiger (I have neither). They did have one that allowed you to manually install github but you needed XCode. And to download XCode you needed Leopard. So, I have copied and pasted my code onto gist so that everyone [...]]]></description>
			<content:encoded><![CDATA[<p>So github is still not working. Mushon, the links you gave were again for Leopard and Tiger (I have neither). They did have one that allowed you to manually install github but you needed XCode. And to download XCode you needed Leopard. So, I have copied and pasted my code onto gist so that everyone can look at it that way.</p>
<p>I feel that my structure is a mess right now. I&#8217;m not sure how to put the divs in the right places in php. aboveheader or belowcontainer doesn&#8217;t seem to working well. It shifts everything and that greybox div you put in last time Mushon didn&#8217;t really help.</p>
<p>I looked at Mushon&#8217;s post he wrote about loops from last semester.</p>
<p>Anyways, I have done my best with php. I have two loops now. Like Angel mentioned, I had to delete the first loop. I&#8217;m still not sure how to make my portfolio category have two columns. My site needs a lot of tweaking.</p>
<p><a href="http://gist.github.com/363231">Here is the php I&#8217;ve gone with so far.</a></p>
<p><a href="http://www.jillian-fu.com"><img class="alignnone size-medium wp-image-3622" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/04/Picture-12-475x189.png" alt="" width="475" height="189" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/11/vexed-and-bothered/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WP Update</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/wp-update/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/wp-update/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 18:52:42 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3584</guid>
		<description><![CDATA[So I&#8217;ll update you on my progress. I found the Git tutorial very helpful but I first need to find a download that will work on my computer. Currently the versions they have for Mac&#8217;s are for Leopard and the only one that isn&#8217;t doesn&#8217;t work on my computer. I spent some good time today [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ll update you on my progress. I found the Git tutorial very helpful but I first need to find a download that will work on my computer. Currently the versions they have for Mac&#8217;s are for Leopard and the only one that isn&#8217;t doesn&#8217;t work on my computer. I spent some good time today fixing the CSS on my current homepage and actually reviewing the Fall class&#8217;s website to see if they have any tutorials on multiple loops.</p>
<p>So during class, Mei and I discovered that my html is in the wrong div. I want to put it in Main but I can&#8217;t seem to find the right tag for that. Although Mushon tried putting it in one big greybox div, it&#8217;s not really helping. For now I&#8217;ll leave it though and try to get my gallery up using multiple loops. I know that Angel and Mariam have something similar so hopefully us three can plow through it together soon!</p>
<p>I am a little bit lost with the loops and have no idea where to start but I&#8217;ll see how it goes this weekend. Check out what I have so far.</p>
<p><a href="jillian-fu.com"><img class="alignnone size-medium wp-image-3586" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/04/Picture-11-475x188.png" alt="" width="475" height="188" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/wp-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Grrr for Git</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/grrr-for-git/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/grrr-for-git/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 14:30:36 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3580</guid>
		<description><![CDATA[Is anybody else having problems even just downloading git? They only have it available for Leopard and the one that allows you to download for older versions isn&#8217;t working! 
]]></description>
			<content:encoded><![CDATA[<p>Is anybody else having problems even just downloading git? They only have it available for Leopard and the one that allows you to download for older versions isn&#8217;t working! <a href="http://code.google.com/p/git-osx-installer/downloads/list?can=3"><img class="alignnone size-medium wp-image-3581" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/04/Picture-1-475x139.png" alt="" width="475" height="139" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/04/08/grrr-for-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More changes to the wordpress</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/28/more-changes-to-the-wordpress/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/28/more-changes-to-the-wordpress/#comments</comments>
		<pubDate>Sun, 28 Mar 2010 23:32:59 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3444</guid>
		<description><![CDATA[So from last class here were the suggestions given:

Change the Twitter Logo
Add a timestamp to twitter
Add my username to the twitter widget
Make type bigger
Take out the hour in the blog
Increase leading in text
Change the pink on the black to make more readable
Add a footer

So I&#8217;ve made those changes and here it is with and without [...]]]></description>
			<content:encoded><![CDATA[<p>So from last class here were the suggestions given:</p>
<ul>
<li>Change the Twitter Logo</li>
<li>Add a timestamp to twitter</li>
<li>Add my username to the twitter widget</li>
<li>Make type bigger</li>
<li>Take out the hour in the blog</li>
<li>Increase leading in text</li>
<li>Change the pink on the black to make more readable</li>
<li>Add a footer</li>
</ul>
<p>So I&#8217;ve made those changes and here it is with and without the grid.</p>

<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg1.jpg' rel='shadowbox[post-3444];player=img;' title='wordpress_hmpg'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg1-150x150.jpg" class="attachment-thumbnail" alt="" title="wordpress_hmpg" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg_grid1.png' rel='shadowbox[post-3444];player=img;' title='wordpress_hmpg_grid'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg_grid1-150x150.png" class="attachment-thumbnail" alt="" title="wordpress_hmpg_grid" /></a>

<p>And I&#8217;ve changed the css in my wordpress.<a href="http://jillian-fu.com"> Here is a link to my updated site.</a></p>
<p>Btw I&#8217;m having a hard time having the menu stay in place if I change browser size. I tried making it position:absolute but it doesn&#8217;t seem to help.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/28/more-changes-to-the-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL Server Problems With Mamp</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/26/sql-server-problems-with-mamp/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/26/sql-server-problems-with-mamp/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 22:27:01 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[my sql]]></category>
		<category><![CDATA[trouble shooting]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3426</guid>
		<description><![CDATA[Is anyone else having troubles connecting to the My SQL when you start MAMP?
]]></description>
			<content:encoded><![CDATA[<p>Is anyone else having troubles connecting to the My SQL when you start MAMP?</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/26/sql-server-problems-with-mamp/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Updated Wordpress Design</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/22/updated-wordpress-design/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/22/updated-wordpress-design/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 21:46:59 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3381</guid>
		<description><![CDATA[Hi guys thanks for all the comments. I took into consideration everything that everyone said. I&#8217;ve just quickly updated my design to add some more personality into it.
Also, the link to my wordpress site is here. The wordpress is finally alive and kicking!
]]></description>
			<content:encoded><![CDATA[<p>Hi guys thanks for all the comments. I took into consideration everything that everyone said. I&#8217;ve just quickly updated my design to add some more personality into it.<a href="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg.jpg" rel="shadowbox[post-3381];player=img;"><img class="alignnone size-medium wp-image-3382" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg-455x400.jpg" alt="" width="455" height="400" /></a></p>
<p>Also, the link to my wordpress site is <a href="http://www.jillian-fu.com">here</a>. The wordpress is finally alive and kicking!</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/22/updated-wordpress-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Instructables How-To</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/21/instructables-how-to/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/21/instructables-how-to/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 01:04:05 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3360</guid>
		<description><![CDATA[This week I am reviewing the site instructables.com
For those of you who aren&#8217;t familiar with it, it is an all-encompassing tutorial site that teaches you how to do everything from building cameras, make bracelets, designing baby clothes and anything else you can think of. One of the best features about this site is its variety [...]]]></description>
			<content:encoded><![CDATA[<p>This week I am reviewing the site<a href="instructables.com"> instructables.com</a></p>
<p>For those of you who aren&#8217;t familiar with it, it is an all-encompassing tutorial site that teaches you how to do everything from building cameras, make bracelets, designing baby clothes and anything else you can think of. One of the best features about this site is its variety of tutorials and its navigation at the top. The tutorials themselves aren&#8217;t as well-designed as they could be. To view full-sized pictures of the tutorials you have to sign up to be a member.</p>
<p>Unlike wikihow or other how-to sites, the hierarchy within the tutorial isn&#8217;t as clear. There are no steps 1, 2, 3 labeled and it depends on the author whether they want to add videos or pictures. Each step is on a different page that makes it a bit cumbersome. Basically, the tutorials themselves are made by users so they aren&#8217;t standardized and seem almost homemade.But, the nice thing is you can download the pdf of the tutorial once you are a member so you don&#8217;t have to keep returning to the website.</p>
<p><a rel="attachment wp-att-3361" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/21/instructables-how-to/picture-1-4/"><img class="alignnone size-medium wp-image-3361" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/Picture-11-475x273.png" alt="" width="475" height="273" /></a></p>
<p><a href="http://www.instructables.com/id/How-to-make-a-ball-bearing-rollercoaster/step1/Ingredients/">Ball Bearing RollerCoaster</a></p>
<p>The better tutorials are labeled with &#8220;PRO&#8221; on it. They are better organized and the pictures are more professional. <a href="http://www.instructables.com/id/Best-Pumpkin-Bread-Recipe/">Best Pumpkin Bread Recipe</a></p>
<p><a rel="attachment wp-att-3362" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/21/instructables-how-to/picture-2-2/"><img class="alignnone size-medium wp-image-3362" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/Picture-2-475x360.png" alt="" width="475" height="360" /></a></p>
<p>The nice thing about the tutorials are the way the social networking icons have been laid out on the side. You can easily twitter or facebook any of these tutorials. Also, it&#8217;s nice how related tutorials are featured and there are contents users can join as well. There is definitely room for improvements in terms of the tutorial layout but other than that, its overall an entertaining site that touches on a broad variety of subjects.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/21/instructables-how-to/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress Portfolio Site</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/11/wordpress-portfolio-site/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/11/wordpress-portfolio-site/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 05:17:30 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3241</guid>
		<description><![CDATA[Here is the mockup of my wordpress portfolio site with or without the grid. It&#8217;s very clean and simple right now. Give me some tips on how I could spice it up please! Let me know what you think (Angel and I will be away Sunday-Saturday so we probably won&#8217;t have access to a computer [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the mockup of my wordpress portfolio site with or without the grid. It&#8217;s very clean and simple right now. Give me some tips on how I could spice it up please! Let me know what you think (Angel and I will be away Sunday-Saturday so we probably won&#8217;t have access to a computer during that time)
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg.png' rel='shadowbox[post-3241];player=img;' title='wordpress_hmpg'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg-150x150.png" class="attachment-thumbnail" alt="" title="wordpress_hmpg" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg_grid.png' rel='shadowbox[post-3241];player=img;' title='wordpress_hmpg_grid'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_hmpg_grid-150x150.png" class="attachment-thumbnail" alt="" title="wordpress_hmpg_grid" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/11/wordpress-portfolio-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Final change to polishing silver</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/07/final-change-to-polishing-silver/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/07/final-change-to-polishing-silver/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 05:27:20 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3120</guid>
		<description><![CDATA[So I changed the alignment of the logo to fit according to the grid as Mushon suggested. The only problem is that the silver image lines up on my computer and in Safari and Firefox here at home so I don&#8217;t see a problem with the alignment. Check out my screenshot to see what I [...]]]></description>
			<content:encoded><![CDATA[<p>So I changed the alignment of the logo to fit according to the grid as Mushon suggested. The only problem is that the silver image lines up on my computer and in Safari and Firefox here at home so I don&#8217;t see a problem with the alignment. Check out my screenshot to see what I see. Apparently the alignment changes on Scott&#8217;s computer and some browser&#8217;s at school. So I&#8217;m not sure whats the problem.<a rel="attachment wp-att-3121" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/07/final-change-to-polishing-silver/picture-1-3/"><img class="alignnone size-medium wp-image-3121" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/Picture-1-475x210.png" alt="" width="475" height="210" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/07/final-change-to-polishing-silver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wireframes for Wordpress Project</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/06/wireframes-for-wordpress-project/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/06/wireframes-for-wordpress-project/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 04:17:06 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=3106</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-1.jpg' rel='shadowbox[post-3106];player=img;' title='Home PAge'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-1-150x150.jpg" class="attachment-thumbnail" alt="" title="Home PAge" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-2.jpg' rel='shadowbox[post-3106];player=img;' title='Portfolio Page'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-2-150x150.jpg" class="attachment-thumbnail" alt="" title="Portfolio Page" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-6.jpg' rel='shadowbox[post-3106];player=img;' title='Portfolio Detail Page'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-6-150x150.jpg" class="attachment-thumbnail" alt="" title="Portfolio Detail Page" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_3.jpg' rel='shadowbox[post-3106];player=img;' title='About Page'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress_3-150x150.jpg" class="attachment-thumbnail" alt="" title="About Page" /></a>
<a href='http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-5.jpg' rel='shadowbox[post-3106];player=img;' title='Contact Page'><img width="150" height="150" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/03/wordpress-5-150x150.jpg" class="attachment-thumbnail" alt="" title="Contact Page" /></a>

]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/06/wireframes-for-wordpress-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WP Project Reference Post</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/01/wp-project-reference-post/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/01/wp-project-reference-post/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 15:03:58 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2968</guid>
		<description><![CDATA[I was thinking of having a portfolio site on my WP but not any boring old one.
Content &#8211; My portfolio pieces, extra hobbies and interesting tidbits about myself that I can sell to prospective clients. Check out http://www.robbiemanson.com/. He simply has his latest works and contact information and some highlighted projects he talks about on [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking of having a portfolio site on my WP but not any boring old one.</p>
<p>Content &#8211; My portfolio pieces, extra hobbies and interesting tidbits about myself that I can sell to prospective clients. Check out <a href="http://www.robbiemanson.com/">http://www.robbiemanson.com/</a>. He simply has his latest works and contact information and some highlighted projects he talks about on the side. As a primary version of my site, I&#8217;d like to keep the content as simple as his.</p>
<p>Structure Design &#8211; I&#8217;d like my work to be laid out in thumbnails so users can get a general feel of my portfolio. I would also like the portfolio images to be in a sliding viewer so users can see several different photos for one piece. Also, I don&#8217;t want a full on blog, but I&#8217;d like to have postings about my work or just things I found cool featured on part of my site. I actually do like the RSS Feed on our class blog and wouldn&#8217;t mind having something like that as well. Check out <a href="http://www.piraja.no/">http://www.piraja.no/</a>. His gallery is straightforward and not too overwhelming. Also, his landing page is clear and introduces us to his thoughts.</p>
<p>Presentation Reference &#8211; Mostly large type for my name and simple almost Swiss typography throughout the website. Nothing too over-the-top. <a href="http://www.bigspaceship.com/">http://www.bigspaceship.com/</a> uses giant type to set out its name and posting titles apart from the rest of the content. Also, it only uses three colors, red, white and gray throughout its entire site. On the work detail pages, I like how they have the client and date of the work set in huge text next to the photos.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/03/01/wp-project-reference-post/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgraded CSS: Polishing Silver</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/26/upgraded-css-polishing-silver/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/26/upgraded-css-polishing-silver/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 06:18:37 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2912</guid>
		<description><![CDATA[Hi All.
I&#8217;ve made some final changes to my tutorial. I tried to make a more obvious navigation and I added a logo. Let me know what you think!

Jillian&#8217;s Tutorial
]]></description>
			<content:encoded><![CDATA[<p>Hi All.</p>
<p>I&#8217;ve made some final changes to my tutorial. I tried to make a more obvious navigation and I added a logo. Let me know what you think!</p>
<p><a rel="attachment wp-att-2913" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/26/upgraded-css-polishing-silver/picture-1-2/"><img class="alignnone size-medium wp-image-2913" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/Picture-11-475x216.png" alt="" width="475" height="216" /></a></p>
<p><a href="http://a.parsons.edu/~fuj659">Jillian&#8217;s Tutorial</a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/26/upgraded-css-polishing-silver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smashing Article: Web Design Career Advice to Students</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/25/smashing-article-web-design-career-advice-to-students/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/25/smashing-article-web-design-career-advice-to-students/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:02:13 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2910</guid>
		<description><![CDATA[Yah I know that we tag stuff and it shows on the feed to the right but I thought this was super useful. So if you have time, reading this article from Smashing Magazine might be helpful if this is where you want to go after you&#8217;re done with Parsons.
I&#8217;ll paste a little tidbit (because [...]]]></description>
			<content:encoded><![CDATA[<p>Yah I know that we tag stuff and it shows on the feed to the right but I thought this was super useful. So if you have time, reading this article from Smashing Magazine might be helpful if this is where you want to go after you&#8217;re done with Parsons.</p>
<p>I&#8217;ll paste a little tidbit (because sometimes I need incentive to listen to ppl&#8217;s advice) and if you&#8217;re interested you can go to the link. <a href="http://www.smashingmagazine.com/2010/02/17/group-interview-advice-for-students-and-new-designers/#more-23772">Expert Advice for Students and Young Designers</a></p>
<h3>7. What job search advice do you have for recent graduates?</h3>
<p><img src="http://media.smashingmagazine.com/cdn_smash/wp-content/uploads/2009/12/newspaper.jpg" alt="Newspaper in Group Interview: Expert Advice For Students and Young Web Designers" width="460" height="293" /></p>
<h4>Soh Tanaka</h4>
<p>First and foremost, get your <strong>portfolio</strong> up, and make sure it represents your best work. If you lack work samples, start creating projects for yourself (websites for your hobbies, your family or for friends). As a new grad, you need to prove that you are serious and willing; the best way to get that message across is through a robust portfolio.</p>
<p>Secondly, hit the <strong>job boards</strong>, and send your resumes and cover letters to companies you would like to work for. Doing research and tailoring each cover letter and resume to the company is important. Stick to the job requirements, and follow directions carefully. These employers receive many applications daily, and nothing is worse than seeing a bland and generic introduction to who you are and what you offer. Stand out from the rest.</p>
<p>Thirdly, keep your <strong>networks</strong> open, and make yourself known! Networking is key.</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/25/smashing-article-web-design-career-advice-to-students/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated css: Polishing Silver</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/22/updated-css-polishing-silver/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/22/updated-css-polishing-silver/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:57:45 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2860</guid>
		<description><![CDATA[Hey guys! Here is the next version of my tutorial. As you can see, I&#8217;ve made some changes from the photoshop file to make it look a little bit more interesting. Jonathan&#8217;s comments were quite helpful in pushing me to make it a bit more fun and not so redundant.
a.parsons.edu/~fuj659
]]></description>
			<content:encoded><![CDATA[<p>Hey guys! Here is the next version of my tutorial. As you can see, I&#8217;ve made some changes from the photoshop file to make it look a little bit more interesting. Jonathan&#8217;s comments were quite helpful in pushing me to make it a bit more fun and not so redundant.</p>
<p><a href="http://a.parsons.edu/~fuj659">a.parsons.edu/~fuj659</a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/22/updated-css-polishing-silver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving stuff up/down?</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/problems-with-linking-my-styles/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/problems-with-linking-my-styles/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 18:02:34 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2819</guid>
		<description><![CDATA[Hi guys,
I can span things left and right, but how do you move objects up and down te browser?
]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>I can span things left and right, but how do you move objects up and down te browser?</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/problems-with-linking-my-styles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Look</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/the-look/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/the-look/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 16:55:40 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2815</guid>
		<description><![CDATA[Here is a jpg of what my CSS will look like. 
]]></description>
			<content:encoded><![CDATA[<p>Here is a jpg of what my CSS will look like. <a rel="attachment wp-att-2816" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/the-look/silver/"><img class="alignnone size-medium wp-image-2816" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/silver-284x400.jpg" alt="" width="284" height="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/20/the-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>my wireframe</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/16/my-wireframe/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/16/my-wireframe/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 16:07:41 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2791</guid>
		<description><![CDATA[
Here is a screenshot of my wireframe. The link is a.parsons.edu/~fuj659
]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-2792" href="http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/16/my-wireframe/picture-1/"><img class="alignnone size-medium wp-image-2792" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/Picture-1-475x307.png" alt="" width="475" height="307" /></a></p>
<p>Here is a screenshot of my wireframe. The link is <a href="http://a.parsons.edu/~fuj659">a.parsons.edu/~fuj659</a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/16/my-wireframe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GWO: Free Beer</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/08/gwo-free-beer/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/08/gwo-free-beer/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:24:14 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2654</guid>
		<description><![CDATA[I came across this movement as I was browsing the web. Free Beer started off as an experiment by students in Copenhagen. They made the first brand of beer with the recipe open to the world. Based on the phrase to describe the free software movement,&#8221;free as in speech, not free as in beer,&#8221;anyone can [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this movement as I was browsing the web. Free Beer started off as an experiment by students in Copenhagen. They made the first brand of beer with the recipe open to the world. Based on the phrase to describe the free software movement,&#8221;free as in speech, not free as in beer,&#8221;anyone can sell the recipe and use the labels provided on their website as long as they credit the license. The beer brand has now spread to various countries such as Taiwan, Japan, New Zealand and so on showing how successful sharing knowledge can be in any community.</p>
<p><a href="http://www.freebeer.org">www.freebeer.org</a></p>
<p>My slideshow is available on slideshare here</p>
<p><a href="http://<object width="475" height="389"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=freebeer-100208212949-phpapp02"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=freebeer-100208212949-phpapp02"  type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="475" height="389"></embed></object><!-- ysttest:Array
(
    [id] => 3109250&amp;doc=freebeer-100208212949-phpapp02
)
-->"><object width="475" height="389"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=freebeer-100208212949-phpapp02"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=freebeer-100208212949-phpapp02"  type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="475" height="389"></embed></object><!-- ysttest:Array
(
    [id] => 3109250&amp;doc=freebeer-100208212949-phpapp02
)
--></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/08/gwo-free-beer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sterling Silver Tutorial</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/07/sterling-silver-tutorial/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/07/sterling-silver-tutorial/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 05:57:51 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2577</guid>
		<description><![CDATA[To check out the full content, please go to: a.parsons.edu/~fuj659 (I shrank the text on the browser for it to fit)
At first when I saw Joan&#8217;s tutorial, I thought how cute are the illustrations and its so nicely compact. I was somewhat confused by the pictures, but after studying it a bit longer and reading [...]]]></description>
			<content:encoded><![CDATA[<p>To check out the full content, please go to: <a href="http://a.parsons.edu/~fuj659">a.parsons.edu/~fuj659 </a>(I shrank the text on the browser for it to fit)</p>
<div id="attachment_2578" class="wp-caption alignnone" style="width: 310px"><a href="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/Picture-2.png" rel="shadowbox[post-2577];player=img;"><img class="size-medium wp-image-2578" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/Picture-2-300x223.png" alt="" width="300" height="223" /></a><p class="wp-caption-text">Screenshot of Jillian&#39;s site</p></div>
<p>At first when I saw Joan&#8217;s tutorial, I thought how cute are the illustrations and its so nicely compact. I was somewhat confused by the pictures, but after studying it a bit longer and reading the title, it helped me understand the process a bit better. The first three pictograms depict the problem people might have with silver. It&#8217;s not part of the process so it might be helpful to have a title saying &#8220;When you need to polish your sterling silver.&#8221;</p>
<p>Overall, the tutorial was easy and hassle-free. I looked up the same tutorial on the web and I found them all to be pretty similar. I don&#8217;t think it&#8217;s necessary to have a youtube video about this process because it&#8217;s so straightforward. The illustrations were great but maybe some little captions under each picture might help.</p>
<p>There are different amounts of ingredients you need for the process depending on what object you are trying to polish. One thing I learned with this task is that you can&#8217;t assume the reader will know anything. You have to tell them exactly what to do. I had to look up how much water I needed and how much baking soda was required. I didn&#8217;t really have any actual challenges with this tutorial because it was so easy and straightforward.</p>
<p>Because I was polishing a necklace, you can&#8217;t really see the results. It looked pretty much the same when I put it in the water as when I took it out. I think it might benefit more to polish something super dirty or an object that is quite large so you can see the results.</p>
<p>Here are the sketches for the design of my site. I thought I&#8217;d make a page from wikihow.</p>
<p><a href="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/sketches.jpg" rel="shadowbox[post-2577];player=img;"><img class="alignnone size-medium wp-image-2581" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/sketches-195x300.jpg" alt="" width="195" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/07/sterling-silver-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parsons Web Space</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/03/parsons-web-space/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/03/parsons-web-space/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 02:30:55 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2543</guid>
		<description><![CDATA[Hi guys,
Here is a link that tells you about your personal webspace: http://www.newschool.edu/at/help/faq/accounts/accounts.html#webspace
Apparently if you go into your my.newschool.edu account, you can find information about your webspace under the &#8220;student&#8221; tab. It has instructions on how to set up your personal webspace. The only problem is that it tells you to log into webspace.newschool.edu but [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys,</p>
<p>Here is a link that tells you about your personal webspace: http://www.newschool.edu/at/help/faq/accounts/accounts.html#webspace</p>
<p>Apparently if you go into your my.newschool.edu account, you can find information about your webspace under the &#8220;student&#8221; tab. It has instructions on how to set up your personal webspace. The only problem is that it tells you to log into webspace.newschool.edu but the website doesn&#8217;t work. Did anyone figure out another way to set up your newschool personal webspace?</p>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/03/parsons-web-space/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Jillian&#8217;s Tutorial: How to make a banana cream pie</title>
		<link>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/02/jillians-tutorial-how-to-make-a-banana-cream-pie/</link>
		<comments>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/02/jillians-tutorial-how-to-make-a-banana-cream-pie/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:50:34 +0000</pubDate>
		<dc:creator>jillian</dc:creator>
				<category><![CDATA[#1 - Tutorial]]></category>

		<guid isPermaLink="false">http://a.parsons.edu/~zeravivm/s10/osd/?p=2521</guid>
		<description><![CDATA[To everyone who loves a guilt- free banana cream pie for your winter munchies. I brought this to a dinner party once and it was a hit with my friends. The best thing about it is it&#8217;s a super easy recipe is great for people who&#8217;ve never even baked before. No whipped cream, no heavy [...]]]></description>
			<content:encoded><![CDATA[<p>To everyone who loves a guilt- free banana cream pie for your winter munchies. I brought this to a dinner party once and it was a hit with my friends. The best thing about it is it&#8217;s a super easy recipe is great for people who&#8217;ve never even baked before. No whipped cream, no heavy cream, absolutely no unhealthies. But, if you&#8217;re allergic to nuts you probably won&#8217;t be able to eat this.</p>
<p>With my tutorial, you&#8217;ll be learning step by step how to make this pie with the help of nifty photographs. It takes no more than 20 minutes to assemble and all the ingredients are organic. So enjoy!</p>
<div id="attachment_2548" class="wp-caption alignnone" style="width: 310px"><a href="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/banana-cream-piew.jpg" rel="shadowbox[post-2521];player=img;"><img class="size-medium wp-image-2548" src="http://a.parsons.edu/~zeravivm/s10/osd/wp-content/uploads/2010/02/banana-cream-piew-300x224.jpg" alt="" width="300" height="224" /></a><p class="wp-caption-text">banana cream pie</p></div>
]]></content:encoded>
			<wfw:commentRss>http://a.parsons.edu/~zeravivm/s10/osd/jillian/02/02/jillians-tutorial-how-to-make-a-banana-cream-pie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
