<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Bshootz &#187; admin</title>
	<atom:link href="http://bshootz.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://bshootz.com</link>
	<description>Mindings of A Techno-Geek</description>
	<lastBuildDate>Sun, 05 Feb 2012 03:12:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Octopress Experimentation at Bshootz.com/blog/ (Click)</title>
		<link>http://bshootz.com/octopress-experimentation-at-bshootz-comblog-click/</link>
		<comments>http://bshootz.com/octopress-experimentation-at-bshootz-comblog-click/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 03:12:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/octopress-experimentation-at-bshootz-comblog-click/</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://bshootz.com/blog/" rel="bookmark" title="Octopress Experimentation at Bshootz.com/blog/ (Click)" target="_blank">http://bshootz.com/blog/</a></p>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://bshootz.com/blog/" rel="bookmark" title="Octopress Experimentation at Bshootz.com/blog/ (Click)" target="_blank">http://bshootz.com/blog/</a></p>]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/octopress-experimentation-at-bshootz-comblog-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi Flash Drive File Mover Utility</title>
		<link>http://bshootz.com/raspberry-pi-flash-drive-file-mover-utility/</link>
		<comments>http://bshootz.com/raspberry-pi-flash-drive-file-mover-utility/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 02:34:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1583</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p>Raspberry Pi, the soon to be released $35 arm computer has a limited amount of USB ports. If you need to copy a file to a usb drive you will have to unplug your keyboard. Luckily, I have written a &#8230; <a href="http://bshootz.com/raspberry-pi-flash-drive-file-mover-utility/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p>Raspberry Pi, the soon to be released $35 arm computer has a limited amount of USB ports. If you need to copy a file to a usb drive you will have to unplug your keyboard. Luckily, I have written a small python script that will solve this potential headache.</p>
<pre>import time
import string
import os
import sys
lastspace = False
os.system("rm cat.txt cat2.txt device.txt")
if (len(sys.argv) &gt; 1):
movefile = sys.argv[1]
else:
movefile = raw_input('Enter your file to be moved: ')
os.system("ls /media/ &gt;&gt; cat.txt")
raw_input('Press Enter and then insert USB device')
time.sleep(11)
os.system("ls /media/ &gt;&gt; cat2.txt")
os.system("diff cat2.txt cat.txt &gt;&gt; device.txt")
file = open("device.txt", "r")
device = file.read()
dlist = string.split(device,'&lt;')
print device
print dlist
dlist[1] = string.strip(dlist[1],"\n")
x = 0
newfile = dlist[1]
while (x &lt; len(dlist[1])):
     if(dlist[1][x] == " " and lastspace == False and x != 0):
         newfile = newfile[0:x-1] + "\ " + newfile[x:]
         lastspace = True
     if (dlist[1][x] == " " and x == 0):
         newfile = newfile[1:]
     if lastspace == True:
        x = x+1
     x = x+1
print "mv " + movefile + " /media/" + newfile + "/"
os.system("mv " + movefile + " /media/" + newfile + "/")</pre>
<p>You can either enter your file name as an argument or it will prompt you. You can also tweak the waiting time that it takes before trying the move. I&#8217;m not sure how accurate the technique I have used to test for new devices is. But I thought it would be the easiest way.  Actually I&#8217;m pretty sure there has to be a more efficient way, but I didn&#8217;t want to implement a continuously polling program. I will definitely take suggestions and feedback in order to make it better.</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1583&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/raspberry-pi-flash-drive-file-mover-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If Apple Doesn&#8217;t Somebody Will: Revolutionizing the Textbook Industry</title>
		<link>http://bshootz.com/if-apple-doesnt-somebody-will-revolutionizing-the-textbook-industry/</link>
		<comments>http://bshootz.com/if-apple-doesnt-somebody-will-revolutionizing-the-textbook-industry/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 04:00:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1577</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p>CNN Money declares that Apple&#8217;s Education even is grossly over-hyped. But is it? From that article it is made clear the Apple does not want to get into the Textbook market itself. Rather, it wants to empower the textbook industry to create &#8230; <a href="http://bshootz.com/if-apple-doesnt-somebody-will-revolutionizing-the-textbook-industry/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://tech.fortune.cnn.com/2012/01/17/apples-education-event-is-getting-seriously-over-hyped/" target="_blank">CNN Money declares that Apple&#8217;s Education even is grossly over-hyped.</a> But is it? From that article it is made clear the Apple does not want to get into the Textbook market itself. Rather, it wants to empower the textbook industry to create the amazing, interactive textbooks that belong in the twenty-first century classroom.</p>
