<?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>nostate.com&#187; Twitter</title> <atom:link href="http://www.nostate.com/tag/twitter/feed/" rel="self" type="application/rss+xml" /><link>http://www.nostate.com</link> <description>ACCESS ALL AREAS</description> <lastBuildDate>Tue, 07 Feb 2012 16:06:00 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Auto-tweet a countdown to Twitter from your PHP website</title><link>http://www.nostate.com/3982/auto-tweet-a-countdown-to-twitter-from-your-php-website/</link> <comments>http://www.nostate.com/3982/auto-tweet-a-countdown-to-twitter-from-your-php-website/#comments</comments> <pubDate>Thu, 02 Dec 2010 07:11:27 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[software]]></category> <category><![CDATA[Bradley Manning]]></category> <category><![CDATA[OAuth]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=3982</guid> <description><![CDATA[How to create a daily countdown auto-tweet to Twitter using PHP and cron.]]></description> <content:encoded><![CDATA[<p>Recently I wanted to set up an automatic tweet counting down the days until the end of 2010 to remind people to send holiday cards to <a
href="http://www.bradleymanning.org/">Bradley Manning</a> and members of the US Congress. Here&#8217;s the solution I used:</p><ol><li>Log into your Twitter account.</li><li>Go to <a
href="http://api.twitter.com/apps">http://api.twitter.com/apps</a>..</li><li>Register a new application</li><li>When you&#8217;re done registering, go to <a
href="http://dev.twitter.com/apps">http://dev.twitter.com/apps</a> and click on the application name.</li><li>Copy and save your consumer key and consumer secret.</li><li>Click &#8220;My access token&#8221; at right.</li><li>Copy and save your access token and your access token secret.</li><li>Download Abraham Williams&#8217; <a
href="http://github.com/abraham/twitteroauth/downloads">twitteroauth</a> package from github. (If you have any trouble later, download and use the <a
href="https://github.com/abraham/twitteroauth/archives/0.2.0-beta3">0.2.0-beta3</a> branch instead of the latest.)</li><li>Unpack the archive and transfer the directory it contains to your web server’s public_html or whatever directory is set up as your document root.</li><li>IMPORTANT: Change the name of the directory to something secret. Make up a string of random letters and numbers. We’ll call this string SECRETDIR.</li><li>Go into SECRETDIR, edit config.php and insert the consumer key, consumer secret, access token and access secret.</li><li>Go into SECRETDIR and create a “tweet.php” file, like this:<p> <code>&lt;?php</code><br
/> <code></code><br
/> <code>require_once(&#039;config.php&#039;);</code><br
/> <code>require_once(&#039;twitteroauth/twitteroauth.php&#039;);</code><br
/> <code>$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET);</code><br
/> <code>$today = idate(&#039;z&#039;, time());</code><br
/> <code>$enddate = idate(&#039;z&#039;, strtotime(&#039;31 December 2010&#039;));</code><br
/> <code>$daysleft = $enddate - $today;</code><br
/> <code></code><br
/> <code>$tweetstr = &#039;Only &#039; . $daysleft . &#039; day&#039;;</code><br
/> <code>if ($daysleft &gt; 1) $tweetstr .= &#039;s&#039;;</code><br
/> <code>$tweetstr .= &quot; left to send out a holiday card for Bradley Manning&#039;s freedom! http://bit.ly/dW5w5e #freebrad&quot;;</code><br
/> <code></code><br
/> <code>$connection-&gt;post(&#039;statuses/update&#039;, array(&#039;status&#039; =&gt; $tweetstr));</code><br
/> <code></code><br
/> <code>?&gt;</code></li><li>Now create a cron job on your server. I&#8217;m tweeting once daily at 9:00am in my webhost&#8217;s time zone, so I used:<br
/> <code>00 9 * * * wget http://www.bradleymanning.org/SECRETDIR/tweet.php</code></li><li>Enjoy your auto-tweeting goodness!</li></ol><p>Yes, using a SECRETDIR as a security (by obscurity) measure is not the best idea, but it does allow for a quick and dirty solution. Other solutions are possible, but this will get you started.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/bradley-manning/" title="Bradley Manning" rel="tag">Bradley Manning</a>, <a
href="http://www.nostate.com/tag/oauth/" title="OAuth" rel="tag">OAuth</a>, <a
href="http://www.nostate.com/tag/php/" title="PHP" rel="tag">PHP</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/3982/auto-tweet-a-countdown-to-twitter-from-your-php-website/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Twerrorism &#8211; When anarchists tweet, the state twembles</title><link>http://www.nostate.com/3351/twerrorism-when-anarchists-tweet-the-state-twembles/</link> <comments>http://www.nostate.com/3351/twerrorism-when-anarchists-tweet-the-state-twembles/#comments</comments> <pubDate>Mon, 19 Oct 2009 12:00:34 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[activism]]></category> <category><![CDATA[police]]></category> <category><![CDATA[g-20 protest]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=3351</guid> <description><![CDATA[One of my news-and-blogs-scouring agents (Bloglines search) turned up this video today after my &#8220;G20 riots in Pittsburgh – How I organized them via Twitter&#8221; post was linked to in a post including the video to whatreallyhappened.com. Quite the contrast. Criminalization of Social Networking Technology &#8211; Twitter, G20 Pittsburgh, &#38; Iran Possibly related posts: (automatically [...]]]></description> <content:encoded><![CDATA[<p>One of my news-and-blogs-scouring agents (Bloglines search) turned up this video today after  my &#8220;<a
href="http://www.nostate.com/3240/g20-riots-in-pittsburgh-how-i-organized-them-via-twitter/">G20 riots in Pittsburgh – How I organized them via Twitter</a>&#8221; post was linked to in a post including the video to whatreallyhappened.com.</p><p>Quite the contrast.</p><p>Criminalization of Social Networking Technology &#8211; Twitter, G20 Pittsburgh, &amp; Iran</p><p><a
href="http://www.nostate.com/3351/twerrorism-when-anarchists-tweet-the-state-twembles/"><em>Click here to view the embedded video.</em></a></p><h4>Possibly related posts: (automatically generated)</h4><ul><li
style="list-style: none;">Related posts on <b>g-20 protest</b></li><li><a
href="http://www.ccortez.com/twitter-operations-engineer-hit-by-car-survives-tweets-then-djs-party/">Twitter operations engineer hit by car, survives, tweets then DJs <b>&#8230;</b></a></li><li><a
href="http://tcot.us/7328">tcot.us » Blog Archive » Headlines for October 5, 2009</a></li></ul><ul><li
style="list-style: none;">Related posts on <b>Twitter</b></li><li><a
href="http://www.mytweetspace.com/blog/?p=55">Custom <b>Twitter</b> Backgrounds « MyTweetSpace Blog</a></li><li><a
href="http://dailyshite.com/2009/10/overheard-on-twitter-via-menacingpickle/">Overheard on <b>Twitter</b> (via @menacingpickle ) | Daily Shite</a></li></ul> <br
/>Tags: <a
href="http://www.nostate.com/tag/g-20-protest/" title="g-20 protest" rel="tag">g-20 protest</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/3351/twerrorism-when-anarchists-tweet-the-state-twembles/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Did a liberal call me dumb? Does a neocon think I can make mercury switches?</title><link>http://www.nostate.com/3331/did-a-liberal-call-me-dumb-does-a-neocon-think-i-can-make-mercury-switches/</link> <comments>http://www.nostate.com/3331/did-a-liberal-call-me-dumb-does-a-neocon-think-i-can-make-mercury-switches/#comments</comments> <pubDate>Tue, 06 Oct 2009 10:58:59 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[people]]></category> <category><![CDATA[g20]]></category> <category><![CDATA[liberalism]]></category> <category><![CDATA[neoconservatism]]></category> <category><![CDATA[pittsburgh]]></category> <category><![CDATA[police]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=3331</guid> <description><![CDATA[The whole G20-Pittsburgh-Twitter-police-scanner-anarchists-arrested thing is really spilling over into the land of great wackiness.]]></description> <content:encoded><![CDATA[<p>The whole G20-Pittsburgh-Twitter-police-scanner-anarchists-arrested thing is really spilling over into the land of great wackiness. I&#8217;m so confused!</p><p>Here, I&#8217;ll let y&#8217;all have a crack at &#8216;em:</p><p
style="padding-left: 30px;"><a
href="http://americanpowerblog.blogspot.com/2009/10/queens-tin-can-anarchist-held-one-pound.html">Queens &#8216;Tin Can&#8217; Anarchist Held One Pound of Liquid Mercury</a></p><p>Since mercury is liquid at room temperature, freezes around -40 °C and boils above 350 °C, one wonders what the point of stressing &#8220;liquid&#8221; here is&#8230; unless it was a rather unseasonable day in Queens.</p><p>And then:</p><p
style="padding-left: 30px;"><a
href="http://biobrain.blogspot.com/2009/10/donald-douglas-all-dumb-is-liberal.html">Donald Douglas: All Dumb is Liberal</a></p><p>I could swear I&#8217;m being called dumb there. Unclear. I feel dumb for not updating my &#8220;about&#8221; page lately, but whatever.</p><p>Go get &#8216;em, tigers.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/g20/" title="g20" rel="tag">g20</a>, <a
href="http://www.nostate.com/tag/liberalism/" title="liberalism" rel="tag">liberalism</a>, <a
href="http://www.nostate.com/tag/neoconservatism/" title="neoconservatism" rel="tag">neoconservatism</a>, <a
href="http://www.nostate.com/tag/pittsburgh/" title="pittsburgh" rel="tag">pittsburgh</a>, <a
href="http://www.nostate.com/tag/police/" title="police" rel="tag">police</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/3331/did-a-liberal-call-me-dumb-does-a-neocon-think-i-can-make-mercury-switches/feed/</wfw:commentRss> <slash:comments>41</slash:comments> </item> <item><title>Twitter, the G20 and the Rule of Law</title><link>http://www.nostate.com/3322/twitter-the-g20-and-the-rule-of-law/</link> <comments>http://www.nostate.com/3322/twitter-the-g20-and-the-rule-of-law/#comments</comments> <pubDate>Mon, 05 Oct 2009 20:37:04 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[activism]]></category> <category><![CDATA[police]]></category> <category><![CDATA[c4ss]]></category> <category><![CDATA[g20]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=3322</guid> <description><![CDATA[Twitter, the G20 and the Rule of Law: My first audio commentary for the Center for a Stateless Society.]]></description> <content:encoded><![CDATA[<p>My first audio commentary for the Center for a Stateless Society. Check it out, <a
href="http://c4ss.org/content/1188">over there</a>.</p><div
id="attachment_3324" class="wp-caption alignright" style="width: 190px"><img
class="size-medium wp-image-3324 " title="Twitter Logo" src="http://www.nostate.com/wordpress/wp-content/uploads/2009/10/Twitter-Logo-300x300.png" alt="Tweet, tweet! I'm a dangerous bird!" width="180" height="180" /><p
class="wp-caption-text">Tweet, tweet! I&#39;m a dangerous anarchist bird!</p></div><p>I&#8217;ll probably be producing a couple of these per week, with <a
href="http://www.bradspangler.com/">Brad Spangler</a> backing me up both as writer and as alternate reader.</p><p>It&#8217;s a bit creepy voicing this, given the <a
href="http://news.infoshop.org/article.php?story=20091004103641852">arrests</a> of Elliot Madison and Michael Wallschlaeger, and the <a
href="http://www.riehlworldview.com/carnivorous_conservative/2009/10/nyc-anarchist-arrested-for-protest-tweets.html">raid</a> on Madison&#8217;s home, since I was doing much the same thing for a couple of evenings: listening to Pittsburgh-area police scanner traffic over the internet, and repeating interesting information to several relevant hashtags on Twitter.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/c4ss/" title="c4ss" rel="tag">c4ss</a>, <a
href="http://www.nostate.com/tag/g20/" title="g20" rel="tag">g20</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/3322/twitter-the-g20-and-the-rule-of-law/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Can the military coexist with social networking sites?</title><link>http://www.nostate.com/2858/can-the-military-coexist-with-social-networking-sites/</link> <comments>http://www.nostate.com/2858/can-the-military-coexist-with-social-networking-sites/#comments</comments> <pubDate>Wed, 05 Aug 2009 03:10:14 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[police]]></category> <category><![CDATA[surveillance]]></category> <category><![CDATA[war]]></category> <category><![CDATA[assassination market]]></category> <category><![CDATA[crypto-anarchy]]></category> <category><![CDATA[encryption]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[iPhone]]></category> <category><![CDATA[military]]></category> <category><![CDATA[social networking]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=2858</guid> <description><![CDATA[The Los Angeles Times article asks: Can the military coexist with social networking sites? Gosh, I sure hope not. The idea that Twitter, MySpace and Facebook could simply crash the modern cyber-state&#8217;s ability to wage war &#8212; which is to oppress, occupy, conscript, tax, torture, rape, murder, rob, poison, dispossess, expel, infect, regulate, control, police, [...]]]></description> <content:encoded><![CDATA[<p>The <a
rel="nofollow" href="http://www.latimes.com/news/nationworld/nation/la-na-pentagon-facebook5-2009aug05,0,3998956.story">Los Angeles Times article</a> asks:</p><p><em>Can the military coexist with social networking sites?</em></p><p>Gosh, I sure hope not.</p><p>The idea that Twitter, MySpace and Facebook could simply crash the modern cyber-state&#8217;s ability to wage war &#8212; which is to oppress, occupy, conscript, tax, torture, rape, murder, rob, poison, dispossess, expel, infect, regulate, control, police, imprison, degrade, dehumanize and destroy human beings &#8212; simply tickles me.</p><p>And it just may be possible.</p><p>At different times and in different combinations, military service personnel communication with the outside world is and has always been banned, blocked, censored, controlled, forced, edited in transit, misdirected, intercepted, co-opted, manipulated and so on.</p><p>The technology to do that has typically relied on the application of policy and physical means to the hired thugs themselves and their communications channels. In the dead age of empires, that mostly meant controlling the mails, access to military sites, physical documents and the like.</p><p>The modern mercenary for Leviathan has all manner of fresh, cool, exciting, low-power and long-reach wireless communications tools available which can beam messages, documents, position information, local data feeds and so forth around the globe to millions &#8212; on or off the secret military networks &#8212; in seconds. Those tools, in combination with the existing social networking services, might well make it impossible for wealthier nations to maintain typical military discipline and operational security.</p><p>This is not to mention that the tools are sometimes used <em>by accident</em>, and that just like the number of intentional uses, the number of accidental uses in increasing in tandem with the tools&#8217; growing reach, range, speed, popularity, ease of use, market penetration, protocol and network compatibility, interchangeability, user loyalty and the like, plus their shrinking costs, sizes, power profiles, new-user learning curves, and detectability by Powers That Be and Pointy-Haired Bosses.</p><p>Let&#8217;s hope that&#8217;s enough to make the modern makers of mass misery not just obsolete, <em>but impossible</em>.</p><p>But if it&#8217;s not enough, what&#8217;s coming is distributed, peer-to-peer, organic, cypherpunk- and crypto-anarchist-created Facebook- and Twitter-like social networking and communication services that support unbreakable hard encryption, market-produced unfalsifiable digital identity management, mathematically guaranteed transactional and locational anonymity by default or at will, untraceable anonymous digital bearer certificate trading networks and, of course, <a
href="http://www.anti-state.com/vroman/vroman8.html">assassination markets</a>.</p><p>And when <em>those</em> things launch, they&#8217;re going to launch on all channels. Linux clients? You betcha! MAC OS X? Yes we can! Windows Vista? <em>¡Viva Bill Gates!</em> Official Apple iStore version for iPhone? Gosh yes! But it doesn&#8217;t stop there, of course &#8212; there will be interfaces and gateways springing up on everything from your old-school two-way pager to instant messaging services like ICQ, AIM, MSN, Google Talk, Skype, Gadu-gadu and all the rest. Plugins and widgets and gizmos and HUDs for Counterstrike and World of Warcraft and Second Life and Runescape. Classified ads in the local advertising circular. Newsletters and forms by post. Scratch-off cards in cereal boxes. And nice men and women at church or in cafes who field requests and handle messages into and out of the darknet for the benefit of those who can&#8217;t manage the tech themselves.</p><p>To troops everywhere: think about getting into a new line of work.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/assassination-market/" title="assassination market" rel="tag">assassination market</a>, <a
href="http://www.nostate.com/tag/crypto-anarchy/" title="crypto-anarchy" rel="tag">crypto-anarchy</a>, <a
href="http://www.nostate.com/tag/encryption/" title="encryption" rel="tag">encryption</a>, <a
href="http://www.nostate.com/tag/facebook/" title="Facebook" rel="tag">Facebook</a>, <a
href="http://www.nostate.com/tag/iphone/" title="iPhone" rel="tag">iPhone</a>, <a
href="http://www.nostate.com/tag/military/" title="military" rel="tag">military</a>, <a
href="http://www.nostate.com/tag/social-networking/" title="social networking" rel="tag">social networking</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/2858/can-the-military-coexist-with-social-networking-sites/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Motorhome Diaries crew facing fresh border thuggery</title><link>http://www.nostate.com/2851/motorhome-diaries-crew-facing-fresh-border-thuggery/</link> <comments>http://www.nostate.com/2851/motorhome-diaries-crew-facing-fresh-border-thuggery/#comments</comments> <pubDate>Mon, 03 Aug 2009 22:22:44 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[activism]]></category> <category><![CDATA[police]]></category> <category><![CDATA[border]]></category> <category><![CDATA[Canada]]></category> <category><![CDATA[homeland security]]></category> <category><![CDATA[Jason Talley]]></category> <category><![CDATA[MHD]]></category> <category><![CDATA[Motorhome Diaries]]></category> <category><![CDATA[Pete Eyre]]></category> <category><![CDATA[Twitter]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=2851</guid> <description><![CDATA[At least for the moment, Jason Talley still has Twitter access. I&#8217;m unlikely to be able to follow this closely, so follow Jason on Twitter (@JDTalley) and Pete (@peteeyre) if you haven&#8217;t already. Also, tracking the #MHD tag on Twitter is a way to get the news, especially if the boys go silent. From Jason&#8217;s [...]]]></description> <content:encoded><![CDATA[<p>At least for the moment, Jason Talley still has Twitter access.</p><p>I&#8217;m unlikely to be able to follow this closely, so follow Jason on Twitter (<a
rel="nofollow" href="http://twitter.com/JDTalley">@JDTalley</a>) and Pete (<a
rel="nofollow" href="http://twitter.com/peteeyre">@peteeyre</a>) if you haven&#8217;t already. Also, tracking the <a
rel="nofollow" href="http://twitter.com/#search?q=%23MHD">#MHD</a> tag on Twitter is a way to get the news, especially if the boys go silent.</p><p>From Jason&#8217;s tweets, reverse-chronological:</p><ol><li
id="status_3112110220">We will now be escorted into a new holding area. This time it&#8217;s the U.S. government. 16 minutes ago</li><li
id="status_3112060875">Reinforcements have been called. Homeland Security vehicle is now blocking MARV. 19 minutes ago</li><li
id="status_3112028281">U.S. Border Guard told @<a
rel="nofollow" href="http://twitter.com/peteeyre">peteeyre</a> to stop recording or his camera would be confiscated. 21 minutes ago</li><li
id="status_3112006226">Now we are getting hassled by U.S. Border Guards in Detroit. #MHD 23 minutes ago</li><li
id="status_3110350363"><a
href="http://motorhomediaries.com/canada-border/">Canadian border guards</a> are tossing our motorhome again. I just cleaned it. about 2 hours ago</li><li
id="status_3110333833">We&#8217;re in the no man&#8217;s land between Detroit and Windsor, Canada&#8230; on accident. Wrong turns suck. about 2 hours ago</li></ol><p>Gak.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/border/" title="border" rel="tag">border</a>, <a
href="http://www.nostate.com/tag/canada/" title="Canada" rel="tag">Canada</a>, <a
href="http://www.nostate.com/tag/homeland-security/" title="homeland security" rel="tag">homeland security</a>, <a
href="http://www.nostate.com/tag/jason-talley/" title="Jason Talley" rel="tag">Jason Talley</a>, <a
href="http://www.nostate.com/tag/mhd/" title="MHD" rel="tag">MHD</a>, <a
href="http://www.nostate.com/tag/motorhome-diaries/" title="Motorhome Diaries" rel="tag">Motorhome Diaries</a>, <a
href="http://www.nostate.com/tag/pete-eyre/" title="Pete Eyre" rel="tag">Pete Eyre</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/2851/motorhome-diaries-crew-facing-fresh-border-thuggery/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>ACLU #twitterfail</title><link>http://www.nostate.com/2098/aclu-twitterfail/</link> <comments>http://www.nostate.com/2098/aclu-twitterfail/#comments</comments> <pubDate>Thu, 28 May 2009 06:17:04 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[mind control]]></category> <category><![CDATA[rape]]></category> <category><![CDATA[servitude]]></category> <category><![CDATA[slavery]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[Washington]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=2098</guid> <description><![CDATA[Via Twitter, the ACLU of the state of Washington urges: Also thank Governor Gregoire and legislators for adopting the &#8220;Fair Play in Community Sports&#8221; bill. http://bit.ly/DGPvc Seriously this is weird, from my rarefied perspective. So, there&#8217;s this guy who comes around and rapes me twice a week for the past year&#8230; And one day I [...]]]></description> <content:encoded><![CDATA[<p>Via Twitter, the ACLU of the state of Washington urges:</p><p
style="padding-left: 30px;">Also thank Governor Gregoire and legislators for adopting the &#8220;Fair Play in Community Sports&#8221; bill. <a
rel="nofollow" href="http://bit.ly/DGPvc" target="_blank">http://bit.ly/DGPvc</a></p><p><span
class="status-body"><span
class="entry-content">Seriously this is weird, from my rarefied perspective.</span></span></p><p>So, there&#8217;s this guy who comes around and rapes me twice a week for the past year&#8230;</p><p>And one day I notice he hasn&#8217;t been around for a few months.</p><p>What do I do now? Send him a fucking fruit basket?</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/rape/" title="rape" rel="tag">rape</a>, <a
href="http://www.nostate.com/tag/servitude/" title="servitude" rel="tag">servitude</a>, <a
href="http://www.nostate.com/tag/slavery/" title="slavery" rel="tag">slavery</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a>, <a
href="http://www.nostate.com/tag/washington/" title="Washington" rel="tag">Washington</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/2098/aclu-twitterfail/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>The Revolution Will Not Be Televised</title><link>http://www.nostate.com/2029/the-revolution-will-not-be-televised/</link> <comments>http://www.nostate.com/2029/the-revolution-will-not-be-televised/#comments</comments> <pubDate>Tue, 19 May 2009 22:45:40 +0000</pubDate> <dc:creator>Mike Gogulski</dc:creator> <category><![CDATA[art]]></category> <category><![CDATA[Dead Kennedys]]></category> <category><![CDATA[Disposable Heroes of Hiphoprisy]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Gil Scott-Heron]]></category> <category><![CDATA[liberation]]></category> <category><![CDATA[music]]></category> <category><![CDATA[revolution]]></category> <category><![CDATA[television]]></category> <category><![CDATA[Twitter]]></category> <category><![CDATA[video]]></category> <guid
isPermaLink="false">http://www.nostate.com/?p=2029</guid> <description><![CDATA[Maybe so. But in 2009, you can bet your sweet bippy it&#8217;s gonna be YouTube&#8217;d, Twittered and Facebooked all over the freaking planet. Unable to find the version by The Disposable Heroes of Hiphoprisy (1990?), which was my first exposure to this wonderful work, I present a fine mashup of the original track by Gil [...]]]></description> <content:encoded><![CDATA[<p>Maybe so. But in 2009, you can bet your sweet bippy it&#8217;s gonna be YouTube&#8217;d, Twittered and Facebooked all over the freaking planet.</p><p>Unable to find the version by The Disposable Heroes of Hiphoprisy (1990?), which was my first exposure to this wonderful work, I present a fine mashup of the <a
href="http://www.youtube.com/watch?v=BS3QOtbW4m0">original track by Gil Scott-Heron</a> (1970) together with &#8220;California über Alles&#8221; (1979) by the Dead Kennedys, <a
href="http://www.nostate.com/1031/california-uber-alles/">previously featured at this very blog</a> in its later &#8220;We&#8217;ve Got a Bigger Problem Now&#8221; remake verson.</p><p> <object
width="425" height="344" data="http://www.youtube.com/v/jD3m71nVr1Y&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param
name="allowFullScreen" value="true" /><param
name="allowscriptaccess" value="always" /><param
name="src" value="http://www.youtube.com/v/jD3m71nVr1Y&amp;hl=en&amp;fs=1" /><param
name="allowfullscreen" value="true" /></object></p><p>Scott-Heron&#8217;s original lyrics, from his site:</p><p><a
href="http://www.gilscottheron.com/revnottel.mp3">The Revolution Will Not Be Televised</a></p><p>You will not be able to stay home, brother.<br
/> You will not be able to plug in, turn on and cop out.<br
/> You will not be able to lose yourself on skag and skip,<br
/> Skip out for beer during commercials,<br
/> Because the revolution will not be televised.</p><p>The revolution will not be televised.<br
/> The revolution will not be brought to you by Xerox<br
/> In 4 parts without commercial interruptions.<br
/> The revolution will not show you pictures of Nixon<br
/> blowing a bugle and leading a charge by John<br
/> Mitchell, General Abrams and Spiro Agnew to eat<br
/> hog maws confiscated from a Harlem sanctuary.<br
/> The revolution will not be televised.</p><p>The revolution will not be brought to you by the <br
/> Schaefer Award Theatre and will not star Natalie<br
/> Woods and Steve McQueen or Bullwinkle and Julia.<br
/> The revolution will not give your mouth sex appeal.<br
/> The revolution will not get rid of the nubs.<br
/> The revolution will not make you look five pounds<br
/> thinner, because the revolution will not be televised, Brother.</p><p>There will be no pictures of you and Willie May<br
/> pushing that shopping cart down the block on the dead run,<br
/> or trying to slide that color television into a stolen ambulance.<br
/> NBC will not be able predict the winner at 8:32<br
/> or report from 29 districts.<br
/> The revolution will not be televised.</p><p>There will be no pictures of pigs shooting down<br
/> brothers in the instant replay.<br
/> There will be no pictures of pigs shooting down<br
/> brothers in the instant replay.<br
/> There will be no pictures of Whitney Young being<br
/> run out of Harlem on a rail with a brand new process.<br
/> There will be no slow motion or still life of Roy<br
/> Wilkens strolling through Watts in a Red, Black and<br
/> Green liberation jumpsuit that he had been saving<br
/> For just the proper occasion.</p><p>Green Acres, The Beverly Hillbillies, and Hooterville<br
/> Junction will no longer be so damned relevant, and<br
/> women will not care if Dick finally gets down with<br
/> Jane on Search for Tomorrow because Black people<br
/> will be in the street looking for a brighter day.<br
/> The revolution will not be televised.</p><p>There will be no highlights on the eleven o&#8217;clock<br
/> news and no pictures of hairy armed women<br
/> liberationists and Jackie Onassis blowing her nose.<br
/> The theme song will not be written by Jim Webb,<br
/> Francis Scott Key, nor sung by Glen Campbell, Tom<br
/> Jones, Johnny Cash, Englebert Humperdink, or the Rare Earth.<br
/> The revolution will not be televised.</p><p>The revolution will not be right back after a message<br
/> bbout a white tornado, white lightning, or white people.<br
/> You will not have to worry about a dove in your<br
/> bedroom, a tiger in your tank, or the giant in your toilet bowl.<br
/> The revolution will not go better with Coke.<br
/> The revolution will not fight the germs that may cause bad breath.<br
/> The revolution will put you in the driver&#8217;s seat.</p><p>The revolution will not be televised, will not be televised,<br
/> will not be televised, will not be televised.<br
/> The revolution will be no re-run brothers;<br
/> The revolution will be live.</p> <br
/>Tags: <a
href="http://www.nostate.com/tag/dead-kennedys/" title="Dead Kennedys" rel="tag">Dead Kennedys</a>, <a
href="http://www.nostate.com/tag/disposable-heroes-of-hiphoprisy/" title="Disposable Heroes of Hiphoprisy" rel="tag">Disposable Heroes of Hiphoprisy</a>, <a
href="http://www.nostate.com/tag/facebook/" title="Facebook" rel="tag">Facebook</a>, <a
href="http://www.nostate.com/tag/gil-scott-heron/" title="Gil Scott-Heron" rel="tag">Gil Scott-Heron</a>, <a
href="http://www.nostate.com/tag/liberation/" title="liberation" rel="tag">liberation</a>, <a
href="http://www.nostate.com/tag/music/" title="music" rel="tag">music</a>, <a
href="http://www.nostate.com/tag/revolution/" title="revolution" rel="tag">revolution</a>, <a
href="http://www.nostate.com/tag/television/" title="television" rel="tag">television</a>, <a
href="http://www.nostate.com/tag/twitter/" title="Twitter" rel="tag">Twitter</a>, <a
href="http://www.nostate.com/tag/video/" title="video" rel="tag">video</a><br
/> ]]></content:encoded> <wfw:commentRss>http://www.nostate.com/2029/the-revolution-will-not-be-televised/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <enclosure
url="http://www.gilscottheron.com/revnottel.mp3" length="969587" type="audio/mpeg" /> </item> </channel> </rss>
