<?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.com</title>
	<atom:link href="http://laaatech.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://laaatech.com</link>
	<description>Kurtonium Media</description>
	<lastBuildDate>Fri, 20 Jan 2012 00:54:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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>Thu, 19 Jan 2012 12:25:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=1533</guid>
		<description><![CDATA[<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>Popular Page</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 [...]]]></description>
			<content:encoded><![CDATA[<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><strong></strong>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.<br />
<code><br />
&lt;?php</code></p>
<p>require( &#8216;includes/load-yourls.php&#8217; );</p>
<p>// TOP TODAY</p>
<p>$urlt2  = &#8221;;</p>
<p>$sqlcode = &#8220;SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 1) &#8220;;</p>
<p>$sqlcode .= &#8220;order by clicks desc limit 1&#8243;;</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  .= &#8216;&lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;&#8221; target=&#8221;blank&#8221;&gt;&#8217;;</p>
<p>$urlt2  .= str_replace(&#8216;www.&#8217;, &#8221;, $query_result-&gt;title) . &#8216;&lt;/a&gt; &lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;+&#8221; target=&#8221;blank&#8221;&gt;(&#8216; . $query_result-&gt;clicks . &#8216;) &lt;/a&gt; &#8211; &#8216; .$thisURLArray[host] .&#8217; Submitted &#8216; . $query_result-&gt;timestamp . &#8216;&lt;br/&gt;&#8217;;</p>
<p>}</p>
<p>}</p>
<p>echo &#8216;&lt;h3&gt;&lt;b&gt;Trending Today:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; &#8216; . $urlt2 . &#8220;&lt;br&gt;&lt;br&gt;\n\r&#8221;;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>// THIS WEEKS TOP LINKS</p>
<p>$urlt2  = &#8221;;</p>
<p>$sqlcode = &#8220;SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 7) &#8220;;</p>
<p>$sqlcode .= &#8220;order by clicks desc limit 10&#8243;;</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  .= &#8216;&lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;&#8221; target=&#8221;blank&#8221;&gt;&#8217;;</p>
<p>$urlt2  .= str_replace(&#8216;www.&#8217;, &#8221;, $query_result-&gt;title) . &#8216;&lt;/a&gt; &lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;+&#8221; target=&#8221;blank&#8221;&gt;(&#8216; . $query_result-&gt;clicks . &#8216;) &lt;/a&gt; &#8211; &#8216; .$thisURLArray[host] .&#8217; Submitted &#8216; . $query_result-&gt;timestamp . &#8216;&lt;br/&gt;&#8217;;</p>
<p>}</p>
<p>}</p>
<p>echo &#8216;&lt;h3&gt;&lt;b&gt;This Week\&#8217;s Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; &#8216; . $urlt2 . &#8220;&lt;br&gt;&lt;br&gt;\n\r&#8221;;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>// THIS MONTHS TOP LINKS</p>
<p>$urlt4  = &#8221;;</p>
<p>$sqlmonth = &#8220;SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 31) &#8220;;</p>
<p>$sqlmonth .= &#8220;order by clicks desc limit 10&#8243;;</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  .= &#8216;&lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;&#8221; target=&#8221;blank&#8221;&gt;&#8217;;</p>
<p>$urlt4  .= str_replace(&#8216;www.&#8217;, &#8221;, $query_result-&gt;title) . &#8216;&lt;/a&gt; &lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;+&#8221; target=&#8221;blank&#8221;&gt;(&#8216; . $query_result-&gt;clicks . &#8216;) &lt;/a&gt; &#8211; &#8216; .$thisURLArray[host] .&#8217; Submitted &#8216; . $query_result-&gt;timestamp . &#8216;&lt;br/&gt;&#8217;;</p>
<p>}</p>
<p>}</p>
<p>echo &#8216;&lt;h3&gt;&lt;b&gt; This Months\&#8217;s Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt;&#8217; . $urlt4 . &#8220;&lt;br&gt;&lt;br&gt;\n\r&#8221;;</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>//THIS YEAR</p>
<p>$urlt5  = &#8221;;</p>
<p>// This year</p>
<p>$sqlyear = &#8220;SELECT title, timestamp, url, keyword, clicks FROM `url` WHERE timestamp &gt;= SUBDATE(CURDATE(), 366) &#8220;;</p>
<p>$sqlyear .= &#8220;order by clicks desc limit 10&#8243;;</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 .= &#8216;&lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;&#8221; target=&#8221;blank&#8221;&gt;&#8217;;</p>
<p>$urlt5  .= str_replace(&#8216;www.&#8217;, &#8221;, $query_result-&gt;title) . &#8216;&lt;/a&gt; &lt;a href=&#8221;http://gkurl.us/&#8217; . $query_result-&gt;keyword .&#8217;+&#8221; target=&#8221;blank&#8221;&gt;(&#8216; . $query_result-&gt;clicks . &#8216;) &lt;/a&gt; &#8211; &#8216; .$thisURLArray[host] .&#8217; Submitted &#8216; . $query_result-&gt;timestamp . &#8216;&lt;br/&gt;&#8217;;</p>
<p>}</p>
<p>}</p>
<p>echo &#8216;&lt;h3&gt;&lt;b&gt; All Time Top links:&lt;/b&gt;&lt;/h3&gt;&lt;br/&gt; &#8216; . $urlt5 . &#8220;&lt;br&gt;&lt;br&gt;\n\r&#8221;;</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><br />
</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><br />
As I make more mods and pages, I’ll add them here.</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/yourls-pages-and-mods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YOURLS Plugin – Popular Links</title>
		<link>http://laaatech.com/yourls-plugin-popular-links/</link>
		<comments>http://laaatech.com/yourls-plugin-popular-links/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 12:21:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=1425</guid>
		<description><![CDATA[<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 [...]]]></description>
			<content:encoded><![CDATA[<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>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/yourls-plugin-popular-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another new start</title>
		<link>http://laaatech.com/another-new-start/</link>
		<comments>http://laaatech.com/another-new-start/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 11:24:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/?p=7</guid>
		<description><![CDATA[<p>I&#8217;ve put off restarting this blog for quite a while, as I&#8217;ve been working on http://kurtonium.com and http://gkurl.us but I am working on getting the old posts on this blog back up, and start having occasional posts here. Later!</p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put off restarting this blog for quite a while, as I&#8217;ve been working on http://kurtonium.com and http://gkurl.us but I am working on getting the old posts on this blog back up, and start having occasional posts here. Later!</p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/another-new-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog &#8211; Kurtonium</title>
		<link>http://laaatech.com/new-blog-kurtonium/</link>
		<comments>http://laaatech.com/new-blog-kurtonium/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 03:53:43 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/new-blog-kurtonium/</guid>
		<description><![CDATA[<p><a href='http://kurtonium.com'>New Blog &#8211; Kurtonium</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://kurtonium.com'>New Blog &#8211; Kurtonium</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/new-blog-kurtonium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Somebody to love</title>
		<link>http://laaatech.com/13/</link>
		<comments>http://laaatech.com/13/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 22:07:57 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/13/</guid>
		<description><![CDATA[<p><a href="http://laaatech.com/?attachment_id=12" rel="attachment wp-att-12"></a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://laaatech.com/?attachment_id=12" rel="attachment wp-att-12"><img class="alignnone size-large wp-image-12" src="http://laaatech.com/wp-content/uploads/2012/01/tumblr_lspg6zKE0T1qi9oq0o1_1280.png" alt="" width="584" height="646" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://laaatech.com/15/</link>
		<comments>http://laaatech.com/15/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 07:46:56 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/15/</guid>
		<description><![CDATA[<p></p>]]></description>
			<content:encoded><![CDATA[<p><img src="http://laaatech.com/wp-content/uploads/2012/01/tumblr_ls01q9U7Zu1qzlfumo1_500.jpg" alt="" width="500" height="564" class="alignnone size-large wp-image-14" /></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>   Seeing what you were up to, and what you were excited enough to tweet about, can give you some helpful (and funny) perspective .TwitShift gives you a convenient way to follow your&#8230;</title>
		<link>http://laaatech.com/twitshift-creates-a-twitter-feed-of-yourself-from-one/</link>
		<comments>http://laaatech.com/twitshift-creates-a-twitter-feed-of-yourself-from-one/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 17:55:37 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/twitshift-creates-a-twitter-feed-of-yourself-from-one/</guid>
		<description><![CDATA[<p><a href='http://feeds.gawker.com/~r/lifehacker/full/~3/PCuoFFH3Ofk/twitshift-creates-a-twitter-feed-of-yourself-from-one-year-ago'>TwitShift Creates a Twitter Feed of Yourself From One Year Ago [Twitter]</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://feeds.gawker.com/~r/lifehacker/full/~3/PCuoFFH3Ofk/twitshift-creates-a-twitter-feed-of-yourself-from-one-year-ago'>TwitShift Creates a Twitter Feed of Yourself From One Year Ago [Twitter]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/twitshift-creates-a-twitter-feed-of-yourself-from-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>   Distracting yourself from the thing you&#8217;re desperately trying not to do—eat sweets, smoke a cigarette, check Reddit—is one of the most effective willpower boosters. And taking a&#8230;</title>
		<link>http://laaatech.com/taking-a-walk-can-help-stave-off-cravings-mind-hacks/</link>
		<comments>http://laaatech.com/taking-a-walk-can-help-stave-off-cravings-mind-hacks/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 00:26:13 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/taking-a-walk-can-help-stave-off-cravings-mind-hacks/</guid>
		<description><![CDATA[<p><a href='http://feeds.gawker.com/~r/lifehacker/full/~3/RgRHGr2eFSQ/taking-a-walk-can-help-stave-off-cravings'>Taking a Walk Can Help Stave Off Cravings [Mind Hacks]</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://feeds.gawker.com/~r/lifehacker/full/~3/RgRHGr2eFSQ/taking-a-walk-can-help-stave-off-cravings'>Taking a Walk Can Help Stave Off Cravings [Mind Hacks]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/taking-a-walk-can-help-stave-off-cravings-mind-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve moved this stream &gt;</title>
		<link>http://laaatech.com/ive-moved-this-stream/</link>
		<comments>http://laaatech.com/ive-moved-this-stream/#comments</comments>
		<pubDate>Tue, 28 Dec 2010 07:09:46 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/ive-moved-this-stream/</guid>
		<description><![CDATA[<p><a href='http://gkurl.us/laaa'>I&#8217;ve moved this stream &#62;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://gkurl.us/laaa'>I&#8217;ve moved this stream &gt;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/ive-moved-this-stream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tomorrow night, July 31, Twitter has announced they are having some planned downtime. Beginning at 11 PM PT, Twitter will likely be down on and off for up to 5 hours, Twitter warns.
The&#8230;</title>
		<link>http://laaatech.com/drunken-tweets-to-plummet-tomorrow-night-as-twitter/</link>
		<comments>http://laaatech.com/drunken-tweets-to-plummet-tomorrow-night-as-twitter/#comments</comments>
		<pubDate>Sat, 31 Jul 2010 13:32:14 +0000</pubDate>
		<dc:creator>laaabaseball</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://laaatech.com/drunken-tweets-to-plummet-tomorrow-night-as-twitter/</guid>
		<description><![CDATA[<p><a href='http://feedproxy.google.com/~r/Techcrunch/~3/vNzj5JzP474/'>Drunken Tweets To Plummet Tomorrow Night As Twitter Will Be Down</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href='http://feedproxy.google.com/~r/Techcrunch/~3/vNzj5JzP474/'>Drunken Tweets To Plummet Tomorrow Night As Twitter Will Be Down</a></p>
]]></content:encoded>
			<wfw:commentRss>http://laaatech.com/drunken-tweets-to-plummet-tomorrow-night-as-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

