<?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>anthony l rivera</title>
	<atom:link href="http://anthonylrivera.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://anthonylrivera.net</link>
	<description>[web design &#38; development &#124; guitarist]</description>
	<lastBuildDate>Thu, 21 Jan 2010 20:56:09 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Moving out is awesome!</title>
		<link>http://anthonylrivera.net/2010/01/moving-out-is-awesome/</link>
		<comments>http://anthonylrivera.net/2010/01/moving-out-is-awesome/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 02:26:46 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[brooklyn]]></category>
		<category><![CDATA[Bushwick]]></category>
		<category><![CDATA[roommates]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2010/01/moving-out-is-awesome/</guid>
		<description><![CDATA[So recently my girlfriend and I moved in to a duplex in Bushwick, Brooklyn. This is our first foray into living on our own, and so far it has been awesome.
2 awesome roommates. Lots of friends nearby.
I have been very busy as of recently. Working on a lot of projects.
2010 off to a great start.
Cheers! [...]]]></description>
			<content:encoded><![CDATA[<p>So recently my girlfriend and I moved in to a duplex in Bushwick, Brooklyn. This is our first foray into living on our own, and so far it has been awesome.<br />
2 awesome roommates. Lots of friends nearby.</p>
<p>I have been very busy as of recently. Working on a lot of projects.</p>
<p>2010 off to a great start.</p>
<p>Cheers!  </p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2010/01/moving-out-is-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>is_subcategory()</title>
		<link>http://anthonylrivera.net/2009/12/is_subcategory/</link>
		<comments>http://anthonylrivera.net/2009/12/is_subcategory/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 20:48:32 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[is_subcategory()]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/?p=228</guid>
		<description><![CDATA[Ok, I just spent the better part of ALL DAY trying to figure this out.
I want my wordpress category.php template to be able to detect whether the category it is serving is a parent category or subcategory. THATS IT. And without having to hard code any category ID&#8217;s. After perusing the forums and codex for [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I just spent the better part of ALL DAY trying to figure this out.</p>
<p>I want my wordpress category.php template to be able to detect whether the category it is serving is a parent category or subcategory. THATS IT. And without having to hard code any category ID&#8217;s. After perusing the forums and codex for a couple of hours, the marriage of these two functions seemed to get the job done.</p>
<p><a href="http://codex.wordpress.org/Function_Reference/get_query_var" target="_blank">get_query_var</a> is the variable stored in the query that tells category.php what category to serve.</p>
<p><a href="http://http://codex.wordpress.org/Function_Reference/get_category" target="_blank">get_category</a> retrieves category data given a category ID or category object.</p>
<p>Here&#8217;s the function that goes in your functions.php file:</p>
<pre>function is_subcategory (){
    $cat = get_query_var('cat');
    $category = get_category($cat);
    return ( $category-&gt;parent == '0' ) ? true : false;
}</pre>
<p>Then you can use this in your category.php file to determine if the category you are serving is a parent category or subcategory:</p>
<pre>
if ( is_subcategory() ):
     //displaying subcategory
else:
    //displaying parent category
endif;
</pre>
<p>Hope this helps some people out there.</p>
<p><em>*note: both code snippets should be wrapped inside php brackets. &lt;?php  ?&gt;   </em></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/12/is_subcategory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>BURNT BY THE SUN: Exclusive Live Footage Posted From Their Last U.S. Show Evaaar</title>
		<link>http://anthonylrivera.net/2009/11/burnt-by-the-sun-exclusive-live-footage-posted-from-their-last-u-s-show-evaaar/</link>
		<comments>http://anthonylrivera.net/2009/11/burnt-by-the-sun-exclusive-live-footage-posted-from-their-last-u-s-show-evaaar/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 22:02:00 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[burnt by the sun]]></category>
		<category><![CDATA[cake shop]]></category>
		<category><![CDATA[last u.s. show]]></category>
		<category><![CDATA[metal injection]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2009/11/burnt-by-the-sun-exclusive-live-footage-posted-from-their-last-u-s-show-evaaar/</guid>
		<description><![CDATA[BURNT BY THE SUN: Exclusive Live Footage Posted From Their Last U.S. Show Evaaar
Posted using ShareThis
]]></description>
			<content:encoded><![CDATA[<p><a href=http://www.metalinjection.net/av/burnt-sun-exclusive-live-footage-posted-show-evaaar>BURNT BY THE SUN: Exclusive Live Footage Posted From Their Last U.S. Show Evaaar</a></p>
<p>Posted using <a href="http://sharethis.com">ShareThis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/11/burnt-by-the-sun-exclusive-live-footage-posted-from-their-last-u-s-show-evaaar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordCamp NYC 2009. Be there, or be square.</title>
		<link>http://anthonylrivera.net/2009/11/wordcamp-nyc-2009-be-there-or-be-square/</link>
		<comments>http://anthonylrivera.net/2009/11/wordcamp-nyc-2009-be-there-or-be-square/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:23:51 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[NYC]]></category>
		<category><![CDATA[WordCampNYC]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2009/11/wordcamp-nyc-2009-be-there-or-be-square/</guid>
		<description><![CDATA[
I&#8217;m very excited to say that I will be attending WordCamp NYC 2009. I have been working with WordPress for the past two years and it has completely revoltuionized the way I design web sites.
 If it weren&#8217;t for WordPress, I wouldn&#8217;t lead the life I live today. But that aside, its exciting to participate [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://2009.newyork.wordcamp.org"  title="WordCampNYC – Nov 14-15"><img alt="WordCampNYC – Nov 14-15" src="http://2009.newyork.wordcamp.org/files/2009/10/wcnyc-attending-250.jpg" /></a></p>
<p>I&#8217;m very excited to say that I will be attending WordCamp NYC 2009. I have been working with WordPress for the past two years and it has completely revoltuionized the way I design web sites.</p>
<p> If it weren&#8217;t for WordPress, I wouldn&#8217;t lead the life I live today. But that aside, its exciting to participate in such an awesome community. I look forward to meeting fellow WordPress users and abusers.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/11/wordcamp-nyc-2009-be-there-or-be-square/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My beef with the CMJ festival</title>
		<link>http://anthonylrivera.net/2009/10/my-beef-with-the-cmj-festival/</link>
		<comments>http://anthonylrivera.net/2009/10/my-beef-with-the-cmj-festival/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:47:14 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[beef]]></category>
		<category><![CDATA[cmj]]></category>
		<category><![CDATA[Dillinger Escape Plan]]></category>
		<category><![CDATA[indie]]></category>
		<category><![CDATA[odb]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/?p=203</guid>
		<description><![CDATA[Ok so ever since I can remember the CMJ Festival, I would peruse the listing of bands playing and for one reason or another would never recognize any of them. Now I do understand its a showcase of emerging artists, so chances of my having heard them before is slim. HOWEVER, after the fact I [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so ever since I can remember the CMJ Festival, I would peruse the listing of bands playing and for one reason or another would never recognize any of them. Now I do understand its a showcase of emerging artists, so chances of my having heard them before is slim. HOWEVER, after the fact I always come to find out that bands I DO actually like ALSO performed, but it wasn&#8217;t really advertised or promoted. WTF ?!@#$</p>
<p>Ok so that&#8217;s my beef with CMJ. However one year I did manage to see Dillinger Escape Plan open up for Ol&#8217; Dirty Bastard (RIP) on a CMJ Showcase. Badass.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/10/my-beef-with-the-cmj-festival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deflorate DVD Bonus</title>
		<link>http://anthonylrivera.net/2009/10/deflorate-dvd-bonus/</link>
		<comments>http://anthonylrivera.net/2009/10/deflorate-dvd-bonus/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 16:11:37 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[black dahlia murder]]></category>
		<category><![CDATA[drum]]></category>
		<category><![CDATA[extreme drumming]]></category>
		<category><![CDATA[Shannon Lucas]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2009/10/deflorate-dvd-bonus/</guid>
		<description><![CDATA[So my friend Stan sent me this video for all you metal drum nerds to enjoy. Current drummer from the Black Dahlia Murder Shannon Lucas doing what he does best, bangin&#8217; those skins&#8230;

]]></description>
			<content:encoded><![CDATA[<p>So my friend Stan sent me this video for all you metal drum nerds to enjoy. Current drummer from the Black Dahlia Murder Shannon Lucas doing what he does best, bangin&#8217; those skins&#8230;</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/MgTG6A4ga2Y&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MgTG6A4ga2Y&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/10/deflorate-dvd-bonus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ode to working from home</title>
		<link>http://anthonylrivera.net/2009/10/ode-to-working-from-home/</link>
		<comments>http://anthonylrivera.net/2009/10/ode-to-working-from-home/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 17:11:16 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[arrange]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[organize]]></category>
		<category><![CDATA[repeat]]></category>
		<category><![CDATA[work from home]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2009/10/ode-to-working-from-home/</guid>
		<description><![CDATA[We live in an age where I can perform my job from remote locations. Here, there, anywhere there is an internet connection. But alas, I still need my &#8220;files&#8221;&#8230; That collection of 0&#8217;s and 1&#8217;s that amount to text documents with the &#8220;instructions&#8221; I lay inside. Arrange, Organize, Repeat.
]]></description>
			<content:encoded><![CDATA[<p>We live in an age where I can perform my job from remote locations. Here, there, anywhere there is an internet connection. But alas, I still need my &#8220;files&#8221;&#8230; That collection of 0&#8217;s and 1&#8217;s that amount to text documents with the &#8220;instructions&#8221; I lay inside. Arrange, Organize, Repeat.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/10/ode-to-working-from-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burnt By The Sun @ The Cake Shop</title>
		<link>http://anthonylrivera.net/2009/10/burnt-by-the-sun-the-cake-shop/</link>
		<comments>http://anthonylrivera.net/2009/10/burnt-by-the-sun-the-cake-shop/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 14:43:53 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/?p=192</guid>
		<description><![CDATA[Was soooo brutal. And just awesome. It reminded me why I love going to shows. Which is a good thing. Cause I always start to forget. Hopefully the footage of this amazing show surfaces quickly. *Ahem* *Cough*. Pardon, me.
]]></description>
			<content:encoded><![CDATA[<p>Was soooo brutal. And just awesome. It reminded me why I love going to shows. Which is a good thing. Cause I always start to forget. Hopefully the footage of this amazing show surfaces quickly. *Ahem* *Cough*. Pardon, me.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/10/burnt-by-the-sun-the-cake-shop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;Community &#8211; Spanish Rap&#8221;</title>
		<link>http://anthonylrivera.net/2009/09/community-spanish-rap/</link>
		<comments>http://anthonylrivera.net/2009/09/community-spanish-rap/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 07:47:31 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[rap]]></category>
		<category><![CDATA[spanish]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/2009/09/community-spanish-rap/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/EcD_Y838DXA&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/EcD_Y838DXA&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/09/community-spanish-rap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go back to Google&#8217;s original size search bar</title>
		<link>http://anthonylrivera.net/2009/09/go-back-to-googles-original-size-search-bar/</link>
		<comments>http://anthonylrivera.net/2009/09/go-back-to-googles-original-size-search-bar/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 20:33:37 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[web design / development]]></category>
		<category><![CDATA[google search bar normal size]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[helvetireader]]></category>
		<category><![CDATA[lifehacker]]></category>
		<category><![CDATA[user scripts]]></category>

		<guid isPermaLink="false">http://anthonylrivera.net/?p=189</guid>
		<description><![CDATA[So as some of you may have noticed, Google made their search bar more accessible to the geriatric community by enlarging the search bar and font size. Now as a human being (aka &#8216;creature of habit&#8217;), this bothers the hell out of me. I&#8217;m totally not used to it, I don&#8217;t want to get used [...]]]></description>
			<content:encoded><![CDATA[<p>So as some of you may have noticed, Google made their search bar more accessible to the geriatric community by enlarging the search bar and font size. Now as a human being (aka &#8216;creature of habit&#8217;), this bothers the hell out of me. I&#8217;m totally not used to it, I don&#8217;t want to get used to it. Just put it back to normal.</p>
<p>In comes, <a href="https://addons.mozilla.org/firefox/addon/748">GreaseMonkey</a>. </p>
<p>Now I&#8217;ll be the first to admit, I have a problem with Firefox plugins, in that I use entirely too many. But this one is totally worth it. With user scripts that return the <a href="http://lifehacker.com/5357599/un+supersize-google-search-with-a-user-script">Google search bar back to normal</a>, <a href="http://helvetireader.com/">pimp out your google reader</a>, AND <a href="http://www.iamadtaylor.com/helvetical/">google calendar</a>, you can&#8217;t go wrong.  </p>
<p>I&#8217;ve fallen in love.</p>
<p>Links courtesy of <a href="http://www.lifehacker.com/">Lifehacker</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://anthonylrivera.net/2009/09/go-back-to-googles-original-size-search-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
