<?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>Laaatech</title>
	<atom:link href="http://laaatech.com/feed" rel="self" type="application/rss+xml" />
	<link>http://laaatech.com</link>
	<description>software, hardware, tips, and reviews</description>
	<lastBuildDate>Fri, 12 Apr 2013 04:51:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>YOURLS Plugin &#8211; Popular Links</title>
		<link>http://laaatech.com/yourls-plugin-popular-links</link>
		<comments>http://laaatech.com/yourls-plugin-popular-links#comments</comments>
		<pubDate>Sat, 22 Dec 2012 10:06:43 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=52</guid>
		<description><![CDATA[[NOTE: I've just come back from a 5 month downtime (couldn't afford a server after my last host went out of business), I've since moved my URL shortener off of Yourls, and moved it to Drupal, using the Shurly mod. When YOURLS advances a bit and has better spam filtering, I'll probably move back! Plugin [...]]]></description>
				<content:encoded><![CDATA[<div class="entry_content">
<p>[NOTE: I've just come back from a 5 month downtime (couldn't afford a server after my last host went out of business), I've since moved my URL shortener off of Yourls, and moved it to Drupal, using the Shurly mod. When YOURLS advances a bit and has better spam filtering, I'll probably move back! Plugin re-posted here for your convenience, but may be out of date. I last used YOURLS 1.51-beta]</p>
<p>&nbsp;</p>
<p>Short post, but I have thrown together a short plugin for YOURLS (using a lot of the code from http://gkurl.us/popular) that shows the most popular links created in 1,30,365, and 1000 days on a YOURLS site. It’s based on code from <a href="http://web.archive.org/web/20110713180523/http://www.mrtech.com/forums/index.php/topic,2524.0.html">Mrtech</a>, but is now in the form of a plugin.</p>
<p>Download here, save as plugin.php and upload to YOURLS_DIRECTORY/user/plugins/popular-links</p>
<p>&nbsp;</p>
<p><a href="http://pastebin.com/raw.php?i=NmM9D2Pi">http://pastebin.com/raw.php?i=NmM9D2Pi</a></p>
<p>Advanced:</p>
<p>At the bottom of the plugin, you can edit the values</p>
<p>&gt; show_top(1000,5);</p>
<p>1000 means the number of days you are selecting from the database</p>
<p>5 means the number of links you are selecting.</p>
<div class="clear"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/yourls-plugin-popular-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yourls Pages and Mods</title>
		<link>http://laaatech.com/yourls-pages-and-mods</link>
		<comments>http://laaatech.com/yourls-pages-and-mods#comments</comments>
		<pubDate>Sat, 22 Dec 2012 10:04:53 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=50</guid>
		<description><![CDATA[I have been using Yourls for over a year now with Gkurl.us, so I thought I would share the code for some of the modifications I have made. Popular Page This page shows the top links for day/week/month, and year, etc. Note that you will need to change the website URL, and possibly the table name (mine is url). Save [...]]]></description>
				<content:encoded><![CDATA[<div class="entry_content">
<p>I have been using <a href="http://web.archive.org/web/20110131024645/http://yourls.org/">Yourls</a> for over a year now with <a href="http://web.archive.org/web/20110131024645/http://gkurl.us/">Gkurl.us</a>, so I thought I would share the code for some of the modifications I have made.</p>
<p><strong>Popular Page</strong></p>
<p>This <a href="http://web.archive.org/web/20110131024645/http://gkurl.us/popular">page </a>shows the top links for day/week/month, and year, etc.</p>
<p>Note that you will need to change the website URL, and possibly the table name (mine is url). Save as popular.php and upload to the pages directory.</p>
<p><code></p>
<p>&lt;?php</code></p>
<p>require( ‘includes/load-yourls.php’ );</p>
<p>// TOP TODAY</p>
<p>$urlt2  = ”;</p>
<p>$sqlcode = “SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 1) “;</p>
<p>$sqlcode .= “order by clicks desc limit 1″;</p>
<p>$query = $ydb-&gt;get_results($sqlcode);</p>
<p>if ($query) {</p>
<p>foreach( $query as $query_result ) {</p>
<p>$thisURLArray  = parse_url(stripslashes($query_result-&gt;url));</p>
<p>$urlt2  .= ‘&lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’” target=”blank”&gt;’;</p>
<p>$urlt2  .= str_replace(‘www.’, ”, $query_result-&gt;title) . ‘&lt;/a&gt; &lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’+” target=”blank”&gt;(‘ . $query_result-&gt;clicks . ‘) &lt;/a&gt; – ‘ .$thisURLArray[host] .’ Submitted ‘ . $query_result-&gt;timestamp . ‘&lt;br/&gt;’;</p>
<p>}</p>
<p>}</p>
<p>echo ‘&lt;h3&gt;&lt;b&gt;Trending Today:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ‘ . $urlt2 . “&lt;br&gt;&lt;br&gt;\n\r”;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>// THIS WEEKS TOP LINKS</p>
<p>$urlt2  = ”;</p>
<p>$sqlcode = “SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 7) “;</p>
<p>$sqlcode .= “order by clicks desc limit 10″;</p>
<p>$query = $ydb-&gt;get_results($sqlcode);</p>
<p>if ($query) {</p>
<p>foreach( $query as $query_result ) {</p>
<p>$thisURLArray  = parse_url(stripslashes($query_result-&gt;url));</p>
<p>$urlt2  .= ‘&lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’” target=”blank”&gt;’;</p>
<p>$urlt2  .= str_replace(‘www.’, ”, $query_result-&gt;title) . ‘&lt;/a&gt; &lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’+” target=”blank”&gt;(‘ . $query_result-&gt;clicks . ‘) &lt;/a&gt; – ‘ .$thisURLArray[host] .’ Submitted ‘ . $query_result-&gt;timestamp . ‘&lt;br/&gt;’;</p>
<p>}</p>
<p>}</p>
<p>echo ‘&lt;h3&gt;&lt;b&gt;This Week\’s Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ‘ . $urlt2 . “&lt;br&gt;&lt;br&gt;\n\r”;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>// THIS MONTHS TOP LINKS</p>
<p>$urlt4  = ”;</p>
<p>$sqlmonth = “SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 31) “;</p>
<p>$sqlmonth .= “order by clicks desc limit 10″;</p>
<p>$query = $ydb-&gt;get_results($sqlmonth);</p>
<p>if ($query) {</p>
<p>foreach( $query as $query_result ) {</p>
<p>$thisURLArray  = parse_url(stripslashes($query_result-&gt;url));</p>
<p>$urlt4  .= ‘&lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’” target=”blank”&gt;’;</p>
<p>$urlt4  .= str_replace(‘www.’, ”, $query_result-&gt;title) . ‘&lt;/a&gt; &lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’+” target=”blank”&gt;(‘ . $query_result-&gt;clicks . ‘) &lt;/a&gt; – ‘ .$thisURLArray[host] .’ Submitted ‘ . $query_result-&gt;timestamp . ‘&lt;br/&gt;’;</p>
<p>}</p>
<p>}</p>
<p>echo ‘&lt;h3&gt;&lt;b&gt; This Months\’s Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt;’ . $urlt4 . “&lt;br&gt;&lt;br&gt;\n\r”;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>//THIS YEAR</p>
<p>$urlt5  = ”;</p>
<p>// This year</p>
<p>$sqlyear = “SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 366) “;</p>
<p>$sqlyear .= “order by clicks desc limit 10″;</p>
<p>$query = $ydb-&gt;get_results($sqlyear);</p>
<p>if ($query) {</p>
<p>foreach( $query as $query_result ) {</p>
<p>$thisURLArray  = parse_url(stripslashes($query_result-&gt;url));</p>
<p>$urlt5 .= ‘&lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’” target=”blank”&gt;’;</p>
<p>$urlt5  .= str_replace(‘www.’, ”, $query_result-&gt;title) . ‘&lt;/a&gt; &lt;a href=”http://gkurl.us/’ . $query_result-&gt;keyword .’+” target=”blank”&gt;(‘ . $query_result-&gt;clicks . ‘) &lt;/a&gt; – ‘ .$thisURLArray[host] .’ Submitted ‘ . $query_result-&gt;timestamp . ‘&lt;br/&gt;’;</p>
<p>}</p>
<p>}</p>
<p>echo ‘&lt;h3&gt;&lt;b&gt; All Time Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ‘ . $urlt5 . “&lt;br&gt;&lt;br&gt;\n\r”;</p>
<p>?&gt;</p>
<p>&nbsp;</p>
<p><strong>Top Pics Page</strong></p>
<p>This code shows the <a href="http://web.archive.org/web/20110131024645/http://gkurl.us/pics">top images</a> (urls with gif, jpg, jpeg, or png).</p>
<p>Again, you will have to change the URL and table name.</p>
<p><code></p>
<p></code></p>
<div id="_mcePaste"><code>&lt;?php</code></div>
<div id="_mcePaste"><code>require( 'includes/load-yourls.php' );</code></div>
<div id="_mcePaste"><code>?&gt;</code></div>
<div id="_mcePaste"><code>&lt;?php</code></div>
<div id="_mcePaste">$urlt5 = ”;</div>
<div id="_mcePaste"><code>// This month</code></div>
<div id="_mcePaste"><code>$sqlyear = "SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 1)  AND url like '%.jpg%' OR  timestamp &gt;= SUBDATE(CURDATE(), 1)  AND url like '%.gif%' OR  timestamp &gt;= SUBDATE(CURDATE(), 1)  AND url like '%.png%'  ";</code></div>
<div id="_mcePaste"><code>$sqlyear .= "order by clicks desc limit 5";</code></div>
<div id="_mcePaste"><code>$query = $ydb-&gt;get_results($sqlyear);</code></div>
<div id="_mcePaste"><code>if ($query) {</code></div>
<div id="_mcePaste"><code>$i = 0;</code></div>
<div id="_mcePaste"><code>foreach( $query as $query_result ) {</code></div>
<div id="_mcePaste"><code>$i++;</code></div>
<div id="_mcePaste"><code>$thisURLArray = parse_url(stripslashes($query_result-&gt;url));</code></div>
<div id="_mcePaste"><code>$url = $query_result-&gt;url;</code></div>
<div id="_mcePaste"><code>$urlt5 .= '&lt;a href="http://gkurl.us/' .$query_result-&gt;keyword. '"  title="' . $query_result-&gt;title . ' ( ' . $query_result-&gt;clicks . ') "&gt;&lt;img align="center" src="' .$url. '" width="20%" height="20%" alt="" /&gt;&lt;/a&gt;';</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>echo '&lt;h3&gt;&lt;b&gt; Top Pictures Today:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ' . $urlt5 . "&lt;br&gt;&lt;br&gt;\n\r";</code></div>
<div id="_mcePaste"><code>?&gt;</code></div>
<div id="_mcePaste"><code>&lt;?php</code></div>
<div id="_mcePaste"><code>//THIS week</code></div>
<div id="_mcePaste"><code>$urlt5 = '';</code></div>
<div id="_mcePaste"><code>// This weel</code></div>
<div id="_mcePaste"><code>$sqlyear = "SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 7)  AND url like '%jpg%' OR  timestamp &gt;= SUBDATE(CURDATE(), 7) AND url like '%.gif%' OR  timestamp &gt;= SUBDATE(CURDATE(), 7) AND url like '%.png%'  ";</code></div>
<div id="_mcePaste"><code>$sqlyear .= "order by clicks desc limit 5";</code></div>
<div id="_mcePaste"><code>$query = $ydb-&gt;get_results($sqlyear);</code></div>
<div id="_mcePaste"><code>if ($query) {</code></div>
<div id="_mcePaste"><code>$i = 0;</code></div>
<div id="_mcePaste"><code>foreach( $query as $query_result ) {</code></div>
<div id="_mcePaste"><code>$i++;</code></div>
<div id="_mcePaste"><code>$thisURLArray = parse_url(stripslashes($query_result-&gt;url));</code></div>
<div id="_mcePaste"><code>$url = $query_result-&gt;url;</code></div>
<div id="_mcePaste"><code>$urlt5 .= '&lt;a href="http://gkurl.us/' .$query_result-&gt;keyword. '"  title="' . $query_result-&gt;title . ' ( ' . $query_result-&gt;clicks . ') "&gt;&lt;img src="' .$url. '" width="20%" height="20%" alt="" /&gt;&lt;/a&gt;';</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>echo '&lt;h3&gt;&lt;b&gt; This Weeks Top Pics:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ' . $urlt5 . "&lt;br&gt;&lt;br&gt;\n\r";</code></div>
<div id="_mcePaste"><code>?&gt;</code></div>
<div id="_mcePaste"><code>&lt;?php</code></div>
<div id="_mcePaste"><code>//THIS month</code></div>
<div id="_mcePaste"><code>$urlt5 = '';</code></div>
<div id="_mcePaste"><code>// This month</code></div>
<div id="_mcePaste"><code>$sqlyear = "SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 31) AND url like '%.jpg%' OR timestamp &gt;= SUBDATE(CURDATE(), 31) AND url like '%.gif%' OR timestamp &gt;= SUBDATE(CURDATE(), 31) AND  url like '%.png%'   ";</code></div>
<div id="_mcePaste"><code>$sqlyear .= "order by clicks desc limit 5";</code></div>
<div id="_mcePaste"><code>$query = $ydb-&gt;get_results($sqlyear);</code></div>
<div id="_mcePaste"><code>if ($query) {</code></div>
<div id="_mcePaste"><code>$i = 0;</code></div>
<div id="_mcePaste"><code>foreach( $query as $query_result ) {</code></div>
<div id="_mcePaste"><code>$i++;</code></div>
<div id="_mcePaste"><code>$thisURLArray = parse_url(stripslashes($query_result-&gt;url));</code></div>
<div id="_mcePaste"><code>$url = $query_result-&gt;url;</code></div>
<div id="_mcePaste"><code>$urlt5 .= '&lt;a href="http://gkurl.us/' .$query_result-&gt;keyword. '"  title="' . $query_result-&gt;title . ' ( ' . $query_result-&gt;clicks . ') "&gt;&lt;img src="' .$url. '" width="20%" height="20%" alt="" /&gt;&lt;/a&gt;';</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>echo '&lt;h3&gt;&lt;b&gt; This Months Top Pics:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ' . $urlt5 . "&lt;br&gt;&lt;br&gt;\n\r";</code></div>
<div id="_mcePaste"><code>?&gt;</code></div>
<div id="_mcePaste"><code>&lt;?php</code></div>
<div id="_mcePaste"><code>//THIS YEAR</code></div>
<div id="_mcePaste"><code>$urlt5 = '';</code></div>
<div id="_mcePaste"><code>// This year</code></div>
<div id="_mcePaste"><code>$sqlyear = "SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE url like '%jpg%' OR url like '%.gif%' OR url like '%.png%' ";</code></div>
<div id="_mcePaste"><code>$sqlyear .= "order by clicks desc limit 5";</code></div>
<div id="_mcePaste"><code>$query = $ydb-&gt;get_results($sqlyear);</code></div>
<div id="_mcePaste"><code>if ($query) {</code></div>
<div id="_mcePaste"><code>$i = 0;</code></div>
<div id="_mcePaste"><code>foreach( $query as $query_result ) {</code></div>
<div id="_mcePaste"><code>$i++;</code></div>
<div id="_mcePaste"><code>$thisURLArray = parse_url(stripslashes($query_result-&gt;url));</code></div>
<div id="_mcePaste"><code>$url = $query_result-&gt;url;</code></div>
<div id="_mcePaste"><code>$urlt5 .= '&lt;a href="http://gkurl.us/' .$query_result-&gt;keyword. '"  title="' . $query_result-&gt;title . ' ( ' . $query_result-&gt;clicks . ') "&gt;&lt;img src="' .$url. '" width="20%" height="20%" alt="" /&gt;&lt;/a&gt;';</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>}</code></div>
<div id="_mcePaste"><code>echo '&lt;h3&gt;&lt;b&gt; All Time Top Pics:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; ' . $urlt5 . "&lt;br&gt;&lt;br&gt;\n\r";</code></div>
<div id="_mcePaste"><code>?&gt;</code></div>
<p><strong>More Coming Soon</strong></p>
<p>As I make more mods and pages, I’ll add them here.</p>
<div class="clear"></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/yourls-pages-and-mods/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About</title>
		<link>http://laaatech.com/about</link>
		<comments>http://laaatech.com/about#comments</comments>
		<pubDate>Sat, 22 Dec 2012 10:01:42 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=48</guid>
		<description><![CDATA[Whoa whoa whoa whoa, you need an about page to find out about me? I’m laaabaseball, I run Kurtonium Media, and I spend waaaayyyy too much time on reddit. Good enough? ]]></description>
				<content:encoded><![CDATA[<p>Whoa whoa whoa whoa, you need an about page to find out about me?</p>
<p>I’m laaabaseball, I run Kurtonium Media, and I spend waaaayyyy too much time on reddit.</p>
<p>Good enough? <img alt=":D" src="http://laaatech.com/wp-includes/images/smilies/icon_biggrin.gif" /></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/about/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/brought-some-carlsjr-to-work</link>
		<comments>http://laaatech.com/brought-some-carlsjr-to-work#comments</comments>
		<pubDate>Mon, 03 Dec 2012 04:35:42 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/brought-some-carlsjr-to-work</guid>
		<description><![CDATA[Brought some @carlsjr to work]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/brought-some-carlsjr-to-work/attachment/4902' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/12/tumblr_mefu3jiXZL1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>Brought some @carlsjr to work</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/brought-some-carlsjr-to-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/this-is-the-dumbest-thing-ever</link>
		<comments>http://laaatech.com/this-is-the-dumbest-thing-ever#comments</comments>
		<pubDate>Thu, 29 Nov 2012 00:44:34 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/this-is-the-dumbest-thing-ever</guid>
		<description><![CDATA[This is the dumbest thing ever -_-]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/this-is-the-dumbest-thing-ever/attachment/4905' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me84qaU5mU1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>This is the dumbest thing ever -_-</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/this-is-the-dumbest-thing-ever/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/my-gym-workout-night-earth-coldasfuck</link>
		<comments>http://laaatech.com/my-gym-workout-night-earth-coldasfuck#comments</comments>
		<pubDate>Wed, 28 Nov 2012 06:51:28 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coldasfuck]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[night]]></category>
		<category><![CDATA[workout]]></category>

		<guid isPermaLink="false">http://laaatech.com/my-gym-workout-night-earth-coldasfuck</guid>
		<description><![CDATA[My gym. #workout #night #earth #coldasfuck]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/my-gym-workout-night-earth-coldasfuck/attachment/4908' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me6r1ssLIl1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>My gym. #workout #night #earth #coldasfuck</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/my-gym-workout-night-earth-coldasfuck/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/thisiswar</link>
		<comments>http://laaatech.com/thisiswar#comments</comments>
		<pubDate>Wed, 28 Nov 2012 06:16:05 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[thisiswar]]></category>

		<guid isPermaLink="false">http://laaatech.com/thisiswar</guid>
		<description><![CDATA[#thisiswar]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/thisiswar/attachment/4911' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me6petQ4ES1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>#thisiswar</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/thisiswar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/so-much-happening-on-campus-today-csun</link>
		<comments>http://laaatech.com/so-much-happening-on-campus-today-csun#comments</comments>
		<pubDate>Tue, 27 Nov 2012 22:02:38 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[csun]]></category>

		<guid isPermaLink="false">http://laaatech.com/so-much-happening-on-campus-today-csun</guid>
		<description><![CDATA[So much happening on campus today #csun]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/so-much-happening-on-campus-today-csun/attachment/4914' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me62ke4LH31qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>So much happening on campus today #csun</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/so-much-happening-on-campus-today-csun/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/workout-night-cold</link>
		<comments>http://laaatech.com/workout-night-cold#comments</comments>
		<pubDate>Tue, 27 Nov 2012 06:35:29 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cold]]></category>
		<category><![CDATA[night]]></category>
		<category><![CDATA[workout]]></category>

		<guid isPermaLink="false">http://laaatech.com/workout-night-cold</guid>
		<description><![CDATA[#workout #night #cold]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/workout-night-cold/attachment/4917' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me4vn5gCfL1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>#workout #night #cold</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/workout-night-cold/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/my-new-wristbands-lol</link>
		<comments>http://laaatech.com/my-new-wristbands-lol#comments</comments>
		<pubDate>Sun, 25 Nov 2012 07:20:43 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wristbands]]></category>

		<guid isPermaLink="false">http://laaatech.com/my-new-wristbands-lol</guid>
		<description><![CDATA[My new #wristbands lol]]></description>
				<content:encoded><![CDATA[
<a href='http://laaatech.com/my-new-wristbands-lol/attachment/4920' title=''><img width="150" height="150" src="http://laaatech.com/wp-content/uploads/2012/11/tumblr_me18ej6HRf1qamb5so1_1280-150x150.jpg" class="attachment-thumbnail" alt="" /></a>

<p>My new #wristbands lol</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/my-new-wristbands-lol/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
