Kaleb's Grey Matter http://kaleb.libr8.us/ Kaleb's Grey Matter http://kaleb.libr8.us/ http://asset.soup.io/asset/0053/6811_9fca.jpeg 128 128 What you may or may not have wanted to know. T-Mobile G1 Android System Update <div class="separator"><a href="http://upload.wikimedia.org/wikipedia/en/a/a5/Android-logo.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/a/a5/Android-logo.jpg" /></a></div>I just noticed tonight that my phone, a T-Mobile G1, wanted to perform a system update. This got me excited. I've been wanting Android 2.1 or even 2.0 for a while, even though I knew it was not going to be a possibility. The recent Android builds are just simply too big for the G1's internal memory.<br /> <br /> It turns out that it was just a minor update after all. T-Mobile just wanted to fix some radio issues. All this update does is decrease drops and increase clarity. I should be happy that I got silver even though I really wanted gold.<br /> <br /> SOURCE: <a href="http://www.androidspin.com/2010/03/07/unofficial-radio-update-for-g1mt3g/">http://www.androidspin.com/2010/03/07/unofficial-radio-update-for-g1mt3g/</a><div class="blogger-post-footer"><img src="https://blogger.googleusercontent.com/tracker/22524083-1609834038022158901?l=blog.kaleb.hornsby.ws" height="1" alt="" width="1" /></div>Wed, 10 Mar 2010 01:33:00 GMThttp://kaleb.libr8.us/post/47987107/T-Mobile-G1-Android-System-Updateurn:www-soup-io:1:47987107regular Reduction ad Palindromo My Programming Languages professor assigned the following as an assignment today:<br /> <blockquote>It is claimed that all numbers, when reversed and added to their<br /> reversal repeatedly, will eventually become palindromes.   Write a<br /> program that allows a user to enter a number and then displays the<br /> series of efforts to find its palindrome.  If the statement turns out<br /> to be false, stop iteration of your program after some number of tries<br /> to find the palindrome.</blockquote>The following is my solution:<br /> <br /> <div class="syntax"><pre><span class="c">#!/usr/bin/python</span> <span class="k">def</span> <span class="nf">partition</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span> <span class="sd">"""Return a triple of the first half, middle (if it exists), and last half</span> <span class="sd"> of an iterable object.</span> <span class="sd"> """</span> <span class="n">ctr</span><span class="p">,</span> <span class="n">odd</span> <span class="o">=</span> <span class="nb">divmod</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">obj</span><span class="p">),</span> <span class="mf">2</span><span class="p">)</span> <span class="n">fwd</span> <span class="o">=</span> <span class="n">obj</span><span class="p">[:</span><span class="n">ctr</span><span class="p">]</span> <span class="k">if</span> <span class="n">odd</span><span class="p">:</span> <span class="n">mid</span> <span class="o">=</span> <span class="n">obj</span><span class="p">[</span><span class="n">ctr</span><span class="p">]</span> <span class="n">aft</span> <span class="o">=</span> <span class="n">obj</span><span class="p">[</span><span class="n">ctr</span><span class="o">+</span><span class="mf">1</span><span class="p">:]</span> <span class="k">else</span><span class="p">:</span> <span class="n">mid</span> <span class="o">=</span> <span class="bp">None</span> <span class="n">aft</span> <span class="o">=</span> <span class="n">obj</span><span class="p">[</span><span class="n">ctr</span><span class="p">:]</span> <span class="k">return</span> <span class="p">(</span><span class="n">fwd</span><span class="p">,</span><span class="n">mid</span><span class="p">,</span><span class="n">aft</span><span class="p">)</span> <span class="k">def</span> <span class="nf">palindromic</span><span class="p">(</span><span class="n">obj</span><span class="p">):</span> <span class="sd">"""Return the palindromicity of an object."""</span> <span class="k">if</span> <span class="nb">type</span><span class="p">(</span><span class="n">obj</span><span class="p">)</span> <span class="o">==</span> <span class="nb">type</span><span class="p">(</span><span class="nb">list</span><span class="p">())</span> <span class="ow">or</span> <span class="nb">type</span><span class="p">(</span><span class="n">obj</span><span class="p">)</span> <span class="o">==</span> <span class="nb">type</span><span class="p">(</span><span class="nb">tuple</span><span class="p">()):</span> <span class="k">pass</span> <span class="k">else</span><span class="p">:</span> <span class="n">obj</span> <span class="o">=</span> <span class="nb">list</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="n">obj</span><span class="p">))</span> <span class="n">front</span><span class="p">,</span><span class="n">mid</span><span class="p">,</span><span class="n">rear</span> <span class="o">=</span> <span class="n">partition</span><span class="p">(</span><span class="n">obj</span><span class="p">)</span> <span class="k">return</span> <span class="n">front</span> <span class="o">==</span> <span class="n">rear</span><span class="p">[::</span><span class="o">-</span><span class="mf">1</span><span class="p">]</span> <span class="k">def</span> <span class="nf">reductio_ad_palindromo</span><span class="p">(</span><span class="n">num</span><span class="p">):</span> <span class="sd">"""If a number is not palindromic, sum it and its reverse. Repeat until a</span> <span class="sd"> a palindrome is found. Return a list of all attempts.</span> <span class="sd"> """</span> <span class="n">num</span> <span class="o">=</span> <span class="nb">int</span><span class="p">(</span><span class="n">num</span><span class="p">)</span> <span class="c"># Make sure its an int.</span> <span class="n">iterations</span> <span class="o">=</span> <span class="p">[]</span> <span class="k">def</span> <span class="nf">pal</span><span class="p">(</span><span class="n">n</span><span class="p">):</span> <span class="n">iterations</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">n</span><span class="p">)</span> <span class="k">if</span> <span class="ow">not</span> <span class="n">palindromic</span><span class="p">(</span><span class="nb">int</span><span class="p">(</span><span class="n">n</span><span class="p">)):</span> <span class="n">pal</span><span class="p">(</span><span class="n">n</span> <span class="o">+</span> <span class="nb">int</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="n">n</span><span class="p">)[::</span><span class="o">-</span><span class="mf">1</span><span class="p">]))</span> <span class="n">pal</span><span class="p">(</span><span class="n">num</span><span class="p">)</span> <span class="k">return</span> <span class="n">iterations</span> <span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">"__main__"</span><span class="p">:</span> <span class="sd">"""Since this most likely will be ran from `bash`, return the array in the</span> <span class="sd"> form of a space delimited `bash` array."""</span> <span class="kn">from</span> <span class="nn">sys</span> <span class="kn">import</span> <span class="n">argv</span> <span class="k">print</span> <span class="s">" "</span><span class="o">.</span><span class="n">join</span><span class="p">([</span><span class="nb">str</span><span class="p">(</span><span class="n">i</span><span class="p">)</span> <span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="n">reductio_ad_palindromo</span><span class="p">(</span><span class="n">argv</span><span class="p">[</span><span class="mf">1</span><span class="p">])])</span> </pre></div><br /> I am not sure what she means by this antecedent, "if the statement turns out to be false," but Python's got the antecedent covered. Python will stop a recursion automatically after 1000 loops, that is unless it is told otherwise.<div class="blogger-post-footer"><img src="https://blogger.googleusercontent.com/tracker/22524083-4086938350867510043?l=blog.kaleb.hornsby.ws" height="1" alt="" width="1" /></div>Tue, 09 Mar 2010 03:45:00 GMThttp://kaleb.libr8.us/post/47828217/Reduction-ad-Palindromourn:www-soup-io:1:47828217regularpython Subscribed to shedskateboards http://www.youtube.com/user/shedskateboards?feature=autoshare<strong>Subscribed to shedskateboards</strong><br />I subscribed to <a href="http://www.youtube.com/user/shedskateboards?feature=autoshare">shedskateboards’s</a> channel on YouTube.Mon, 08 Mar 2010 11:18:57 GMThttp://kaleb.libr8.us/post/47810926/Subscribed-to-shedskateboardsurn:www-soup-io:1:47810926video Subscribed to hgoodman9 http://www.youtube.com/user/hgoodman9?feature=autoshare<strong>Subscribed to hgoodman9</strong><br />I subscribed to <a href="http://www.youtube.com/user/hgoodman9?feature=autoshare">hgoodman9’s</a> channel on YouTube.Mon, 08 Mar 2010 02:34:17 GMThttp://kaleb.libr8.us/post/47810930/Subscribed-to-hgoodman9urn:www-soup-io:1:47810930video Subscribed to rajdaggubati http://www.youtube.com/user/rajdaggubati?feature=autoshare<strong>Subscribed to rajdaggubati</strong><br />I subscribed to <a href="http://www.youtube.com/user/rajdaggubati?feature=autoshare">rajdaggubati’s</a> channel on YouTube.Mon, 08 Mar 2010 02:33:50 GMThttp://kaleb.libr8.us/post/47810933/Subscribed-to-rajdaggubatiurn:www-soup-io:1:47810933video Subscribed to sweetestpea3 http://www.youtube.com/user/sweetestpea3?feature=autoshare<strong>Subscribed to sweetestpea3</strong><br />I subscribed to <a href="http://www.youtube.com/user/sweetestpea3?feature=autoshare">sweetestpea3’s</a> channel on YouTube.Mon, 08 Mar 2010 02:27:21 GMThttp://kaleb.libr8.us/post/47810936/Subscribed-to-sweetestpea3urn:www-soup-io:1:47810936video Subscribed to mbrich422 http://www.youtube.com/user/mbrich422?feature=autoshare<strong>Subscribed to mbrich422</strong><br />I subscribed to <a href="http://www.youtube.com/user/mbrich422?feature=autoshare">mbrich422’s</a> channel on YouTube.Mon, 08 Mar 2010 02:26:44 GMThttp://kaleb.libr8.us/post/47810939/Subscribed-to-mbrich422urn:www-soup-io:1:47810939video I like my Time Capsule w/ its 1TB HDD & dual 802.11n, but had some Linux conn... I like my Time Capsule w/ its 1TB HDD &amp; dual 802.11n, but had some Linux connection issues w/ it until recently. <a href="http://go.hornsby.ws/sxall">http://go.hornsby.ws/sxall</a>Mon, 08 Mar 2010 01:40:54 GMThttp://kaleb.libr8.us/post/47785785/I-like-my-Time-Capsule-w-itsurn:www-soup-io:1:47785785regular Accessing Apple Time Capsule From GNU/Linux <div class="separator"><a href="http://2.bp.blogspot.com/_A5VVmNZ6Wc4/S5Q2W74gJ_I/AAAAAAAADQs/_X1-8uXLijg/s1600-h/Screenshot.png"><img src="http://2.bp.blogspot.com/_A5VVmNZ6Wc4/S5Q2W74gJ_I/AAAAAAAADQs/_X1-8uXLijg/s320/Screenshot.png" height="228" width="320" /></a></div>Access to content on an <a href="http://en.wikipedia.org/wiki/Apple_time_capsule">Apple Time Capsule</a> under the <a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a> Desktop Environment is easy. From the <a href="http://en.wikipedia.org/wiki/GNOME_Panel">GNOME Panel</a>'s main menu bar, navigate to Places &gt; Network. From here, users instantaneously have access to all the content on the Time Capsule and any attached storage devices as long as long as <a href="http://en.wikipedia.org/wiki/Samba_%28software%29">Samba</a> is properly <a href="https://help.ubuntu.com/community/SettingUpSamba">up and running</a>. There is one caveat, however: there is no write access by default.<br /> <br /> <div class="separator"></div><div class="separator"><a href="http://4.bp.blogspot.com/_A5VVmNZ6Wc4/S5RE2aOwmQI/AAAAAAAADQ8/vYWBxyFEAcI/s1600-h/Unmount-Eject.png"><img src="http://4.bp.blogspot.com/_A5VVmNZ6Wc4/S5RE2aOwmQI/AAAAAAAADQ8/vYWBxyFEAcI/s200/Unmount-Eject.png" height="128" width="200" /></a></div>If one wants to have write access and has already connected to the share with <a href="http://en.wikipedia.org/wiki/Nautilus_%28file_manager%29">Nautilus</a>, unmount or "eject" it. Then, run <span>sudo mount.cifs //10.0.1.1/"My Book" /mnt/tc -o pass=$tr0ngP@55w0rd</span> from the command-line, where <i>10.0.1.1</i> is the IP address of the Time Capsule, <i>My Book</i> is the name of a drive connected to the Time Capsule, <i>/mnt/tc</i> is an empty directory designated for use as the <a href="http://en.wikipedia.org/wiki/Mount_%28computing%29#Mount_point">mount point</a>, and <i>$tr0ngP@55w0rd</i> is the Time Capsule base station password. If all goes well, a connection to the drive should be established with both read and write access. This is all fine and dandy if one wants temporary access to the Time Capsule, but for a more permanent <a href="http://en.wikipedia.org/wiki/Mount_%28computing%29">mount</a>, one must edit <a href="http://www.tuxfiles.org/linuxhelp/fstab.html">fstab</a>.<br /> <br /> The <span>fstab </span>configuration file sets mount points for the system at boot time and is located at <span>/etc/fstab</span>. To set a longer lasting mount point for the Time Capsule, open <span>fstab</span> using a text editor and append the following line:<br /> <blockquote><pre>//10.0.1.1/My\040Book/Share /mnt/tc cifs password=$tr0ngP@55w0rd</pre></blockquote>The string fragment "\040" is used in this line to designate that a character space is being used. Everything else should be self-explanatory.<br /> <br /> If all goes well, a permanent read/write solution has been established from a GNU/Linux system to an Apple Time Capsule. Many thanks goes to <a href="http://ubuntuforums.org/showthread.php?t=670535">Ubuntu Forums</a> and <a href="http://www.linuxforums.org/forum/linux-newbie/56947-fstab-path-space-question.html">Linux Forums</a> for all the help.<br /> <br /> Now with this solution and <a href="http://blog.kaleb.hornsby.ws/2010/03/streaming-media-from-linux-to-ps3-with.html">PS3 Media Server</a>, my home computer network has become a little more connected.<div class="blogger-post-footer"><img src="https://blogger.googleusercontent.com/tracker/22524083-2079700335029440783?l=blog.kaleb.hornsby.ws" height="1" alt="" width="1" /></div>Mon, 08 Mar 2010 01:34:00 GMThttp://kaleb.libr8.us/post/47721283/Accessing-Apple-Time-Capsule-From-GNU-Linuxurn:www-soup-io:1:47721283regularlinux @ Empty Bowl benefit for Augusta's Golden Harvest food bank. Good food, ceram... @<a href="http://twitter.com/"></a> Empty Bowl benefit for Augusta's Golden Harvest food bank. Good food, ceramics &amp; a silent auction to support a good cause. Lots of fun.Sun, 07 Mar 2010 20:16:58 GMThttp://kaleb.libr8.us/post/47675735/Empty-Bowl-benefit-for-Augustas-Golden-Harvesturn:www-soup-io:1:47675735regular I set up media streaming from desktop computer to my PS3 today, its awesome! ... I set up media streaming from desktop computer to my PS3 today, its awesome! For more info, follow the link: <a href="http://go.hornsby.ws/odoli">http://go.hornsby.ws/odoli</a>Sun, 07 Mar 2010 00:58:27 GMThttp://kaleb.libr8.us/post/47573696/I-set-up-media-streaming-from-desktopurn:www-soup-io:1:47573696regular Streaming Media From Linux to PS3 With <a href="http://2.bp.blogspot.com/_A5VVmNZ6Wc4/S5L3_Kd9G_I/AAAAAAAADQE/Dsk1l_7cxWA/s1600-h/linux.png"><img src="http://2.bp.blogspot.com/_A5VVmNZ6Wc4/S5L3_Kd9G_I/AAAAAAAADQE/Dsk1l_7cxWA/s320/linux.png" alt="" /></a>Today, I set up a program called <a href="http://code.google.com/p/ps3mediaserver/">PS3 Media Server</a>, or PMS for short, on my home network. It is an application that makes it possible to stream media from one's desktop computer to a PS3. It's pretty handy and sure beats dragging and dropping files to a USB drive just to watch or listen.<br /> <br /> On first try, streaming was a bit too fidgety for for my wife's and my tastes, so we opted to do a network copy instead. Although we had to wait for the copy to finish before we could begin watching, we still did not have to dig out a thumb drive, but stutter free streaming would definitely be best. We were just too impatient and wanted to watch an episode of <a href="http://en.wikipedia.org/wiki/Stargate_Atlantis">Stargate Atlantis</a> over our fancy new PMS setup now and could not wait on me monkeying around with configurations until streaming was perfect.<br /> <br /> In addition to streaming and copying movies to the PS3, other great features include: <br /> <ul><li>YouTube Viewing</li> <li>Podcast Streams</li> <li>Internet Radio</li> <li>Image Streaming</li> </ul>PMS even has an innovative way of configuring itself directly from the PS3. This is a must have application for any PS3 owners out there.<br /> <br /> EDIT:<br /> <blockquote>I thought that the PS3 may have used some proprietary locked-in service to do its streaming, but I was wrong. After doing some more research, I found out that the PS3 uses a technology standard called <a href="http://en.wikipedia.org/wiki/DLNA">DLNA</a> to do its streaming. I posted a <a href="http://superuser.com/questions/117033/linux-dlna-server">question</a> on a <a href="http://superuser.com/">forum</a> to find out if in fact PMS was my best option. And now I await answers.</blockquote><div class="blogger-post-footer"><img src="https://blogger.googleusercontent.com/tracker/22524083-2173696741908630498?l=blog.kaleb.hornsby.ws" height="1" alt="" width="1" /></div>Sun, 07 Mar 2010 00:35:00 GMThttp://kaleb.libr8.us/post/47592630/Streaming-Media-From-Linux-to-PS3-Withurn:www-soup-io:1:47592630regularlinuxps3 What's the Best Way to (and Why Should I) Create a Home Inventory? [Ask Lifehacker] <p>Dear Lifehacker,<br /> In light of all the natural disasters wreaking havoc across the globe, I've realized I should take a home inventory to document everything I own for insurance purposes. What's the best way to do this?</p> <p>Signed,<br /> Happy Homeowner</p><p>Hi Happy,<br /> You're smart to want to document your possessions in case of burglary, damage, or fire. The short answer to your question: The best tool for the job is the one you'll actually use.</p> <p>Taking a home inventory isn't really hard, it's just time consuming. It's also extremely important; a good inventory will speed up the insurance claims process and ensure your insurance takes care of everything you lost. (You do, of course, need the insurance.)</p> <p>Many tools can guide you through taking your inventory and storing it (we'll list some below), but the basics are pretty simple. You'll want to take pictures of all your stuff. (It's also a good idea to <a href="http://lifehacker.com/165731/geek-to-live--develop-your-digital-photographic-memory">snap pictures of serial numbers</a> of your gadgetry.) If you've got a video camera, you can simply walk through your home and film every room for a good and simple start.</p> <p>It's also very important that you store your inventory <em>outside your home</em> in some form. You could store it at your office or somewhere else outside of your home. If it's digital, upload it to a server somewhere. Videos can go to YouTube or Vimeo (marked as private), images can be uploaded to Flickr, synced with Dropbox, or emailed to yourself. Of course, that's sort of the minimum.</p> <p>We've covered a lot of home inventory software, tips, and ideas at Lifehacker, so let's take a look at some of your options for managing your inventory.</p> <ul> <li><a href="http://www.knowyourstuff.org/">Know Your Stuff</a> <a href="http://lifehacker.com/399351/know-your-stuff-inventories-your-home">Inventories Your Home</a> - This free Windows/Mac download from the Insurance Information Institute not only keeps a database of all your stuff, it also lets you export the file for offsite storage.</li> <li><br /> <img title="What's the Best Way to (and Why Should I) Create a Home Inventory?" src="http://cache.gawkerassets.com/assets/images/17/2010/03/500x_know-my-stuff.jpg" width="500" /></li> <li><a href="http://lifehacker.com/348093/inventory-your-home-or-office-with-stuffsafe">Inventory Your Home or Office</a> with <a href="http://www.stuffsafe.com/index.php">StuffSafe</a> - A free web site that stores pictures, descriptions, and other vital information about the stuff you own. It's web-based, so you don't have to worry about losing your inventory if something happens to your home.</li> <li><br /> <img title="What's the Best Way to (and Why Should I) Create a Home Inventory?" src="http://cache.gawkerassets.com/assets/images/17/2010/03/500x_stuffsafe.jpg" width="500" /></li> <li><a href="http://lifehacker.com/144665/photo-inventory-your-stuff">Photo Inventory Your Stuff</a> - At the very minimum, free online photo storage sites like Flickr make great safehouses for photo documentation of your belongings. Just take some pics and make a "home inventory" set; it's better than nothing.</li> <li><a href="http://lifehacker.com/5158919/declutter-your-home-with-a-detailed-inventory">Declutter Your Home with a Detailed Inventory</a> - A nice side benefit of a thorough home inventory is that you can declutter and get rid things you don't need along the way.</li> <li><a href="http://www.ManageMyHome.com">ManageMyHome</a> - Reader <a href="http://lifehacker.com/comment/16316672/">wjglenn recommends</a> checking out ManageMyHome.com for tracking home inventory and managing home projects.</li> </ul> <p>Readers, we'd love to know how you manage the monumental task of documenting your possessions. Share your ideas in the comments.</p> <p>Love,<br /> Lifehacker</p> <p><em>Thanks, Lauren!</em></p>Fri, 05 Mar 2010 21:00:00 GMThttp://kaleb.libr8.us/post/47449576/Whats-the-Best-Way-to-and-Whyurn:www-soup-io:1:47449576regularask lifehackerclipshomehome inventoryhome organizationinsurancetop Ralph was feeling warm, so when I brought out the ear thermometer, he tilted ... Ralph was feeling warm, so when I brought out the ear thermometer, he tilted his head for me. He's becoming so thoughtful and helpful.Fri, 05 Mar 2010 13:01:45 GMThttp://kaleb.libr8.us/post/47355119/Ralph-was-feeling-warm-so-when-Iurn:www-soup-io:1:47355119regular The BK Noah's Ark: Two Of Every Kind Of Patty From Burger King (Plus Bacon Strips!) - Geekologie <blockquote>Shared by Kaleb Hornsby <br /> Fish patties? Fish weren't on the ark.</blockquote> <div><div><a href="http://www.geekologie.com/2010/03/the_bk_noahs_ark_two_of_every.php" title="http://www.geekologie.com/2010/03/the_bk_noahs_ark_two_of_every.php">The BK Noah's Ark: Two Of Every Kind Of Patty From Burger King (Plus Bacon Strips!) - Geekologie</a></div><div>Source: <a href="http://www.geekologie.com">www.geekologie.com</a></div><div><div><div><a href="http://www.geekologie.com/2010/03/the_bk_noahs_ark_two_of_every.php"><img src="http://www.geekologie.com/2010/03/03/noahs-ark.jpg" /></a></div></div><div><div><div>The BK Noah's Ark: Two Of Every Kind Of Patty From Burger King (Plus Bacon Strips!)</div></div></div></div><div><div><span>    </span><span><a href="http://www.geekologie.com/2010/03/the_bk_noahs_ark_two_of_every.php" rel="nofollow"><span>http://www.geekologie.com/</span><span></span><span>2010/03/the_bk_noahs_ark_t</span><span></span>wo_of_every.php</a></span><span>    </span></div></div></div>Thu, 04 Mar 2010 23:28:12 GMThttp://kaleb.libr8.us/post/47280162/The-BK-Noahs-Ark-Two-Of-Everyurn:www-soup-io:1:47280162regular www.npc.navy.mil <blockquote>Shared by Kaleb Hornsby <br /> What's in the check off sheet to earn this I wonder?</blockquote> <div><div><a href="http://www.npc.navy.mil/NR/rdonlyres/07563A2E-4715-4654-9E3A-2125395ECC0A/0/IDCWarfareInsignia.jpg" title="http://www.npc.navy.mil/NR/rdonlyres/07563A2E-4715-4654-9E3A-2125395ECC0A/0/IDCWarfareInsignia.jpg">www.npc.navy.mil</a></div><div>Source: <a href="http://www.npc.navy.mil">www.npc.navy.mil</a></div><div><div><div><a href="http://www.npc.navy.mil/NR/rdonlyres/07563A2E-4715-4654-9E3A-2125395ECC0A/0/IDCWarfareInsignia.jpg"><img src="http://www.npc.navy.mil/NR/rdonlyres/07563A2E-4715-4654-9E3A-2125395ECC0A/0/IDCWarfareInsignia.jpg" /></a></div></div></div><div><div><span>    </span><span><span>Bwahahahahahahahahahahahah</span><span></span>aha</span><span>    </span></div></div></div>Thu, 04 Mar 2010 22:58:58 GMThttp://kaleb.libr8.us/post/47280163/www-npc-navy-milurn:www-soup-io:1:47280163regular A Public Funded "Microsoft Shop?" <blockquote>Shared by Kaleb Hornsby <br /> What happened to lowest bidder contracts?</blockquote> An anonymous reader writes "I work at a public hospital in the computer / technical department and (amongst others) was recently outraged by an email that was sent around our department: '(XXXX) District Health Board — Information Services is strategically a Microsoft shop and when talking to staff / customers we are to support this strategy. I no longer want to see comments promoting other Operating Systems.' We have also been told to remove Firefox found on anyone's computer unless they have specific authorisation from management to have it installed under special circumstances. Now, I could somewhat understand this if I was working in a company that sold and promoted the use of Microsoft software for financial gain, but I work in the publicly / government funded health system. Several of the IT big-wigs at the DHB are seemingly blindly pro-Microsoft and seem all too quick to shrug off other, perhaps more efficient alternatives. As a taxpayer, I want nothing more than to see our health systems improve and run more efficiently. I am not foolish enough to say all our problems would be solved overnight by changing away from Microsoft's infrastructure, but I am convinced that if we took less than half the money we spend on licensing Microsoft's software alone and invested that in training users for an open source system, we would be far better off in the long run. I would very much like to hear Slashdot's ideas / opinions on this 'Strategic Direction' and the silencing of our technical opinions."<p><a href="http://science.slashdot.org/story/10/03/04/1416226/A-Public-Funded-Microsoft-Shop?from=rss"><img src="http://slashdot.org/slashdot-it.pl?from=rss&amp;op=image&amp;style=h0&amp;sid=10/03/04/1416226" /></a><a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fscience.slashdot.org%2Fstory%2F10%2F03%2F04%2F1416226%2FA-Public-Funded-Microsoft-Shop" title="Share on Facebook"><img src="http://a.fsdn.com/sd/facebook_icon_large.png" /></a> <a href="http://twitter.com/home?status=A+Public+Funded+%22Microsoft+Shop%3F%22%3A+http%3A%2F%2Fbit.ly%2F9kFipS" title="Share on Twitter"><img src="http://a.fsdn.com/sd/twitter_icon_large.png" /></a></p><p><a href="http://science.slashdot.org/story/10/03/04/1416226/A-Public-Funded-Microsoft-Shop?from=rss">Read more of this story</a> at Slashdot.</p><p></p><img src="http://feeds.feedburner.com/%7Er/Slashdot/slashdot/%7E4/sbczpxNpB4s" height="1" width="1" />Thu, 04 Mar 2010 22:55:14 GMThttp://kaleb.libr8.us/post/47280164/A-Public-Funded-Microsoft-Shopurn:www-soup-io:1:47280164regular Registration for Google I/O 2010 is now closed <blockquote>Shared by Kaleb Hornsby <br /> :( I wanted to go.</blockquote> <span><div><span>This year's conference is now </span><a href="http://googleblog.blogspot.com/2010/03/over-4000-developers-at-google-io-2010.html"><span>sold out</span></a><span>, which means we'll be seeing over 4,000 of you on May 19-20 at Moscone West! For those of you who can't join us in person, video recordings of all sessions and keynotes will be available on YouTube following the conference.</span></div><div><span><br /></span></div><div><span>Continue to </span><a href="http://www.google-io.com/index.cfm?fuseaction=email.Redirect&amp;EID=4E2D63757206" title="follow us on Twitter"><span>follow us on Twitter</span></a><span> for updates on sessions, speakers and the Sandbox. We'll also continue posting updates and Google I/O-relevant content on this blog.</span></div><div><span><br /></span></div></span><span>By Joyce Sohn, Google Developer Team</span><div><img src="https://blogger.googleusercontent.com/tracker/11300808-176770261486320801?l=googlecode.blogspot.com" height="1" alt="" width="1" /></div><div> <a href="http://feeds.feedburner.com/%7Eff/blogspot/Dcni?a=RHOHRzMWHQI:uFaKKVSK7hw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/%7Eff/blogspot/Dcni?d=yIl2AUoC8zA" /></a> <a href="http://feeds.feedburner.com/%7Eff/blogspot/Dcni?a=RHOHRzMWHQI:uFaKKVSK7hw:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/%7Eff/blogspot/Dcni?i=RHOHRzMWHQI:uFaKKVSK7hw:V_sGLiPBpWU" /></a> </div><img src="http://feeds.feedburner.com/%7Er/blogspot/Dcni/%7E4/RHOHRzMWHQI" height="1" width="1" />Thu, 04 Mar 2010 22:45:19 GMThttp://kaleb.libr8.us/post/47280166/Registration-for-Google-I-O-2010-isurn:www-soup-io:1:47280166regular Budget cut protest @ ASU @ Allgood Hall. Come join the fun! Be sure to come w... Budget cut protest @<a href="http://twitter.com/"></a> ASU @<a href="http://twitter.com/"></a> Allgood Hall. Come join the fun! Be sure to come w/ solutions &amp; not just whining. Where's the $ to come from?Thu, 04 Mar 2010 17:36:13 GMThttp://kaleb.libr8.us/post/47226690/Budget-cut-protest-ASU-Allgood-Hall-Comeurn:www-soup-io:1:47226690regular Life Before Google <blockquote>Shared by Kaleb Hornsby <br /> Awesome.</blockquote> On the theme of research before the internet era, <a href="http://www.jrdkirk.com/?p=317">Daniel Kirk</a> shared <a href="http://www.shoeboxblog.com/?p=15314">this cartoon</a>:<br /><div><a href="http://1.bp.blogspot.com/_BtqUSG7RCA0/S4ccY3MkP1I/AAAAAAAAAkk/XMvIPiUbFqE/s1600-h/Damn-Shame-300x296.png"><img src="http://1.bp.blogspot.com/_BtqUSG7RCA0/S4ccY3MkP1I/AAAAAAAAAkk/XMvIPiUbFqE/s320/Damn-Shame-300x296.png" /></a></div><div><img src="https://blogger.googleusercontent.com/tracker/7622297540113836091-6303024837849654698?l=exploringourmatrix.blogspot.com" height="1" alt="" width="1" /></div>Wed, 03 Mar 2010 21:29:15 GMThttp://kaleb.libr8.us/post/47107066/Life-Before-Googleurn:www-soup-io:1:47107066regular OK Go - This Too Shall Pass - RGM version <object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/qybUFnY7Y8w" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/qybUFnY7Y8w" wmode="transparent" type="application/x-shockwave-flash" height="350" width="425" /></object><strong>OK Go - This Too Shall Pass - RGM version</strong><br /><div><embed src="http://www.youtube.com/v/qybUFnY7Y8w&amp;fs=1" type="application/x-shockwave-flash" height="295" width="480" /></div><div>I favorited a YouTube video: Directed by James Frost, OK Go and Syyn Labs. Produced by Shirley Moyers. The official video for the recorded version of "This Too Shall Pass" off of the album "Of the Blue Colour of the Sky". The video was filmed in a two story warehouse, in the Echo Park neighborhood of Los Angeles, CA. The "machine" was designed and built by the band, along with members of Synn Labs ( <a href="http://syynlabs.com/">http://syynlabs.com/</a> ) over the course of several months.</div>Wed, 03 Mar 2010 15:17:51 GMThttp://kaleb.libr8.us/post/47064743/OK-Go-This-Too-Shall-Pass-RGMurn:www-soup-io:1:47064743videofavorite Google Asks US For WTO Block On China Censorship An anonymous reader writes "Google is asking the US government to petition the World Trade Organization to recognize China's censorship as an unfair barrier to trade. The US Trade Representative is reviewing their petition to see if they can prove that China's rules discriminate against foreign competition. At least it's something worthwhile for the US Trade Reps to do, rather than secretly negotiating ACTA."<p><a href="http://yro.slashdot.org/story/10/03/03/1259202/Google-Asks-US-For-WTO-Block-On-China-Censorship?from=rss"><img src="http://slashdot.org/slashdot-it.pl?from=rss&amp;op=image&amp;style=h0&amp;sid=10/03/03/1259202" /></a><a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fyro.slashdot.org%2Fstory%2F10%2F03%2F03%2F1259202%2FGoogle-Asks-US-For-WTO-Block-On-China-Censorship" title="Share on Facebook"><img src="http://a.fsdn.com/sd/facebook_icon_large.png" /></a> <a href="http://twitter.com/home?status=Google+Asks+US+For+WTO+Block+On+China+Censorship%3A+http%3A%2F%2Fbit.ly%2FcPfx7H" title="Share on Twitter"><img src="http://a.fsdn.com/sd/twitter_icon_large.png" /></a></p><p><a href="http://yro.slashdot.org/story/10/03/03/1259202/Google-Asks-US-For-WTO-Block-On-China-Censorship?from=rss">Read more of this story</a> at Slashdot.</p><p></p><img src="http://feeds.feedburner.com/~r/Slashdot/slashdot/~4/m6p079i-D-I" height="1" width="1" />Wed, 03 Mar 2010 13:57:00 GMThttp://kaleb.libr8.us/post/47064748/Google-Asks-US-For-WTO-Block-Onurn:www-soup-io:1:47064748regularcensorship Officials Sue Couple Who Removed Their Lawn Hugh Pickens writes "The LA Times reports that Orange County officials are locked in a legal battle with a couple accused of violating city ordinances for replacing the grass on their lawn with wood chips and drought-tolerant plants, reducing their water usage from 299,221 gallons in 2007 to 58,348 gallons in 2009. The dispute began two years ago, when Quan and Angelina Ha tore out the grass in their front yard. In drought-plagued Southern California, the couple said, the lush grass had been soaking up tens of thousands of gallons of water — and hundreds of dollars — each year. 'We've got a newborn, so we want to start worrying about her future,' said Quan Ha, an information technology manager for Kelley Blue Book. But city officials told the Has they were violating several city laws that require that 40% of residential yards to be landscaped predominantly with live plants. Last summer, the couple tried to appease the city by building a fence around the yard and planting drought-tolerant greenery — lavender, rosemary, horsetail, and pittosporum, among others. But according to the city, their landscaping still did not comply with city standards. At the end of January, the Has received a letter saying they had been charged with a misdemeanor violation and must appear in court. The couple could face a maximum penalty of six months in jail and a $1,000 fine for their grass-free, eco-friendly landscaping scheme. 'It's just funny that we pay our taxes to the city and the city is now prosecuting us with our own money,' says Quan Ha."<p><a href="http://news.slashdot.org/story/10/03/03/0018217/Officials-Sue-Couple-Who-Removed-Their-Lawn?from=rss"><img src="http://slashdot.org/slashdot-it.pl?from=rss&amp;op=image&amp;style=h0&amp;sid=10/03/03/0018217" /></a><a href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fnews.slashdot.org%2Fstory%2F10%2F03%2F03%2F0018217%2FOfficials-Sue-Couple-Who-Removed-Their-Lawn" title="Share on Facebook"><img src="http://a.fsdn.com/sd/facebook_icon_large.png" /></a> <a href="http://twitter.com/home?status=Officials+Sue+Couple+Who+Removed+Their+Lawn%3A+http%3A%2F%2Fbit.ly%2FbZt7Ua" title="Share on Twitter"><img src="http://a.fsdn.com/sd/twitter_icon_large.png" /></a></p><p><a href="http://news.slashdot.org/story/10/03/03/0018217/Officials-Sue-Couple-Who-Removed-Their-Lawn?from=rss">Read more of this story</a> at Slashdot.</p><p></p><img src="http://feeds.feedburner.com/~r/Slashdot/slashdot/~4/5GVkcL6Hv5k" height="1" width="1" />Wed, 03 Mar 2010 05:39:00 GMThttp://kaleb.libr8.us/post/47064746/Officials-Sue-Couple-Who-Removed-Their-Lawnurn:www-soup-io:1:47064746regularearth Drinking at the bar talking about proof by induction.. it's BS. Drinking at the bar talking about proof by induction.. it's BS.Sun, 28 Feb 2010 04:30:58 GMThttp://kaleb.libr8.us/post/46676750/Drinking-at-the-bar-talking-about-proofurn:www-soup-io:1:46676750regular Binary Birthday on Flickr - Photo Sharing! <blockquote>Shared by Kaleb Hornsby <br /> I want the binary birthday candle for my next birthday cake.</blockquote> <a href="http://www.flickr.com/photos/oskay/3042675365/" title="Binary Birthday by oskay, on Flickr"><img src="http://farm4.static.flickr.com/3043/3042675365_de7f2e2fde.jpg" height="375" alt="Binary Birthday" width="500" /></a> <p>The binary birthday candle: The only birthday candle you'll ever need. One candle with 7 wicks that you light depending on your age. Works for birthdays 1 through 127. Read more about this project here.</p>Tue, 23 Feb 2010 20:10:50 GMThttp://kaleb.libr8.us/post/46167197/Binary-Birthday-on-Flickr-Photo-Sharingurn:www-soup-io:1:46167197regular logomachy <blockquote>Shared by Kaleb Hornsby <br /> I enter into logomachy often.</blockquote> <p><strong>Merriam-Webster's Word of the Day for February 23, 2010 is:</strong></p> <p> <strong>logomachy</strong> • \loh-GAH-muh-kee\  • <em>noun</em><br /> 1 : a dispute over or about words *2 : a controversy marked by verbiage <br /> </p> <p> <strong>Example sentence:</strong><br /> The surprising election results have opened the floodgates of logomachy in the political media outlets.<br /> </p> <p> <strong>Did you know?</strong><br /> It doesn't take much to start people arguing about words, but there's no quarrel about the origin of "logomachy." It comes from the Greek roots "logos," meaning "word" or "speech," and "machesthai," meaning "to fight," and it entered English in the mid-1500s. If you're a word enthusiast, you probably know that "logos" is the root of many English words ("monologue," "neologism," "logic," and most words ending in "-logy," for example), but what about other derivatives of "machesthai"? Actually, this is a tough one even for word whizzes. Only a few very rare English words come from "machesthai." Here are two of them: "heresimach" ("an active opponent of heresy and heretics") and "naumachia" ("an ancient Roman spectacle representing a naval battle"). <br /><br />*Indicates the sense illustrated in the example sentence.<br /><br /> </p> Tue, 23 Feb 2010 11:18:47 GMThttp://kaleb.libr8.us/post/46090114/logomachyurn:www-soup-io:1:46090114regular logomachy <p><strong>Merriam-Webster's Word of the Day for February 23, 2010 is:</strong></p> <p> <strong>logomachy</strong> • \loh-GAH-muh-kee\  • <em>noun</em><br /> 1 : a dispute over or about words *2 : a controversy marked by verbiage <br /> </p> <p> <strong>Example sentence:</strong><br /> The surprising election results have opened the floodgates of logomachy in the political media outlets.<br /> </p> <p> <strong>Did you know?</strong><br /> It doesn't take much to start people arguing about words, but there's no quarrel about the origin of "logomachy." It comes from the Greek roots "logos," meaning "word" or "speech," and "machesthai," meaning "to fight," and it entered English in the mid-1500s. If you're a word enthusiast, you probably know that "logos" is the root of many English words ("monologue," "neologism," "logic," and most words ending in "-logy," for example), but what about other derivatives of "machesthai"? Actually, this is a tough one even for word whizzes. Only a few very rare English words come from "machesthai." Here are two of them: "heresimach" ("an active opponent of heresy and heretics") and "naumachia" ("an ancient Roman spectacle representing a naval battle"). <br /><br />*Indicates the sense illustrated in the example sentence.<br /><br /> </p> Tue, 23 Feb 2010 06:15:01 GMThttp://kaleb.libr8.us/post/46090131/logomachyurn:www-soup-io:1:46090131regularenglish language vocabulary, etymology and usage I need a lamp for my office. Anybody have an extra one that doesn't suck? I need a lamp for my office. Anybody have an extra one that doesn't suck?Mon, 22 Feb 2010 12:55:21 GMThttp://kaleb.libr8.us/post/45950396/I-need-a-lamp-for-my-officeurn:www-soup-io:1:45950396regular THEKALEB´S (EL TIEMPO LO DIRA) <object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/momuIt4fNRc" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/momuIt4fNRc" wmode="transparent" type="application/x-shockwave-flash" height="350" width="425" /></object><strong>THEKALEB´S (EL TIEMPO LO DIRA)</strong><br /><div><embed src="http://www.youtube.com/v/momuIt4fNRc&amp;fs=1" type="application/x-shockwave-flash" height="385" width="480" /></div><div>I commented on a YouTube video: This is NOT thekaleb.</div>Mon, 22 Feb 2010 12:51:18 GMThttp://kaleb.libr8.us/post/45959351/THEKALEB-S-EL-TIEMPO-LO-DIRAurn:www-soup-io:1:45959351videocomment FDA Invades Non-Commercial Amish Farm in PA - ROGUEGOVERNMENT.COM <blockquote>Shared by Kaleb Hornsby <br /> The federal government has no constitutional authority to regulate intrastate commerce, only interstate commerce. FDA, be dammned.</blockquote> <div><div><a href="http://www.roguegovernment.com/article/FDA_Invades_Non-Commercial_Amish_Farm_in_PA/19538.html" title="http://www.roguegovernment.com/article/FDA_Invades_Non-Commercial_Amish_Farm_in_PA/19538.html">FDA Invades Non-Commercial Amish Farm in PA - ROGUEGOVERNMENT.COM</a></div><div>Source: <a href="http://www.roguegovernment.com">www.roguegovernment.com</a></div><div><div><div><div>Blacklisted News What Really Happened Cryptogon Raw Story Citizens for Legit Gov. Information Clearing House American Free Press Global Research The Peoples Voice Tom Burghardt Uncover The News Think Progress Media Monarchy Information Liberation News Hounds F. ...</div></div></div></div><div><div><span>    </span><span>Federal government's ongoing war on yet another religious community which just wants to be left alone! Hat tip <a href="http://www.facebook.com/profile.php?id=1189521680" title="To tag someone, type @ and then the friend's name">Paul Zimmerman Ⓐ</a></span><span>    </span></div></div></div>Mon, 22 Feb 2010 12:40:20 GMThttp://kaleb.libr8.us/post/45959360/FDA-Invades-Non-Commercial-Amish-Farm-inurn:www-soup-io:1:45959360regular YouTube - *THEKALEB*´S (EL TIEMPO LO DIRA) <object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/momuIt4fNRc" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/momuIt4fNRc" wmode="transparent" type="application/x-shockwave-flash" height="350" width="425" /></object><strong>YouTube - *THEKALEB*´S (EL TIEMPO LO DIRA)</strong><br /><blockquote>Shared by Kaleb Hornsby <br /> This is NOT the kaleb.</blockquote> <b>THEKALEB</b>´S (EL TIEMPO LO DIRA). Hello, you either have JavaScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player. <b>...</b><br />Mon, 22 Feb 2010 12:27:47 GMThttp://kaleb.libr8.us/post/45959363/YouTube-THEKALEB-S-EL-TIEMPO-LO-DIRAurn:www-soup-io:1:45959363video Devotion to Duty <p><a href="http://xkcd.com/705/"><img alt="9975_c1a5_400" height="154" src="http://asset.soup.io/asset/0699/9975_c1a5_400.png" width="400" /></a></p> <p><strong>Devotion to Duty</strong><br />The weird sense of duty really good sysadmins have can border on the sociopathic, but it's nice to know that it stands between the forces of darkness and your cat blog's servers.<br /></p>Mon, 22 Feb 2010 00:00:00 GMThttp://kaleb.libr8.us/post/45941179/Devotion-to-Dutyurn:www-soup-io:1:45941179image ACTA Internet Chapter Leaked — Bad For Everyone roju writes "Cory Doctorow is reporting on a leaked copy of the 'internet enforcement' portion of the Anti-Counterfeiting Trade Agreement. He describes it as reading like a 'DMCA-plus' with provisions for third-party liability, digital locks, and 'a duty to technology firms to shut down infringement where they have "actual knowledge" that such is taking place.' For example, this could mean legal responsibility shifting to Apple for customers copying mp3s onto their iPods." Adds an anonymous reader, "Michael Geist points out that the leaks demonstrate that ACTA would create a Global DMCA and move toward a three-strikes-and-you're-out system. While the US has claimed that ACTA won't establish a mandatory three strikes system, it specifically uses three-strikes as its model."<p><a href="http://yro.slashdot.org/story/10/02/21/2136238/ACTA-Internet-Chapter-Leaked-mdash-Bad-For-Everyone?from=rss"><img src="http://slashdot.org/slashdot-it.pl?from=rss&amp;op=image&amp;style=h0&amp;sid=10/02/21/2136238" /></a></p><p><a href="http://yro.slashdot.org/story/10/02/21/2136238/ACTA-Internet-Chapter-Leaked-mdash-Bad-For-Everyone?from=rss">Read more of this story</a> at Slashdot.</p><p></p><img src="http://feeds.feedburner.com/~r/Slashdot/slashdot/~4/qloImx3giDI" height="1" width="1" />Sun, 21 Feb 2010 22:40:00 GMThttp://kaleb.libr8.us/post/45926983/ACTA-Internet-Chapter-Leaked-Bad-For-Everyoneurn:www-soup-io:1:45926983regulargovernment RT @Augusta_News Man fatally shot at downtown gas station news.google.com/...... RT @<a href="http://twitter.com/Augusta_News">Augusta_News</a> Man fatally shot at downtown gas station <a href="http://news.google.com/news/url?fd=R&amp;sa=T&amp;url=http://chronicle.augusta.com/latest-news/2010-02-21/man-fatally-shot-downtown-gas-station?v=1266764946&amp;usg=AFQjCNG18wdxITKbt0NYIPK-h42gxzFRJQ" title="http://bit.ly/dwq1i0">news.google.com/...</a> I saw the ambulance zoom by right b4 I went in church :(Sun, 21 Feb 2010 21:29:25 GMThttp://kaleb.libr8.us/post/45869870/RT-Augusta-News-Man-fatally-shot-aturn:www-soup-io:1:45869870regular :( RT @ceraleanne - Ralph looks pretty. He he <p><a href="http://twitpic.com/14k9lc"><img alt="9289_4d92_400" height="299" src="http://asset.soup.io/asset/0698/9289_4d92_400.jpeg" width="400" /></a></p> <p>:( RT @<a href="http://twitter.com/ceraleanne">ceraleanne</a> <a href=""></a> - Ralph looks pretty. He he</p>Sun, 21 Feb 2010 18:17:28 GMThttp://kaleb.libr8.us/post/45852835/RT-ceraleanne-Ralph-looks-pretty-He-heurn:www-soup-io:1:45852835image RT @ceraleanne: - Ralph looks pretty. He he <p><a href="http://twitpic.com/14k9lc"><img alt="9287_5503_400" height="299" src="http://asset.soup.io/asset/0698/9287_5503_400.jpeg" width="400" /></a></p> <p>RT @<a href="http://twitter.com/ceraleanne">ceraleanne</a>: <a href=""></a> - Ralph looks pretty. He he</p>Sun, 21 Feb 2010 18:17:01 GMThttp://kaleb.libr8.us/post/45852813/RT-ceraleanne-Ralph-looks-pretty-He-heurn:www-soup-io:1:45852813image Nathan David Jenks "Personal liberty is the purpose of government, to protect liberty, not to run your personal lives, not to run the economy and not to pretend that we can tell the world how they ought to live." -Ron Paul-. "Personal liberty is the purpose of government, to protect liberty, not to run your personal lives, not to run the economy and not to pretend that we can tell the world how they ought to live." -Ron Paul-.Sun, 21 Feb 2010 14:35:25 GMThttp://kaleb.libr8.us/post/45926975/Nathan-David-Jenks-Personal-liberty-is-theurn:www-soup-io:1:45926975regular Conservative for Change: Ron Paul Wins Presidential Straw Poll at CPAC <div><div><a href="http://www.conservativeforchange.com/2010/02/ron-paul-wins-presidential-straw-poll.html" title="http://www.conservativeforchange.com/2010/02/ron-paul-wins-presidential-straw-poll.html">Conservative for Change: Ron Paul Wins Presidential Straw Poll at CPAC</a></div><div>Source: <a href="http://www.conservativeforc..">www.conservativeforc..</a>.</div><div><div><div><a href="http://www.conservativeforchange.com/2010/02/ron-paul-wins-presidential-straw-poll.html"><img src="http://3.bp.blogspot.com/_2qFoJ3p4_B4/S4Bo9T-LIzI/AAAAAAAABxM/dP2-2nOPNT0/s320/ron_paul_convention3.jpg" /></a></div></div><div><div><div>When the people fear the government, there is tyranny; When the government fears the people, there is liberty.--Thomas Jefferson</div></div></div></div><div><div><span>    </span><span>Ron Paul wins the presidential straw poll at CPAC with 31%.......Mitt Romney who isn't even conservative came in second with 22%.........Sarah Palin was third with 7%</span><span>    </span></div></div></div>Sat, 20 Feb 2010 23:47:03 GMThttp://kaleb.libr8.us/post/45809496/Conservative-for-Change-Ron-Paul-Wins-Presidentialurn:www-soup-io:1:45809496regular Anybody want to baby sit Ralph from 2-4? I am giving a presentation and Jess'... Anybody want to baby sit Ralph from 2-4? I am giving a presentation and Jess'll be at a seminar. Schedule conflicts!Sat, 20 Feb 2010 16:36:15 GMThttp://kaleb.libr8.us/post/45726466/Anybody-want-to-baby-sit-Ralph-fromurn:www-soup-io:1:45726466regular Augusta Linux User Group today at 14:00 at OS Solutions 9th and Broad in down... Augusta Linux User Group today at 14:00 at OS Solutions 9th and Broad in downtown Augusta, GA.Sat, 20 Feb 2010 16:06:29 GMThttp://kaleb.libr8.us/post/45723815/Augusta-Linux-User-Group-today-at-14urn:www-soup-io:1:45723815regular