<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Brian Lewis</title> <link>http://brianlewis.us</link> <description>observations from a sysadmin</description> <lastBuildDate>Fri, 11 Feb 2011 05:07:13 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/_brian" /><feedburner:info uri="_brian" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>_brian</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Load Balancing with LVS-TUN Part 2</title><link>http://feedproxy.google.com/~r/_brian/~3/gqrztrHuHoc/</link> <comments>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-2/#comments</comments> <pubDate>Fri, 11 Feb 2011 04:56:47 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Mosso]]></category> <category><![CDATA[Webhosting]]></category> <category><![CDATA[Work]]></category><guid isPermaLink="false">http://brianlewis.us/?p=1675</guid> <description><![CDATA[STOP! MAKE SURE YOU HAVE FOLLOWED THE &#8220;Load Balancing with LVS-TUN Part 1&#8243; ARTICLE PRIOR TO FOLLOWING THIS ARTICLE The following document has all the configuration files needed to properly setup the Web Node aspect of lvs-tun. This is a continuation of the lvs-tun Load Balancing article I created previously. I have gone through and [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p>STOP! MAKE SURE YOU HAVE FOLLOWED THE <a href="http://brianlewis.us/work/load-balancing-with-lvs-tun-part-1/">&#8220;Load Balancing with LVS-TUN Part 1&#8243;</a> ARTICLE PRIOR TO FOLLOWING THIS ARTICLE</p><p>The following document has all the configuration files needed to properly setup the Web Node aspect of lvs-tun. This is a continuation of the lvs-tun Load Balancing article I created previously.</p><p>I have gone through and commented the config files so that there is an explanation behind many of the important variables that are needed in order to get LVS-TUN working properly. There are several steps that need to be completed which I&#8217;ve listed below. Please follow them in order.</p><p>1.	Prerequisites<br /> 2.	The Tunnel Device<br /> 3.	sysctl Parameters<br /> 4.	iptables<br /> 5.	Next Steps<br /> <span id="more-1675"></span></p><p><strong> Prerequisites</strong><br /> This document assumes that&#8230;<br /> •	You have already setup your load balancers using the lvs-tun Load Balancer article.<br /> •	You have installed and configured apache.<br /> •	You are running CentOS 5.5 or greater. This has not been tested on any other Linux Distribution at this time.<br /> •	You have already shared the &#8216;shared ip&#8217; from within your hosting provider to all web nodes.</p><p><strong> The Tunnel Device</strong><br /> We will now want to create the tunl0 (note, it&#8217;s spelled with a lowercase l, and the number 0) device on your Web nodes. On each node, we want to create a new file called ifcfg-tunl0 on all of your web nodes, and paste the following config inside ::</p><blockquote><p><code><br /> DEVICE=tunl0<br /> TYPE=ipip<br /> # IPADDR is the shared Public IP<br /> IPADDR=x.x.x.x<br /> NETMASK=255.255.255.255<br /> ONBOOT=yes<br /> Once that is complete, simply turn the device on by running ::<br /> ifup tunl0<br /> </code></p></blockquote><p>You will also want to test that the interface comes up upon reboot. You can do this by running the following commands ::</p><blockquote><p><code><br /> ifdown tunl0<br /> service network restart<br /> <code> </code></code></p></blockquote><p><code><code> </code></code></p><p>This should re-enable the tunl0 device. If it did not work, please double check that your configuration is correct and matches the configuration above.</p><p><strong>sysctl Parameters</strong><br /> The next step is going to be adding some parameters to your /etc/sysctl.conf file. These parameters allow the tunnel to function and pass traffic to your web nodes.<br /> The first step here will be to rename your current /etc/sysctl.conf file to /etc/sysctl.conf.BAK. Next, create a new sysctl.conf file with the following configuration ::</p><p><code><code> </code></code></p><blockquote><p><code><code><code><br /> # Kernel sysctl configuration file for Red Hat Linux<br /> #<br /> # For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and<br /> # sysctl.conf(5) for more details.</code></code></code></p><p><code><code><code># Controls the maximum number of shared memory segments, in pages<br /> kernel.shmall = 4294967296<br /> net.ipv4.conf.lo.arp_ignore = 1<br /> net.ipv4.conf.lo.arp_announce = 2<br /> net.ipv4.conf.tunl0.arp_ignore = 1<br /> net.ipv4.conf.tunl0.arp_announce = 2<br /> net.ipv4.conf.all.arp_ignore = 1<br /> net.ipv4.conf.all.arp_announce = 2<br /> net.ipv4.tcp_tw_reuse = 1<br /> net.ipv4.tcp_tw_recycle = 1<br /> net.ipv4.tcp_fin_timeout = 15<br /> net.ipv4.ip_local_port_range = 1024 61000<br /> net.ipv4.tcp_synack_retries = 2<br /> net.ipv4.tcp_max_syn_backlog = 2048<br /> net.ipv4.conf.all.rp_filter = 0<br /> net.ipv4.conf.default.rp_filter = 0<br /> net.ipv4.conf.lo.rp_filter = 0<br /> net.ipv4.conf.eth0.rp_filter = 0<br /> net.ipv4.conf.eth1.rp_filter = 0<br /> net.ipv4.conf.tunl0.rp_filter = 0<br /> </code></code></code></p></blockquote><p><code></code></p><p><code><code><code> </code></code></code></p><blockquote><p><code><code><code># Controls IP packet forwarding<br /> net.ipv4.ip_forward = 0</code></code></code></p><p><code><code><code># Controls source route verification<br /> net.ipv4.conf.default.rp_filter = 1</code></code></code></p><p><code><code><code># Do not accept source routing<br /> net.ipv4.conf.default.accept_source_route = 0</p><p># Controls the System Request debugging functionality of the kernel<br /> kernel.sysrq = 0</p><p># Controls whether core dumps will append the PID to the core filename<br /> # Useful for debugging multi-threaded applications<br /> kernel.core_uses_pid = 1</p><p># Controls the use of TCP syncookies<br /> net.ipv4.tcp_syncookies = 1</p><p># Controls the maximum size of a message, in bytes<br /> kernel.msgmnb = 65536</p><p># Controls the default maxmimum size of a mesage queue<br /> kernel.msgmax = 65536</p><p># Controls the maximum shared segment size, in bytes<br /> kernel.shmmax = 68719476736</p><p></code></code></code><code><code></code></code></p></blockquote><p><code><code><code> </code>Once this is completed, run the following command ::</code></code></p><p><code><code> </code></code></p><blockquote><p><code><code><code><br /> sysctl -p<br /> </code></code></code></p></blockquote><p><code><code><strong>iptables</strong><br /> Finally, you will want to setup iptables to secure your server. For this, we will want to edit the /etc/sysconfig/iptables file. Delete everything that is in there, and replace it with the following rules ::</p><blockquote><p><code><br /> *filter<br /> :INPUT DROP [0:0]<br /> :FORWARD ACCEPT [0:0]<br /> :OUTPUT ACCEPT [0:0]<br /> -A INPUT -j ACCEPT --proto 4<br /> -A INPUT -i lo -j ACCEPT<br /> -A INPUT -d [IP_OF_LB] -i tunl0 -j ACCEPT<br /> -A INPUT -d [IP_OF_SECOND_LB] -i tunl0 -j ACCEPT<br /> -A INPUT -d 127.0.0.0/255.0.0.0 ! -i lo -j REJECT --reject-with icmp-port-unreachable<br /> -A INPUT -i eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT<br /> -A INPUT -i eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT<br /> -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT<br /> -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT<br /> -A INPUT -p tcp -m tcp --dport 443 -j ACCEPT<br /> -A INPUT -p icmp -j ACCEPT<br /> COMMIT<br /> </code></p></blockquote><p>Finally, we will restart iptables by running ::</p><blockquote><p><code>service iptables restart<br /> </code></p></blockquote><p><strong>Next Steps</strong><br /> If everything was done correctly, you should be able to go back to the load balancer that currently has the shared IP attached, and run the ipvsadm command. The output should look something like this ::</p><blockquote><p><code><br /> IP Virtual Server version 1.2.1 (size=XXXX)</code></p><p><code>-&gt; 10.x.x.x:http                       Tunnel              10                             0                      0<br /> </code></p><p>-&gt; 10.x.x.x:http                       Tunnel              10                             0                      0</p><p><code>Prot LocalAddress:Port Scheduler Flags</code></p><p><code>-&gt; RemoteAddress:Port                 Forward             Weight             ActiveConn             InActConn</code></p><p><code>TCP  x-x-x-x.static.cloud- wrr</p><p></code></p></blockquote><p>If your setup is working properly, you should now be able to browse to the Shared IP address and view the default document.<br /> You now have a working lvs-tun setup!</p><p><code> </code></code></code></p><p><code><code></code></code></p> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Fwork%2Fload-balancing-with-lvs-tun-part-2%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1675"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/Iq4_BSEONU2aTzV1bXdSU6DUmOM/0/da"><img src="http://feedads.g.doubleclick.net/~a/Iq4_BSEONU2aTzV1bXdSU6DUmOM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Iq4_BSEONU2aTzV1bXdSU6DUmOM/1/da"><img src="http://feedads.g.doubleclick.net/~a/Iq4_BSEONU2aTzV1bXdSU6DUmOM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=gqrztrHuHoc:PUJ6wjiN0Dg:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=gqrztrHuHoc:PUJ6wjiN0Dg:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/gqrztrHuHoc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-2/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-2/</feedburner:origLink></item> <item><title>Load Balancing with LVS-TUN Part 1</title><link>http://feedproxy.google.com/~r/_brian/~3/cs1obSnh44g/</link> <comments>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-1/#comments</comments> <pubDate>Sat, 05 Feb 2011 19:25:55 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Mosso]]></category> <category><![CDATA[Personal Life]]></category> <category><![CDATA[Webhosting]]></category> <category><![CDATA[Work]]></category> <category><![CDATA[centos]]></category> <category><![CDATA[cloud computing]]></category> <category><![CDATA[load balancer]]></category> <category><![CDATA[lvs]]></category> <category><![CDATA[redhat]]></category> <category><![CDATA[rhce]]></category> <category><![CDATA[rhel]]></category><guid isPermaLink="false">http://brianlewis.us/?p=1647</guid> <description><![CDATA[The following blog post has all the configuration files needed to properly setup the load balancer aspect of lvs-tun. I have gone through and commented the config files so that there is an explanation behind many of the important variables that are needed in order to get LVS-TUN working properly. There are several steps that need to be completed which I've listed below. Please follow them in order.]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p>The following blog post has all the configuration files needed to properly setup the load balancer aspect of lvs-tun. I have gone through and commented the config files so that there is an explanation behind many of the important variables that are needed in order to get LVS-TUN working properly. There are several steps that need to be completed which I&#8217;ve listed below. Please follow them in order.</p><p><strong>*Please note, I will be adding the lvs-tun web node article next &#8211; I&#8217;m just working on the formatting.</strong></p><p>Table of Contents<br /> 1.	Prerequisites<br /> 2.	Shared IP<br /> 3.	Add Repositories<br /> 4.	Installing Pulse<br /> 5.	The lvs.cf file<br /> 6.	sysctl parameters<br /> 7.	iptables<br /> 8.	Start the Service<br /> 9.	Next Steps</p><p><span id="more-1647"></span><br /> Prerequisites</p><p>•	This document assumes you have already built your load balancers and your web nodes, and you have at least 3 servers.<br /> •	This document also assumes you are running CentOS 5.5/RHEL 5.5 or greater. This has not been tested on any other Linux Distribution at this time.</p><p>Shared IP</p><p>First, you will want to add a shared IP Address without config to the primary load balancer. The IP address should then be shared with the load balancer and ALL of the web servers. I recommend getting all of the web servers standard packages (apache, php, etc.) setup PRIOR to setting up the load balancer. We will cover the lvs-tun web node configuration in a different article linked at the bottom of this page.</p><p>Add Repositories<br /> You will want to add the EPEL and IUS repositories to your servers. You can do so by running the following commands ::<br /> <code><br /> rpm -Uvh http://dl.iuscommunity.org/pub/ius/stable/Redhat/5/x86_64/epel-release-1-1.ius.el5.noarch.rpm<br /> rpm -Uvh http://dl.iuscommunity.org/pub/ius/stable/Redhat/5/x86_64/ius-release-1.0-6.ius.el5.noarch.rpm<br /> yum -y update<br /> </code></p><p>Installing Pulse</p><p>Next, you will want to install pirahna. While we will not actually use pirahna, it contains the service (pulse) necessary to make lvs-tun work. You will also want to install the standard installation packages at this time (sysstat, ntpd, etc). You will do this by running the following command ::</p><p><code><br /> yum -y install piranha sysstat ntp telnet curl<br /> </code></p><p>Once completed, enable the service to start at boot. Note, though we installed pirahna, we are actually using the &#8216;pulse&#8217; service. Pirahna itself is not used at all. ::</p><p><code><br /> chkconfig pulse on<br /> chkconfig ntpd on<br /> chkconfig sysstat on<br /> </code></p> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Fwork%2Fload-balancing-with-lvs-tun-part-1%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1647"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/eY0bTLYXsuy9sjbfRkM0rM3SuxA/0/da"><img src="http://feedads.g.doubleclick.net/~a/eY0bTLYXsuy9sjbfRkM0rM3SuxA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/eY0bTLYXsuy9sjbfRkM0rM3SuxA/1/da"><img src="http://feedads.g.doubleclick.net/~a/eY0bTLYXsuy9sjbfRkM0rM3SuxA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=cs1obSnh44g:XqFW1jukoX0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=cs1obSnh44g:XqFW1jukoX0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/cs1obSnh44g" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-1/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://brianlewis.us/work/load-balancing-with-lvs-tun-part-1/</feedburner:origLink></item> <item><title>OMG a blog update!</title><link>http://feedproxy.google.com/~r/_brian/~3/W0R7W2SxE-8/</link> <comments>http://brianlewis.us/work/omg-a-blog-update/#comments</comments> <pubDate>Sat, 08 Jan 2011 17:32:15 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Personal Life]]></category> <category><![CDATA[Work]]></category> <category><![CDATA[astro]]></category> <category><![CDATA[Brian Lewis]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Personal]]></category> <category><![CDATA[_brian]]></category><guid isPermaLink="false">http://brianlewis.us/?p=1614</guid> <description><![CDATA[It&#8217;s been a while! I&#8217;ve been super busy with work. A quick update :: I&#8217;ve been studying for the first of my RHCA exams. Hopefully I&#8217;ll be able to start taking these soon. I have had 2 different positions at work in the last 6 months. I was part of our Professional Services team where [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><p>It&#8217;s been a while! I&#8217;ve been super busy with work. A quick update ::</p><ul><li>I&#8217;ve been studying for the first of my RHCA exams. Hopefully I&#8217;ll be able to start taking these soon.</li><li>I have had 2 different positions at work in the last 6 months. I was part of our Professional Services team where I was building custom configurations for customers, and then I moved on to a more undefined role. I can&#8217;t talk a lot about the new role at this time, but I can say that it is technical with some Business Analysis thrown in for good measure.</li><li>My grandfather passed away. It&#8217;s been rough.</li><li>I quit using twitter &#8211; I&#8217;m 100% on facebook now <img src='http://c3072092.cdn.cloudfiles.rackspacecloud.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></li></ul><p>That&#8217;s mostly it. I know it&#8217;s a short post, but I&#8217;ll update this blog soon. I&#8217;ve got a lot of builds and configurations I&#8217;ve done, and I&#8217;ve written a few technical posts that I need to edit and post. Until next time!</p> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Fwork%2Fomg-a-blog-update%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1614"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/U5s1UPKICWoeGcCI8-PaV8NhRzA/0/da"><img src="http://feedads.g.doubleclick.net/~a/U5s1UPKICWoeGcCI8-PaV8NhRzA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/U5s1UPKICWoeGcCI8-PaV8NhRzA/1/da"><img src="http://feedads.g.doubleclick.net/~a/U5s1UPKICWoeGcCI8-PaV8NhRzA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=W0R7W2SxE-8:6tTgHOjPqEU:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=W0R7W2SxE-8:6tTgHOjPqEU:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/W0R7W2SxE-8" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/work/omg-a-blog-update/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://brianlewis.us/work/omg-a-blog-update/</feedburner:origLink></item> <item><title>Twitter Weekly Updates for 2010-05-16</title><link>http://feedproxy.google.com/~r/_brian/~3/XlAid7593cM/</link> <comments>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-16/#comments</comments> <pubDate>Sun, 16 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/16/twitter-weekly-updates-for-2010-05-16/</guid> <description><![CDATA[I just became the mayor of Valero on @foursquare! http://4sq.com/4AGIWG #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>I just became the mayor of Valero on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/4AGIWG" rel="nofollow">http://4sq.com/4AGIWG</a> <a href="http://twitter.com/_brian/statuses/13917378301" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-weekly-updates-for-2010-05-16%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1582"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/zFyEpUxvKlpqU8pVNP6dwP56-HA/0/da"><img src="http://feedads.g.doubleclick.net/~a/zFyEpUxvKlpqU8pVNP6dwP56-HA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zFyEpUxvKlpqU8pVNP6dwP56-HA/1/da"><img src="http://feedads.g.doubleclick.net/~a/zFyEpUxvKlpqU8pVNP6dwP56-HA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=XlAid7593cM:XJoC4RslY6k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=XlAid7593cM:XJoC4RslY6k:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/XlAid7593cM" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-16/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-16/</feedburner:origLink></item> <item><title>Twitter Updates for 2010-05-14</title><link>http://feedproxy.google.com/~r/_brian/~3/C0cCO1rH6YU/</link> <comments>http://brianlewis.us/twitter/twitter-updates-for-2010-05-14/#comments</comments> <pubDate>Fri, 14 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/14/twitter-updates-for-2010-05-14/</guid> <description><![CDATA[I just became the mayor of Valero on @foursquare! http://4sq.com/4AGIWG #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>I just became the mayor of Valero on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/4AGIWG" rel="nofollow">http://4sq.com/4AGIWG</a> <a href="http://twitter.com/_brian/statuses/13917378301" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-updates-for-2010-05-14%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1581"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/zb-kx2BQwCXipeFyyb2BJRfcaZg/0/da"><img src="http://feedads.g.doubleclick.net/~a/zb-kx2BQwCXipeFyyb2BJRfcaZg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zb-kx2BQwCXipeFyyb2BJRfcaZg/1/da"><img src="http://feedads.g.doubleclick.net/~a/zb-kx2BQwCXipeFyyb2BJRfcaZg/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=C0cCO1rH6YU:mudFIg_SUNo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=C0cCO1rH6YU:mudFIg_SUNo:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/C0cCO1rH6YU" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-updates-for-2010-05-14/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-updates-for-2010-05-14/</feedburner:origLink></item> <item><title>Twitter Weekly Updates for 2010-05-09</title><link>http://feedproxy.google.com/~r/_brian/~3/u-H36ICiINc/</link> <comments>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-09/#comments</comments> <pubDate>Sun, 09 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/09/twitter-weekly-updates-for-2010-05-09/</guid> <description><![CDATA[Just got accepted into the @socialscope beta. So far, it rocks! Wish u could disable pub time line and only get list updates tho. # Just got a pneumonia shot. I didn&#39;t even know they made those! # Wrapping up work for the day. # You know that feeling you get when you really make [...]]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>Just got accepted into the @<a href="http://twitter.com/socialscope" class="aktt_username">socialscope</a> beta. So far, it rocks! Wish u could disable pub time line and only get list updates tho. <a href="http://twitter.com/_brian/statuses/13252574534" class="aktt_tweet_time">#</a></li><li>Just got a pneumonia shot. I didn&#39;t even know they made those! <a href="http://twitter.com/_brian/statuses/13316874144" class="aktt_tweet_time">#</a></li><li>Wrapping up work for the day. <a href="http://twitter.com/_brian/statuses/13458838325" class="aktt_tweet_time">#</a></li><li>You know that feeling you get when you really make someone&#39;s day? Yea. I get that daily. Pay it forward. It feels great! <img src='http://c3072092.cdn.cloudfiles.rackspacecloud.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <a href="http://twitter.com/_brian/statuses/13458873192" class="aktt_tweet_time">#</a></li><li>Woke up exhausted today &#8211; ended up working REALLY late on a build. Interesting stuff. I really like being able to hack away at new things! <a href="http://twitter.com/_brian/statuses/13488809185" class="aktt_tweet_time">#</a></li><li>I just ousted @<a href="http://twitter.com/ajhansentx" class="aktt_username">ajhansentx</a> as the mayor of Chick-fil-a on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/6ikdXJ" rel="nofollow">http://4sq.com/6ikdXJ</a> <a href="http://twitter.com/_brian/statuses/13500739299" class="aktt_tweet_time">#</a></li><li>I just ousted alex c. as the mayor of Shell on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/agunKU" rel="nofollow">http://4sq.com/agunKU</a> <a href="http://twitter.com/_brian/statuses/13586145646" class="aktt_tweet_time">#</a></li><li>I just became the mayor of Taco Cabana on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/beDeLL" rel="nofollow">http://4sq.com/beDeLL</a> <a href="http://twitter.com/_brian/statuses/13629444556" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-weekly-updates-for-2010-05-09%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1580"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/M187b3EbrdDqZkbjnngvh1yiaUY/0/da"><img src="http://feedads.g.doubleclick.net/~a/M187b3EbrdDqZkbjnngvh1yiaUY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M187b3EbrdDqZkbjnngvh1yiaUY/1/da"><img src="http://feedads.g.doubleclick.net/~a/M187b3EbrdDqZkbjnngvh1yiaUY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=u-H36ICiINc:Qbj3Q3Cw5O0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=u-H36ICiINc:Qbj3Q3Cw5O0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/u-H36ICiINc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-09/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-weekly-updates-for-2010-05-09/</feedburner:origLink></item> <item><title>Twitter Updates for 2010-05-09</title><link>http://feedproxy.google.com/~r/_brian/~3/Ud8K7zJbpHc/</link> <comments>http://brianlewis.us/twitter/twitter-updates-for-2010-05-09/#comments</comments> <pubDate>Sun, 09 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/09/twitter-updates-for-2010-05-09/</guid> <description><![CDATA[I just ousted alex c. as the mayor of Shell on @foursquare! http://4sq.com/agunKU # I just became the mayor of Taco Cabana on @foursquare! http://4sq.com/beDeLL #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>I just ousted alex c. as the mayor of Shell on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/agunKU" rel="nofollow">http://4sq.com/agunKU</a> <a href="http://twitter.com/_brian/statuses/13586145646" class="aktt_tweet_time">#</a></li><li>I just became the mayor of Taco Cabana on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/beDeLL" rel="nofollow">http://4sq.com/beDeLL</a> <a href="http://twitter.com/_brian/statuses/13629444556" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-updates-for-2010-05-09%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1579"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/gRxR4sxK0aWcm3FSOWvHu5NvFHY/0/da"><img src="http://feedads.g.doubleclick.net/~a/gRxR4sxK0aWcm3FSOWvHu5NvFHY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/gRxR4sxK0aWcm3FSOWvHu5NvFHY/1/da"><img src="http://feedads.g.doubleclick.net/~a/gRxR4sxK0aWcm3FSOWvHu5NvFHY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=Ud8K7zJbpHc:aNqJ8haaSeA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=Ud8K7zJbpHc:aNqJ8haaSeA:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/Ud8K7zJbpHc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-updates-for-2010-05-09/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-updates-for-2010-05-09/</feedburner:origLink></item> <item><title>Twitter Updates for 2010-05-07</title><link>http://feedproxy.google.com/~r/_brian/~3/NQrcOew4LHg/</link> <comments>http://brianlewis.us/twitter/twitter-updates-for-2010-05-07/#comments</comments> <pubDate>Fri, 07 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/07/twitter-updates-for-2010-05-07/</guid> <description><![CDATA[Woke up exhausted today &#8211; ended up working REALLY late on a build. Interesting stuff. I really like being able to hack away at new things! # I just ousted @ajhansentx as the mayor of Chick-fil-a on @foursquare! http://4sq.com/6ikdXJ #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>Woke up exhausted today &#8211; ended up working REALLY late on a build. Interesting stuff. I really like being able to hack away at new things! <a href="http://twitter.com/_brian/statuses/13488809185" class="aktt_tweet_time">#</a></li><li>I just ousted @<a href="http://twitter.com/ajhansentx" class="aktt_username">ajhansentx</a> as the mayor of Chick-fil-a on @<a href="http://twitter.com/foursquare" class="aktt_username">foursquare</a>! <a href="http://4sq.com/6ikdXJ" rel="nofollow">http://4sq.com/6ikdXJ</a> <a href="http://twitter.com/_brian/statuses/13500739299" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-updates-for-2010-05-07%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1578"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/zmFylv8O6aXwutQqPxO9kkr2Uzw/0/da"><img src="http://feedads.g.doubleclick.net/~a/zmFylv8O6aXwutQqPxO9kkr2Uzw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zmFylv8O6aXwutQqPxO9kkr2Uzw/1/da"><img src="http://feedads.g.doubleclick.net/~a/zmFylv8O6aXwutQqPxO9kkr2Uzw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=NQrcOew4LHg:_BnT1L3hrts:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=NQrcOew4LHg:_BnT1L3hrts:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/NQrcOew4LHg" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-updates-for-2010-05-07/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-updates-for-2010-05-07/</feedburner:origLink></item> <item><title>Twitter Updates for 2010-05-06</title><link>http://feedproxy.google.com/~r/_brian/~3/vHBX71JuJlk/</link> <comments>http://brianlewis.us/twitter/twitter-updates-for-2010-05-06/#comments</comments> <pubDate>Thu, 06 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/06/twitter-updates-for-2010-05-06/</guid> <description><![CDATA[Wrapping up work for the day. # You know that feeling you get when you really make someone&#39;s day? Yea. I get that daily. Pay it forward. It feels great! #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>Wrapping up work for the day. <a href="http://twitter.com/_brian/statuses/13458838325" class="aktt_tweet_time">#</a></li><li>You know that feeling you get when you really make someone&#39;s day? Yea. I get that daily. Pay it forward. It feels great! <img src='http://c3072092.cdn.cloudfiles.rackspacecloud.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <a href="http://twitter.com/_brian/statuses/13458873192" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-updates-for-2010-05-06%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1577"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/Iqh3pdEi0hMsSVpV4cQxtgifiLc/0/da"><img src="http://feedads.g.doubleclick.net/~a/Iqh3pdEi0hMsSVpV4cQxtgifiLc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Iqh3pdEi0hMsSVpV4cQxtgifiLc/1/da"><img src="http://feedads.g.doubleclick.net/~a/Iqh3pdEi0hMsSVpV4cQxtgifiLc/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=vHBX71JuJlk:B1qMJc0xVw4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=vHBX71JuJlk:B1qMJc0xVw4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/vHBX71JuJlk" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-updates-for-2010-05-06/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-updates-for-2010-05-06/</feedburner:origLink></item> <item><title>Twitter Updates for 2010-05-04</title><link>http://feedproxy.google.com/~r/_brian/~3/uPxpJHKbbrI/</link> <comments>http://brianlewis.us/twitter/twitter-updates-for-2010-05-04/#comments</comments> <pubDate>Tue, 04 May 2010 09:01:00 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Twitter]]></category><guid isPermaLink="false">http://www.astr0.org/2010/05/04/twitter-updates-for-2010-05-04/</guid> <description><![CDATA[Just got a pneumonia shot. I didn&#39;t even know they made those! #]]></description> <content:encoded><![CDATA[<!-- google_ad_section_start --><ul class="aktt_tweet_digest"><li>Just got a pneumonia shot. I didn&#39;t even know they made those! <a href="http://twitter.com/_brian/statuses/13316874144" class="aktt_tweet_time">#</a></li></ul> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fbrianlewis.us%2Ftwitter%2Ftwitter-updates-for-2010-05-04%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe><div class="shr-publisher-1576"></div><!-- google_ad_section_end -->
<p><a href="http://feedads.g.doubleclick.net/~a/-eSyZRq98K2EiHTQqLXRgND8Sz8/0/da"><img src="http://feedads.g.doubleclick.net/~a/-eSyZRq98K2EiHTQqLXRgND8Sz8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/-eSyZRq98K2EiHTQqLXRgND8Sz8/1/da"><img src="http://feedads.g.doubleclick.net/~a/-eSyZRq98K2EiHTQqLXRgND8Sz8/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/_brian?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:-BTjWOF_DHI" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/_brian?d=dnMXMwOfBR0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/_brian?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/_brian?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:KwTdNBX3Jqk"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:KwTdNBX3Jqk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/_brian?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/_brian?i=uPxpJHKbbrI:2EKgyjptIV4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/_brian?a=uPxpJHKbbrI:2EKgyjptIV4:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/_brian?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/_brian/~4/uPxpJHKbbrI" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://brianlewis.us/twitter/twitter-updates-for-2010-05-04/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://brianlewis.us/twitter/twitter-updates-for-2010-05-04/</feedburner:origLink></item> </channel> </rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using memcached
Database Caching using memcached
Object Caching 1136/1242 objects using apc
Content Delivery Network via Rackspace Cloud Files: c3072092.cdn.cloudfiles.rackspacecloud.com

Served from: brianlewis.us @ 2012-02-22 21:04:36 -->