<!-- tweet id : 159289222157697025 --><style type='text/css'>#bbpBox_159289222157697025 a { text-decoration:none; color:#990000; }#bbpBox_159289222157697025 a:hover { text-decoration:underline; }</style><div id='bbpBox_159289222157697025' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#FFDB00; background-image:url(http://a0.twimg.com/profile_background_images/3864643/bg.jpg);'><div style='background:#fff; padding:10px; margin:0; min-height:48px; color:#3F3F3F; -moz-border-radius:5px; -webkit-border-radius:5px;'><span style='width:100%; font-size:18px; line-height:22px;'>This could be one of Apple's most important announcements in years <a href="http://t.co/0oTPyX8S" rel="nofollow">http://t.co/0oTPyX8S</a> <a href="http://twitter.com/search?q=%23education" title="#education">#education</a> <a href="http://twitter.com/search?q=%23publishing" title="#publishing">#publishing</a></span><div class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img align='middle' src='http://bshootz.com/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a title='tweeted on January 17, 2012 11:01 am' href='http://twitter.com/#!/brainpicker/status/159289222157697025' target='_blank'>January 17, 2012 11:01 am</a> via <a href="http://bufferapp.com" rel="nofollow" target="blank">Buffer</a><a href='https://twitter.com/intent/tweet?in_reply_to=159289222157697025' class='bbp-action bbp-reply-action' title='Reply'><span><em style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a href='https://twitter.com/intent/retweet?tweet_id=159289222157697025' class='bbp-action bbp-retweet-action' title='Retweet'><span><em style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a href='https://twitter.com/intent/favorite?tweet_id=159289222157697025' class='bbp-action bbp-favorite-action' title='Favorite'><span><em style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div style='float:left; padding:0; margin:0'><a href='http://twitter.com/intent/user?screen_name=brainpicker'><img style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a2.twimg.com/profile_images/125575833/twitter_normal.jpg' /></a></div><div style='float:left; padding:0; margin:0'><a style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=brainpicker'>@brainpicker</a><div style='margin:0; padding-top:2px'>Maria Popova</div></div><div style='clear:both'></div></div></div><!-- end of tweet -->
<p>&nbsp;</p>
<p>Walter Isaacson&#8217;s Steve Jobs biography, Steve talks about the antiquity of the so called  &#8221;modern&#8221; textbook. It is clear that the Textbook (along with the television) industry was one of the next places that he wanted Apple to revolutionize (pg. 510).</p>
<p>If Apple can make the creation of digital textbooks easy, they can create a new use for their iPad. Their iPad sales will skyrocket if colleges and high schools start using digital textbooks. Apple will not become the producer nor the publisher but the distributor. It will be exactly like iTunes but all over again.</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1577&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/if-apple-doesnt-somebody-will-revolutionizing-the-textbook-industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sliced Bread Notebooks [click me]</title>
		<link>http://bshootz.com/sliced-bread-notebooks/</link>
		<comments>http://bshootz.com/sliced-bread-notebooks/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 21:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[new years resolution.]]></category>
		<category><![CDATA[note taking]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://bshootz.com/sliced-bread-notebooks/</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://www.pukkadank.com/products/sliced-bread-notebook" rel="bookmark" title="Sliced Bread Notebooks [click me]" target="_blank">http://www.pukkadank.com/products/sliced-bread-notebook</a></p>Just wanted to share this cool link for 12 notebooks that come in a package resembling a bread bag. Maybe it will help you with your New Years resolution. &#60;via Uncrate&#62;&#160;Who am I kidding nobody keeps their resolutions.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://www.pukkadank.com/products/sliced-bread-notebook" rel="bookmark" title="Sliced Bread Notebooks [click me]" target="_blank">http://www.pukkadank.com/products/sliced-bread-notebook</a></p><p>Just wanted to share this cool link for 12 notebooks that come in a package resembling a bread bag. Maybe it will help you with your New Years resolution. <a href="http://uncrate.com/stuff/sliced-bread-notebook/" title="" target="_blank">&lt;via Uncrate&gt;</a>&nbsp;<i>Who am I kidding nobody keeps their resolutions.</i></p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1572&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/sliced-bread-notebooks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Costolo is Wrong, Wikipedia Should Blackout Tomorrow (updated: why Carr misinterpreted Costolo)</title>
		<link>http://bshootz.com/why-costolo-is-wrong-wikipedia-should-blackout-tomorrow/</link>
		<comments>http://bshootz.com/why-costolo-is-wrong-wikipedia-should-blackout-tomorrow/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 21:02:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1564</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p>According to Paul Carr of Pandodaily (the new blog setup by some TechCrunch refugees), Wikipedia should not be going black in protest of SOPA. His main reasons ares that: Wikipedia has asked their users for money in order to keep &#8230; <a href="http://bshootz.com/why-costolo-is-wrong-wikipedia-should-blackout-tomorrow/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><!-- tweet id : 159014296616058880 --><style type='text/css'>#bbpBox_159014296616058880 a { text-decoration:none; color:#0000ff; }#bbpBox_159014296616058880 a:hover { text-decoration:underline; }</style><div id='bbpBox_159014296616058880' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#9ae4e8; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div style='background:#fff; padding:10px; margin:0; min-height:48px; color:#000000; -moz-border-radius:5px; -webkit-border-radius:5px;'><span style='width:100%; font-size:18px; line-height:22px;'>@<a href="http://twitter.com/intent/user?screen_name=digiphile" class="twitter-action">digiphile</a> @<a href="http://twitter.com/intent/user?screen_name=jayrosen_nyu" class="twitter-action">jayrosen_nyu</a> that's just silly. Closing a global business in reaction to single-issue national politics is foolish.</span><div class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img align='middle' src='http://bshootz.com/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a title='tweeted on January 16, 2012 4:48 pm' href='http://twitter.com/#!/dickc/status/159014296616058880' target='_blank'>January 16, 2012 4:48 pm</a> via web<a href='https://twitter.com/intent/tweet?in_reply_to=159014296616058880' class='bbp-action bbp-reply-action' title='Reply'><span><em style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a href='https://twitter.com/intent/retweet?tweet_id=159014296616058880' class='bbp-action bbp-retweet-action' title='Retweet'><span><em style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a href='https://twitter.com/intent/favorite?tweet_id=159014296616058880' class='bbp-action bbp-favorite-action' title='Favorite'><span><em style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div style='float:left; padding:0; margin:0'><a href='http://twitter.com/intent/user?screen_name=dickc'><img style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a1.twimg.com/profile_images/1537551435/final_dick_costolo_compressed_normal.jpg' /></a></div><div style='float:left; padding:0; margin:0'><a style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=dickc'>@dickc</a><div style='margin:0; padding-top:2px'>dick costolo</div></div><div style='clear:both'></div></div></div><!-- end of tweet -->
<p><a href="http://pandodaily.com/2012/01/16/dick-costolo-is-right-wikipedias-sopa-blackout-is-a-terrible-idea/" target="_blank">According to Paul Carr of Pandodaily (the new blog setup by some TechCrunch refugees), Wikipedia should not be going black in protest of SOPA.</a> His main reasons ares that:</p>
<ul>
<li>Wikipedia has asked their users for money in order to keep their servers up. The users have provided that money, and thus deserve uninterrupted service.</li>
<li>It marginalizes other important things such as human rights abuses in Libya.</li>
<li>It harms Wikipedia&#8217;s Neutrality.</li>
</ul>
<p><span style="font-size: small;">Mr. Carr does have a point in that Wikipedia has been fundraising, and its users deserve the up time that they donated their money for. <a href="http://en.wikipedia.org/wiki/Wikipedia:SOPA_initiative/Action" target="_blank">However, Wikipedia did not just make this decision on its own.</a> Its users have voiced their opinions. If passed, SOPA/PIPA will bring down Wikipedia, not  for one day, but forever. SOPA/PIPA is also not just an issue in the United States. It also gives the ability for international sites to be brought down. </span></p>
<p><span style="font-size: small;">Mr. Carr&#8217;s second issue with Wikipedia&#8217;s marginalization of other issues is also somewhat valid. But, those other issues did not affect Wikipedia itself. SOPA will affect Wikipedia if passed. As a foundation that&#8217;s goal is to &#8220;<a href="http://wikimediafoundation.org/wiki/Mission_statement" target="_blank">empower and engage people around the world to collect and develop educational content under a free license or in the public domain, and to disseminate it effectively and globally.</a>&#8221; Wikipedia should and must oppose all laws, American and Otherwise, that would make their mission impossible. </span></p>
<p>Wikipedia&#8217;s articles must be neutral, but Wikipedia should not. It must serve its own interests. The Wikimedia foundation cannot roll over and allow the United States government to pass harmful bills that will negatively impact it.</p>
<p>This website will be joining Wikipedia in it&#8217;s protest. Wikipedia is making the right decisions and I fully support them.</p>
<p><em><strong> Update (Tuesday, @4:10):</strong></em></p>
<!-- tweet id : 159063817534455808 --><style type='text/css'>#bbpBox_159063817534455808 a { text-decoration:none; color:#0000ff; }#bbpBox_159063817534455808 a:hover { text-decoration:underline; }</style><div id='bbpBox_159063817534455808' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#9ae4e8; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div style='background:#fff; padding:10px; margin:0; min-height:48px; color:#000000; -moz-border-radius:5px; -webkit-border-radius:5px;'><span style='width:100%; font-size:18px; line-height:22px;'>@<a href="http://twitter.com/intent/user?screen_name=jimmy_wales" class="twitter-action">jimmy_wales</a> was only referring to Twitter in response to explicit tweet suggesting we lacked courage for not shutting down.....</span><div class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img align='middle' src='http://bshootz.com/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a title='tweeted on January 16, 2012 8:05 pm' href='http://twitter.com/#!/dickc/status/159063817534455808' target='_blank'>January 16, 2012 8:05 pm</a> via web<a href='https://twitter.com/intent/tweet?in_reply_to=159063817534455808' class='bbp-action bbp-reply-action' title='Reply'><span><em style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a href='https://twitter.com/intent/retweet?tweet_id=159063817534455808' class='bbp-action bbp-retweet-action' title='Retweet'><span><em style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a href='https://twitter.com/intent/favorite?tweet_id=159063817534455808' class='bbp-action bbp-favorite-action' title='Favorite'><span><em style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div style='float:left; padding:0; margin:0'><a href='http://twitter.com/intent/user?screen_name=dickc'><img style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a1.twimg.com/profile_images/1537551435/final_dick_costolo_compressed_normal.jpg' /></a></div><div style='float:left; padding:0; margin:0'><a style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=dickc'>@dickc</a><div style='margin:0; padding-top:2px'>dick costolo</div></div><div style='clear:both'></div></div></div><!-- end of tweet -->
<p>As shown in the Twitter update above, Carr misinterpreted Cosotolo&#8217;s tweet. Mr. Costolo was only referring to the pressure that Twitter should go down tomorrow.  But my argument for Wikipedia&#8217;s blackout still stands.</p>
<p>&nbsp;</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1564&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/why-costolo-is-wrong-wikipedia-should-blackout-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be Prepared for the January 18th, 2012 SOPA/PIPA Blackout</title>
		<link>http://bshootz.com/be-prepared-for-the-january-19th-2012-sopapipa-blackout/</link>
		<comments>http://bshootz.com/be-prepared-for-the-january-19th-2012-sopapipa-blackout/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 20:57:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Blackout]]></category>
		<category><![CDATA[Congress]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[PIPA]]></category>
		<category><![CDATA[SOPA]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1559</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/housekeeping/community/" title="Community">Community</a><a href="http://bshootz.com/category/opinion/" title="Opinion">Opinion</a><a href="http://bshootz.com/category/opinion/politics/" title="Politics">Politics</a><a href="http://bshootz.com/category/tips/" title="Tips">Tips</a></p>SAY NO TO SOPA The Internet is going to be turning black on Jan. 19th because of the copyright legislation currently going through the two houses of Congress. SOPA in the House of Representatives and PIPA in the Senate both &#8230; <a href="http://bshootz.com/be-prepared-for-the-january-19th-2012-sopapipa-blackout/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/housekeeping/community/" title="Community">Community</a><a href="http://bshootz.com/category/opinion/" title="Opinion">Opinion</a><a href="http://bshootz.com/category/opinion/politics/" title="Politics">Politics</a><a href="http://bshootz.com/category/tips/" title="Tips">Tips</a></p><p><center><strong>SAY NO TO SOPA</strong></center><center></center><center><center></center></center><!-- tweet id : 158960549105909761 --><style type='text/css'>#bbpBox_158960549105909761 a { text-decoration:none; color:#0084B4; }#bbpBox_158960549105909761 a:hover { text-decoration:underline; }</style><div id='bbpBox_158960549105909761' class='bbpBox' style='padding:20px; margin:5px 0; background-color:#C0DEED; background-image:url(http://a0.twimg.com/images/themes/theme1/bg.png); background-repeat:no-repeat'><div style='background:#fff; padding:10px; margin:0; min-height:48px; color:#333333; -moz-border-radius:5px; -webkit-border-radius:5px;'><span style='width:100%; font-size:18px; line-height:22px;'>This is going to be wow.  I hope Wikipedia will melt phone systems in Washington on Wednesday.  Tell everyone you know!</span><div class='bbp-actions' style='font-size:12px; width:100%; padding:5px 0; margin:0 0 10px 0; border-bottom:1px solid #e6e6e6;'><img align='middle' src='http://bshootz.com/wp-content/plugins/twitter-blackbird-pie//images/bird.png' /><a title='tweeted on January 16, 2012 1:15 pm' href='http://twitter.com/#!/jimmy_wales/status/158960549105909761' target='_blank'>January 16, 2012 1:15 pm</a> via web<a href='https://twitter.com/intent/tweet?in_reply_to=158960549105909761' class='bbp-action bbp-reply-action' title='Reply'><span><em style='margin-left: 1em;'></em><strong>Reply</strong></span></a><a href='https://twitter.com/intent/retweet?tweet_id=158960549105909761' class='bbp-action bbp-retweet-action' title='Retweet'><span><em style='margin-left: 1em;'></em><strong>Retweet</strong></span></a><a href='https://twitter.com/intent/favorite?tweet_id=158960549105909761' class='bbp-action bbp-favorite-action' title='Favorite'><span><em style='margin-left: 1em;'></em><strong>Favorite</strong></span></a></div><div style='float:left; padding:0; margin:0'><a href='http://twitter.com/intent/user?screen_name=jimmy_wales'><img style='width:48px; height:48px; padding-right:7px; border:none; background:none; margin:0' src='http://a1.twimg.com/profile_images/15944612/small_sepia_jimbo_normal.jpg' /></a></div><div style='float:left; padding:0; margin:0'><a style='font-weight:bold' href='http://twitter.com/intent/user?screen_name=jimmy_wales'>@jimmy_wales</a><div style='margin:0; padding-top:2px'>Jimmy Wales</div></div><div style='clear:both'></div></div></div><!-- end of tweet --></p>
<p>The Internet is going to be turning black on Jan. 19th because of the copyright legislation currently going through the two houses of Congress. SOPA in the House of Representatives and PIPA in the Senate both threaten the wonderful community of creation that is the Internet.</p>
<p>If either of these bills are passed the major and minor sites (such as this one) could be taken down just for linking to a site that may or may not support piracy. Youtube could be taken down for one copyright infringing video. Same thing for Facebook, Wikipedia, or Etsy. That is why this site and many others will be going black on Wednesday.</p>
<p>Sites That I Know Are Going Black:</p>
<ul>
<li>Reddit</li>
<li><strong>Wikipedia (you better write your essays ahead of time)</strong></li>
<li>Mojang</li>
<li>Major League Gaming</li>
<li>Cheezburger Sites</li>
</ul>
<p>If you operate a website I suggest putting up a stop SOPA banner to increase awareness. It&#8217;s the only way we can keep the Internet as it is.</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1559&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/be-prepared-for-the-january-19th-2012-sopapipa-blackout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install Emacs 24 on Debian Squeeze</title>
		<link>http://bshootz.com/how-to-install-emacs-24-on-debian-squeeze/</link>
		<comments>http://bshootz.com/how-to-install-emacs-24-on-debian-squeeze/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 05:01:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[24]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1550</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/tips/how-to/" title="How To">How To</a><a href="http://bshootz.com/category/tips/" title="Tips">Tips</a><a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p>You are probably wondering what all the fuss is about the newest prerelease versions of Emacs 24. Well, the best way to see them is to install the newest version.Here&#8217;s how you can do that on Debian. This tutorial is &#8230; <a href="http://bshootz.com/how-to-install-emacs-24-on-debian-squeeze/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/tips/how-to/" title="How To">How To</a><a href="http://bshootz.com/category/tips/" title="Tips">Tips</a><a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p>You are probably wondering what all the fuss is about the newest prerelease versions of Emacs 24. Well, the best way to see them is to install the newest version.Here&#8217;s how you can do that on Debian.</p>
<p>This tutorial is based <a href="http://www.emacswiki.org/emacs/EmacsSnapshotAndDebian">upon this official (more expert friendly) tutorial.</a> If you want some challenge you can just try to install from there without reading the rest of this blog post. First you must install git if you don&#8217;t have git:</p>
<pre>sudo apt-get install git</pre>
<p>This will allow you to pull the newest release from the repository. Using this command:</p>
<pre>git clone --depth 1 git://git.sv.gnu.org/emacs.git</pre>
<p>Wait for your computer to download all of the files it might take a while. Now you need to install a  bunch of dependencies. You can try compiling without them and see which ones you absolutely need. But you at least need:</p>
<ul>
<li>build-essential</li>
<li>xorg-dev</li>
<li>libgtk2.0-dev</li>
</ul>
<p>All of these can be installed through &#8220;sudo apt-get install &#8220;.  Now you must compile the source by running &#8220;cd ~/emacs&#8221; then:</p>
<pre>./autogen.sh
./configure
make bootstrap (this will take a while)
sudo make install</pre>
<p>This should leave you with a working Emacs 24 install. It might take a long time but it is totally worth it</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1550&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/how-to-install-emacs-24-on-debian-squeeze/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Era of Downtime: A Look at Some Memorable Internet Fails of 2011</title>
		<link>http://bshootz.com/the-era-of-downtime-a-look-at-some-memorable-internet-fails-of-2011/</link>
		<comments>http://bshootz.com/the-era-of-downtime-a-look-at-some-memorable-internet-fails-of-2011/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 02:42:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1534</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p>Every time I see a discrepancy or a website offline I always like to screenshot. Imgur down? Better take a screenshot. Amazon&#8217;s pricing doesn&#8217;t make sense? Take that screenshot. Here&#8217;s some of the best so far: Imgur: Reddit: Steam: Amazon &#8230; <a href="http://bshootz.com/the-era-of-downtime-a-look-at-some-memorable-internet-fails-of-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p>Every time I see a discrepancy or a website offline I always like to screenshot. Imgur down? Better take a screenshot. Amazon&#8217;s pricing doesn&#8217;t make sense? Take that screenshot. Here&#8217;s some of the best so far:</p>
<p>Imgur:<br />
<a href="http://bshootz.com/wp-content/uploads/2011/12/imgur-fail.jpg"><img class="aligncenter size-medium wp-image-1537" title="imgur-fail" src="http://bshootz.com/wp-content/uploads/2011/12/imgur-fail-300x139.jpg" alt="" width="300" height="139" /></a><br />
Reddit:<br />
<a href="http://bshootz.com/wp-content/uploads/2011/12/Reddit-fail-not-again.png"><img class="aligncenter size-medium wp-image-1540" title="Reddit-fail-not-again" src="http://bshootz.com/wp-content/uploads/2011/12/Reddit-fail-not-again-300x173.png" alt="" width="300" height="173" /></a><br />
Steam:<br />
<a href="http://bshootz.com/wp-content/uploads/2011/12/steam-error1.jpg"><img class="aligncenter size-medium wp-image-1541" title="steam-error" src="http://bshootz.com/wp-content/uploads/2011/12/steam-error1-300x231.jpg" alt="" width="300" height="231" /></a><br />
Amazon Pricing:<br />
<a href="http://bshootz.com/wp-content/uploads/2011/12/price-fail.png"><img class="aligncenter size-medium wp-image-1538" title="price-fail" src="http://bshootz.com/wp-content/uploads/2011/12/price-fail-300x32.png" alt="" width="300" height="32" /></a><br />
Amazon Shipping:<a href="http://bshootz.com/wp-content/uploads/2011/12/prime-shipping.png"><img class="aligncenter size-full wp-image-1539" title="prime-shipping" src="http://bshootz.com/wp-content/uploads/2011/12/prime-shipping.png" alt="" width="293" height="80" /></a></p>
<p>Hp Touchpad:</p>
<p><a href="http://bshootz.com/wp-content/uploads/2011/12/hp-fail.png"><img class="aligncenter size-medium wp-image-1536" title="hp-fail" src="http://bshootz.com/wp-content/uploads/2011/12/hp-fail-300x43.png" alt="" width="300" height="43" /></a></p>
<p>Captcha:</p>
<p><a href="http://bshootz.com/wp-content/uploads/2011/12/captcha-fail.png"><img class="aligncenter size-medium wp-image-1535" title="captcha-fail" src="http://bshootz.com/wp-content/uploads/2011/12/captcha-fail-300x77.png" alt="" width="300" height="77" /></a></p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1534&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/the-era-of-downtime-a-look-at-some-memorable-internet-fails-of-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grindcraft: My Windows &#8220;Port&#8221;, A Minecraft Soundtrack for your daily life</title>
		<link>http://bshootz.com/grindcraft-my-windows-port-a-minecraft-soundtrack-for-your-daily-life/</link>
		<comments>http://bshootz.com/grindcraft-my-windows-port-a-minecraft-soundtrack-for-your-daily-life/#comments</comments>
		<pubDate>Sun, 18 Dec 2011 19:03:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Minecraft]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1510</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/tips/how-to/" title="How To">How To</a></p>I stumbled upon this program called &#8220;GrindCraft&#8220;. It plays songs from the Minecraft soundtrack at random times while you are at your computer. However, it only works for Macs, well easily anyways. Today I ported it to Windows with Audiere. &#8230; <a href="http://bshootz.com/grindcraft-my-windows-port-a-minecraft-soundtrack-for-your-daily-life/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/tips/how-to/" title="How To">How To</a></p><p>I stumbled upon this program called &#8220;<a href="https://github.com/mrspeaker/grindcraft">GrindCraft</a>&#8220;. It plays songs from the Minecraft soundtrack at random times while you are at your computer. However, it only works for Macs, well easily anyways. Today I ported it to Windows with <a href="http://pyaudiere.org/">Audiere</a>. I own the Minecraft album so I just used that. But if you want you can probably get the songs from the minecraft game jar. (you need to go to:<br />
&#8220;C:\Users\USERNAME\AppData\Roaming\.minecraft\resources&#8221; to find the .mp3 files. From there you can stick them in a separate folder.)</p>
<p>Keep in mind I wrote this as to make my experience as painless as possible. This probably means your experience will be very painful when you try to set this program up. But I figured someone might want to use it. So, here it is:</p>
<p><a href="http://bshootz.com/wp-content/uploads/2011/12/PCgrindcraft.zip">PCgrindcraft</a></p>
<p><a href="http://bshootz.com/wp-content/uploads/2011/12/PCgrindcraftv2.zip">PCgrindcraftv2</a></p>
<p>In the grindcraft.config file all you need is either &#8220;show&#8221; or &#8220;noshow&#8221; so say whether or not you want to know how long until the next song is played. And then the directory where all of your minecraft .mp3s are.</p>
<p>Here&#8217;s a preview of the sourcecode:</p>
<pre><span class="keyword">import</span> audiere
<span class="keyword">import</span> time
<span class="keyword">import</span> random
<span class="keyword">import</span> string
<span class="keyword">import</span> os
f = <span class="py-builtins">open</span>(<span class="string">'grindcraft.conf'</span>,<span class="string">'r'</span>)
<span class="py-variable-name">read</span> = f.read()
<span class="py-variable-name">conf</span> = []
<span class="py-variable-name">conf</span> = string.split(read)
d = audiere.open_device()
<span class="py-variable-name">go</span> = <span class="py-pseudo-keyword">True</span>
<span class="py-variable-name">files</span> = []
<span class="py-variable-name">files</span> = os.listdir(conf[1])
<span class="keyword">while</span>(go == <span class="py-pseudo-keyword">True</span>):
    <span class="py-variable-name">numb</span> = random.randint(1,24)
    <span class="py-variable-name">full</span> = conf[1] + files[numb]
    f = d.open_file(full,1)
    f.play()
    <span class="py-variable-name">rand_sleep</span> = 600+(random.randint(-3,7)*60)
    <span class="keyword">while</span>(rand_sleep &gt; 0):
        time.sleep(5)
        <span class="py-variable-name">rand_sleep</span> = rand_sleep - 5
        <span class="keyword">if</span>(conf[0] != <span class="string">'noshow'</span>):
            os.system(<span class="string">"cls"</span>)
            <span class="py-builtins">print</span> rand_sleep/60 , <span class="string">'More minutes until music || Playing:'</span>, files[numb]</pre>
<p>&nbsp;</p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1510&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/grindcraft-my-windows-port-a-minecraft-soundtrack-for-your-daily-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Not To Make  A Blog Theme</title>
		<link>http://bshootz.com/how-not-to-make-a-blog-theme/</link>
		<comments>http://bshootz.com/how-not-to-make-a-blog-theme/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 07:00:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bshootz.com/?p=1506</guid>
		<description><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://bshootz.com/how-not-to-make-a-blog-theme/" title="image"><img src="" alt="image" width="400" /></a></p>This is ridiculous. There is one thing that makes me angry and that is badly formatted blogs. As a writer/blog maintainer your most important job is to convey your writing in a well formatted and interesting way. A bad theme &#8230; <a href="http://bshootz.com/how-not-to-make-a-blog-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://bshootz.com/category/uncategorized/" title="Uncategorized">Uncategorized</a></p><p><a href="http://bshootz.com/how-not-to-make-a-blog-theme/" title="image"><img src="" alt="image" width="400" /></a></p><p>This is ridiculous. There is one thing that makes me angry and that is badly formatted blogs. As a writer/blog maintainer your most important job is to convey your writing in a well formatted and interesting way. A bad theme design impedes this goal and thus stops readers from returning to your site. This is an especially bad example from a blog I stumbled upon recently. It&#8217;s web page is 25% content and 75% meaningless ads and links.<br />
<a href="http://bshootz.com/wp-content/uploads/2011/12/article-fail-fixed.jpg"><img class="aligncenter size-medium wp-image-1507" title="article-fail-fixed" src="http://bshootz.com/wp-content/uploads/2011/12/article-fail-fixed-300x100.jpg" alt="" width="300" height="100" /></a></p>
<img src="http://bshootz.com/?ak_action=api_record_view&id=1506&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://bshootz.com/how-not-to-make-a-blog-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

