<?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>This Just-in!</title>
	<atom:link href="http://justinholmes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://justinholmes.com</link>
	<description></description>
	<lastBuildDate>Sun, 04 Jul 2010 23:08:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>A rare example of &#8220;magic&#8221; and Gnosticism in Django</title>
		<link>http://justinholmes.com/2010/07/a-rare-example-of-magic-and-gnosticism-in-django/</link>
		<comments>http://justinholmes.com/2010/07/a-rare-example-of-magic-and-gnosticism-in-django/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 22:57:51 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[About Justin]]></category>
		<category><![CDATA[Original Writing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Very Cool]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=817</guid>
		<description><![CDATA[Among my personal friends, I don&#8217;t think it&#8217;s any secret that Django is currently my favorite web framework.  In particular, Django has what I believe to be the very most important element that a MVC framework can have &#8211; a solid, consistent philosophy that developers can adopt, meditate on, and integrate into their thinking as [...]]]></description>
			<content:encoded><![CDATA[<p>Among my personal friends, I don&#8217;t think it&#8217;s any secret that Django is currently my favorite web framework.  In particular, Django has what I believe to be the very most important element that a MVC framework can have &#8211; a solid, consistent philosophy that developers can adopt, meditate on, and integrate into their thinking as they proceed through any project.</p>
<p>One of the tenets of Django (albeit not a &#8220;top-level&#8221; holding like DRY, OaoO, minimal code, explicit over implicit, etc.) is that Django declines to use &#8220;Magic&#8221; unless it is overwhelmingly easier than the mundane solution that it replaces.  Django also veers toward the agnostic &#8211; meaning that one can use any naming paradigm, template strategy, URL convention, etc.</p>
<p>Exactly what techniques constitute &#8220;Magic&#8221; may be in the eye of the beholder, but generally we think of magic encompassing those techniques that are not part of a programming paradigm, but that work anyway &#8220;just because.&#8221;  Gnosticism, on the other hand, is pretty obvious when it rears itself: If you MUST use jQuery or you MUST name every variable drupal.something, you know that you are not working with an agnostic framework.</p>
<p>The SlashRoot team is currently working on a great project for Carbon Ads &#8211; a project that aims to enable small publishers to collectively sell ad space to pre-vetted, exclusive, and otherwise unattainable advertisers.  Think Adsense meets your favorite organic co-op.</p>
<p>Among the interesting elements to tackle in Django, as is often challenging in MVC frameworks, in the question of how to model different types of users.</p>
<p>The lazy (inorganic) way, of course, is to simply apply a &#8220;type&#8221; attribute to the user model and then ForeignKey each individual user class.  However, this leaves tremendous room for error.  For example (and this example in fact has come up in this project) &#8211; what if the developer creating the &#8220;admin&#8221; model has a different idea of how to track names than the developer creating the &#8220;publisher&#8221; model &#8211; may one of them thinks that the full name belongs in a single field while the other separates first and last names.  This is a major problem for any page that lists all users by real name.</p>
<p>To me, the most organic solution is to separate elements into two categories: Those that two or more classes of people have vs. those that only one class of people has.  That way, the attributes in the former category can be assigned to a parent class (perhaps as an optional field) while the latter can belong exclusively in a child class, on a separate database table to enhance performance.</p>
<p>So, how does Django treat this contingency?  With magic, I&#8217;m afraid.</p>
<p>The Django <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#id7">documentation on this point</a> suggests using the &#8220;lower case&#8221; name of the class in question, which has two deviations from the general Django philosophy:</p>
<p>1) It is gnostic, plain and simple.  It assumes that you have adopted upper-case or CamelCase naming conventions for your models, and that you can use lowercase as an alternative.</p>
<p>2) It seems to me to be magic.  There is no *reason* why the lower-case class name should refer to the logical question of whether or not an object is in a child class of a parent model.  It just&#8230;. works.</p>
<p>Mind you, I can deal with both these issues.  I think that the &#8220;magic&#8221; issue is of more concern to the programming purist, because it can be genuinely confusing.  Case in point, I actually had to wonder how to access the &#8220;not magic&#8221; of this solution &#8211; although &#8220;if not someobject.somelowercaseclass&#8221; does in fact return TRUE for objects outside the child class in question, it took me some time to wrap my head around this, simply because &#8220;someobject.somelowercaseclass&#8221; is not instinctively a logical value to me &#8211; the &#8220;magic&#8221; distracted my view for a moment.</p>
<p>Thus, I had this interesting (and perhaps telling, I think) exchange in #django:</p>
<blockquote>
<div id="magicdomid799"><em>&lt;jMyles&gt; Philosophical  question:  Does the ability to ask for a child class with lower-case  lettering represent &#8220;magic&#8221;?  (see: <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#id7%29">http://docs.djangoproject.com/en/dev/topics/db/models/#id7)</a></em></div>
<div id="magicdomid806"><em>&lt;jMyles&gt; To rephrase my  question: Is the use of a lowercase letter to inquire about a  child-class part of an established programming technique?  Or is it a  (rare) example of magic in Django?</em></div>
<div id="magicdomid783"><em>&lt;igloo_x&gt;  jMyles&gt; what do you mean &#8220;child class&#8221;</em></div>
<div id="magicdomid768"><em>&lt;jMyles&gt; igloo_x:  Actually I mean child model</em></div>
<div id="magicdomid769"><em>&lt;jMyles&gt;  igloo_x: Like &#8220;Restaurant&#8221; becomes &#8220;restaurant&#8221; in the test in this  example: <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#id7">http://docs.djangoproject.com/en/dev/topics/db/models/#id7</a></em></div>
<div id="magicdomid797"><em>&lt;jMyles&gt; igloo_x: Also,  in that example, how can I ask if the object is NOT in the child class  &#8220;restaurant&#8221;?</em></div>
<div id="magicdomid772"><em>&lt;jMyles&gt; igloo_x: I&#8217;m  looking at the third code block down from that link &#8211; &#8220;If you have a  Place  that is also a Restaurant, you can get from the Place object to  the Restaurant  object by using the lower-case version of the model  name:&#8221;</em></div>
<div id="magicdomid795"><em>&lt;igloo_x&gt; it&#8217;s magic, as  far as I know. you can override it though. I think the argument is  &#8216;related_name&#8217; or something</em></div>
<div id="magicdomid776"><em>&lt;jMyles&gt;  igloo_x: OK, that&#8217;s what I thought.  <img src='http://justinholmes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   And then, how can I ask if an  object is NOT in that class?</em></div>
<div id="magicdomid777"><em>&lt;jMyles&gt;  igloo_x: ie, &#8220;if p.restaurant:&#8221; works fine, but how can I ask if it is  not in that child class?</em></div>
<div id="magicdomid778"><em>&lt;igloo_x&gt;  i&#8217;m not sure about that, I&#8217;ve never messed with model inheritance  before</em></div>
<div id="magicdomid779"><em>&lt;igloo_x&gt; does &#8220;if not  p.restaurant:&#8221; work though?</em></div>
<div id="magicdomid780"><em>&lt;jMyles&gt;  igloo_x: wow.  yes it does &#8211; mad overthinking on my part.</em></div>
<div id="magicdomid781"><em>&lt;igloo_x&gt; good old  python!</em></div>
</blockquote>
<div>Good old Python indeed.  And therein I think lies the deeper truth: No matter what framework we use, it is imperative that developers adopt the philosophy of the language on which that framework is built, even if this means some extra time studying, sitting quietly, talking with friends, etc.</div>
<div>If I had allowed my mind to relax for a few minutes and really thought about the *context* in which this unexpected &#8220;magic&#8221; had arisen, surely my mind knew the way out of the situation.  That is the true developer discipline that is yet ahead for me.</div>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/07/a-rare-example-of-magic-and-gnosticism-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google did nothing wrong by collecting wifi data with the streetcar.</title>
		<link>http://justinholmes.com/2010/06/google-did-nothing-wrong-by-collective-wifi-data-with-the-streetcar/</link>
		<comments>http://justinholmes.com/2010/06/google-did-nothing-wrong-by-collective-wifi-data-with-the-streetcar/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 17:41:42 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Censorship]]></category>
		<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Corporate Media]]></category>
		<category><![CDATA[Justice]]></category>
		<category><![CDATA[Original Writing]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Technology Freedom]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=806</guid>
		<description><![CDATA[Can somebody please explain what Google did wrong?
They drove around with a car, taking photos of the public surroundings of their car (that&#8217;s how they make StreetView).  While so doing, they picked up and recorded whatever wireless signals were coming in to their car.
Now people are whining that they are being spied upon.
Does anybody really [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://justinholmes.com/wp-content/uploads/2010/06/3033520.bin_.jpeg"><img class="size-medium wp-image-807 alignright" title="3033520.bin" src="http://justinholmes.com/wp-content/uploads/2010/06/3033520.bin_-300x201.jpg" alt="3033520.bin" width="300" height="201" /></a>Can somebody please explain what Google did wrong?</p>
<p>They drove around with a car, taking photos of the public surroundings of their car (that&#8217;s how they make StreetView).  While so doing, they picked up and recorded whatever wireless signals were coming in to their car.</p>
<p>Now people are whining that they are being spied upon.</p>
<p>Does anybody really think that preventing this kind of conduct has anything to do with making our communities secure against unwanted surveillance?  Is this line of defense the best we&#8217;ve got?</p>
<p>If you stand at your doorway, yelling at the top of your lungs about many intimate, private details of your life, is it fair to accuse a passerby of illegal (or unethical) surveillance because they happen to be recording their surroundings with an audio recorder?</p>
<p><a href="http://latimesblogs.latimes.com/technology/2010/05/legislators-grill-google-eric-schmidt-on-spyfi-privacy-issue.html">Do you think that members of congress will rally to your defense, accusing those same pedestrians of spying on you?</a></p>
<p>There are plenty of very secure options for wireless communication.  If you aren&#8217;t using any of them, that&#8217;s your prerogative.  If you abstain from secure practices while at the same time communicating about sensitive issues which you bizarrely regard as private, that&#8217;s your problem.</p>
<p>On the bigger issue of Google being a scary monster of information collection&#8230; Sure, I see your point.  While on one hand, the information they collect is, in every practice I know of, voluntary (search phrases, email contents on Gmail, advertising clicks, cookies, the Google Toolbar, and many other methods), it&#8217;s not any less scary that they know more than anybody else about the modern polity.</p>
<p>I&#8217;m not usually a defender of google or any other giant corporation &#8211; I&#8217;ve expressed my fair share of google skepticism.  In this case, I think they&#8217;ve actually done wrong by <a href="http://googleblog.blogspot.com/2010/05/wifi-data-collection-update.html">repeatedly apologizing</a>, but I guess that&#8217;s a PR move.</p>
<p>Nevertheless, their amazing (and thankless!) gift two weeks ago of <a href="http://www.webmproject.org/users/">releasing the VP8 codec to the public domain under an open source license</a> was perhaps the single most significant act of bolstering independent radical journalism in the (still short) history of website-based video delivery.  Still not as profound as the movement that <a href="http://getmiro.com">Miro</a> represents, I&#8217;ll grant, but big (and a LOT more expensive).</p>
<p>To my mind, Google gave us as $124.6 million dollar gift, and I think we have a responsibility to accept it in full if we want to take advantage of it. That means in turn taking full responsibility for our network presence.  If your upload stream includes poignant, radical, inspirational content encoded in a free codec for the world to cherish, good.  If your upload stream (and wireless connection) includes unencrypted content that you irrationally regard as private, bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/06/google-did-nothing-wrong-by-collective-wifi-data-with-the-streetcar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Holy. Fuck. Animal Cruelty.</title>
		<link>http://justinholmes.com/2010/05/holy-fuck-animal-cruelty/</link>
		<comments>http://justinholmes.com/2010/05/holy-fuck-animal-cruelty/#comments</comments>
		<pubDate>Wed, 26 May 2010 19:15:42 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Environment]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=801</guid>
		<description><![CDATA[I only watched the first 17 seconds of this video.  I was unable to watch more.
Click here to view the embedded video.
I have emailed Mercy for Animals, the publisher of the video, asking for the names of people involved.
UPDATE:One of those featured in the video is Billy Joe Gregg Jr., who has been charged [...]]]></description>
			<content:encoded><![CDATA[<p>I only watched the first 17 seconds of this video.  I was unable to watch more.</p>
<a href="http://justinholmes.com/2010/05/holy-fuck-animal-cruelty/"><em>Click here to view the embedded video.</em></a>
<p>I have emailed Mercy for Animals, the publisher of the video, asking for the names of people involved.</p>
<p><strong>UPDATE:</strong>One of those featured in the video is Billy Joe Gregg Jr., who has been charged with 12 counts of animal cruelty.  Each carries a measly maximum sentence of 90 days in jail.  I can&#8217;t find a phone number for this scumbag, but if somebody does, please post it so we can be sure to let him know how we feel.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/05/holy-fuck-animal-cruelty/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Faulty Thinking Syndrome</title>
		<link>http://justinholmes.com/2010/05/faulty-thinking-syndrome/</link>
		<comments>http://justinholmes.com/2010/05/faulty-thinking-syndrome/#comments</comments>
		<pubDate>Fri, 14 May 2010 21:21:44 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Psychedelic Mind]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=797</guid>
		<description><![CDATA[Very powerful.
Click here to view the embedded video.
]]></description>
			<content:encoded><![CDATA[<p>Very powerful.</p>
<a href="http://justinholmes.com/2010/05/faulty-thinking-syndrome/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/05/faulty-thinking-syndrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Obama says something that impresses me</title>
		<link>http://justinholmes.com/2010/05/obama-says-something-that-impresses-me/</link>
		<comments>http://justinholmes.com/2010/05/obama-says-something-that-impresses-me/#comments</comments>
		<pubDate>Fri, 14 May 2010 20:40:10 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Corporate Media]]></category>
		<category><![CDATA[Obama]]></category>
		<category><![CDATA[Very Cool]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=791</guid>
		<description><![CDATA[I am no Obama fan &#8211; my readers know that pretty well.  However, he used to (pre-2004ish) occasionally say things that impressed me a lot.
Check out this short clip.  It contains perhaps the best line delivered by a President in my life time &#8211; it&#8217;s from March of last year, but I hadn&#8217;t seen it [...]]]></description>
			<content:encoded><![CDATA[<p>I am no Obama fan &#8211; my readers know that pretty well.  However, he used to (pre-2004ish) occasionally say things that impressed me a lot.</p>
<p>Check out this short clip.  It contains perhaps the best line delivered by a President in my life time &#8211; it&#8217;s from March of last year, but I hadn&#8217;t seen it until now.</p>
<a href="http://justinholmes.com/2010/05/obama-says-something-that-impresses-me/"><em>Click here to view the embedded video.</em></a>
<p>It seems that he got a question that didn&#8217;t have a pre-fab answer in the corporate war machine script, so he had to kinda adlib.</p>
<p>Is there a more important maxim for a President (or any decision maker)  than knowing what he or she is talking about?  It has become fashionable  to be immediate and wrong instead of deliberative and right.  Only  after adopting the latter habit can a person develop a worldview and  moral compass on which to act.  Perhaps we can yet expect these to  emerge in the Obama administration.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/05/obama-says-something-that-impresses-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What ever happened to Paul Schene?</title>
		<link>http://justinholmes.com/2010/03/what-ever-happened-to-paul-schene/</link>
		<comments>http://justinholmes.com/2010/03/what-ever-happened-to-paul-schene/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:39:05 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Original Writing]]></category>
		<category><![CDATA[Police Brutality]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=780</guid>
		<description><![CDATA[Do you know that name?  Paul Schene?
It&#8217;s not really a name worth remembering, as the person who is identified by that name is not worth the oxygen that he removes from the atmosphere during respiration.
Paul Schene is the criminal scumbag who beat the shit out of a 15-year old girl and dragged her around [...]]]></description>
			<content:encoded><![CDATA[<p>Do you know that name?  Paul Schene?</p>
<p>It&#8217;s not really a name worth remembering, as the person who is identified by that name is not worth the oxygen that he removes from the atmosphere during respiration.</p>
<p>Paul Schene is the criminal scumbag who beat the shit out of a 15-year old girl and dragged her around by her hair in Seattle <a href="http://justinholmes.com/2009/02/shocking-police-brutality-against-15-year-old/">(warning: shocking video)</a>.  He also happens to be a police officer, suckling on the public teet to feed himself between abusive episodes.  Oh, and he&#8217;s possibly also a murderer, as I discovered (<a href="http://www.huffingtonpost.com/2009/02/28/paul-schene-king-county-d_n_170786.html">and put the Huffington Post onto</a>) a year ago today.</p>
<p>As far as I know, he hasn&#8217;t yet departed the mortal coil and departed for hell yet, so I&#8217;m wondering: does anybody know where he is now?</p>
<p>I just emailed Sgt. Sean Whitcomb, the media relations director for the Seattle PD:</p>
<p><em><br />
</em></p>
<blockquote><p><em>Hello there &#8211; I&#8217;m a journalist from New York.  I&#8217;m just wondering &#8211; what ever happened to Paul Schene?  Is he still on administrative leave?  If so, is it paid or unpaid?  Has the case against him progressed at all? </em></p></blockquote>
<p><em> </em></p>
<p><del datetime="2010-03-03T13:23:20+00:00">I&#8217;ll let you know if he responds.</del> Sgt. Whitcomb had this to say:</p>
<p><em><br />
</em></p>
<blockquote><p><em>Hey Justin,</em></p>
<p><em>I work for the Seattle Police Department.  Paul Schene formerly worked for the King County Sheriff’s Office.  I believe he was fired, charged, acquitted by “hung jury” and awaiting retrial.  Call either KCSO or check the Seattle Times for the latest updates.</em></p>
<p><em>Best regards,</em></p>
<p><em>Sean</em></p></blockquote>
<p><em> </em></p>
<p>&#8230;..so, I&#8217;ve emailed the only email address I can find for the KCSO (sheriff@kingcounty.gov) and asked the same question.</p>
<p><strong>Another Update:</strong></p>
<p><span style="color: #000000;">Sgt. Jim Laing of the King&#8217;s County Sheriff&#8217;s Office says:<br />
</span></p>
<p><span style="color: #000000;"><span style="font-size: 10pt; font-family: Arial;">Paul Schene was terminated for cause by the Sheriff on September 9, 2009 after an internal investigation. He was charged with assault and tried  in January, 2010. This resulted in a mistrial. He is to be tried again on  June 1, 2010.</span></span></p>
<h3><span style="color: #000000;"><span style="font-size: 10pt; font-family: Arial;">Also:</span></span></h3>
<p><span style="color: #000000;"><span style="font-size: 10pt; font-family: Arial;">I am getting quite a lot of traffic for the search phrase &#8220;Paul Schene.&#8221;  I have checked and in fact this page is the #1 search result for that phrase.  I surmise that Paul has now read this article.  So, Mr. Schene, what say you?  I want to offer you the opportunity to be seen as a human being and begin to clean up your tarnished name.  I&#8217;ll post whatever response you have &#8211; front, top, and center of this post &#8211; if you send it immediately.  If, on the other hand, you wait until the end of your trial in an effort to &#8220;decline to speak while legal action is pending,&#8221; an excuse I find detestable, you will lose this opportunity to control the content that is most strongly associated with your name in the world.  I suggest starting with a sincere apology.  Email me at justin@justinholmes.com.<br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2010/03/what-ever-happened-to-paul-schene/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Eric Sterling at UConn SSDP April 2009</title>
		<link>http://justinholmes.com/2009/12/eric-sterling-at-uconn-ssdp-april-2009/</link>
		<comments>http://justinholmes.com/2009/12/eric-sterling-at-uconn-ssdp-april-2009/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 03:46:46 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Drug Policy]]></category>
		<category><![CDATA[Drugs]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Justice]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Psychedelic Mind]]></category>
		<category><![CDATA[Racism]]></category>
		<category><![CDATA[Very Cool]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=774</guid>
		<description><![CDATA[UConn SSDP had a really cool (and under-reported) pre-conference to SSDP&#8217;s Northeast Regional Conference in April.
Several of &#8220;the usual suspects,&#8221; including myself, spoke.  There&#8217;s no doubt, though, that Eric Sterling stole the show.  I have seen him speak 10+ times, and he is one of the best and most engaging public speakers I [...]]]></description>
			<content:encoded><![CDATA[<p>UConn SSDP had a really cool (and under-reported) pre-conference to SSDP&#8217;s Northeast Regional Conference in April.</p>
<p>Several of &#8220;the usual suspects,&#8221; including myself, spoke.  There&#8217;s no doubt, though, that <strong>Eric Sterling</strong> stole the show.  I have seen him speak 10+ times, and he is one of the best and most engaging public speakers I have ever been exposed to.  Fortunately my camera was rolling:</p>
<a href="http://justinholmes.com/2009/12/eric-sterling-at-uconn-ssdp-april-2009/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/12/eric-sterling-at-uconn-ssdp-april-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Software and Drug Policy Reform &#8211; my presentation at the DPA conference in Albuquerque</title>
		<link>http://justinholmes.com/2009/12/free-software-and-drug-policy-reform-my-presentation-at-the-dpa-conference-in-albuquerque/</link>
		<comments>http://justinholmes.com/2009/12/free-software-and-drug-policy-reform-my-presentation-at-the-dpa-conference-in-albuquerque/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 01:29:22 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Drugs]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Original Writing]]></category>
		<category><![CDATA[Police Watching]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Psychedelic Mind]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Technology Freedom]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Video Blog]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=766</guid>
		<description><![CDATA[I was honored to be invited to speak at a very small panel at the largest and most prestigious gathering of experts in the fields of drugs and drug policy &#8211; the drug policy alliance biennial conference.  I spoke about the free software movement&#8217;s view of cognitive liberty, and why the drug policy reform [...]]]></description>
			<content:encoded><![CDATA[<p>I was honored to be invited to speak at a very small panel at the largest and most prestigious gathering of experts in the fields of drugs and drug policy &#8211; the <a href="http://drugpolicy.org">drug policy alliance</a> biennial conference.  I spoke about the <b>free software movement&#8217;s view of cognitive liberty</b>, and why the drug policy reform movement is a natural ally for free and open source software.<br />
<a href="http://justinholmes.com/2009/12/free-software-and-drug-policy-reform-my-presentation-at-the-dpa-conference-in-albuquerque/"><em>Click here to view the embedded video.</em></a></p>
<p>&#8230;.now before you jump on me about the &#8220;order of magnitude&#8221; comment with encryption &#8211; I fully realize that with increasing strength that decryption becomes <i>several</i> orders of magnitude more difficult, but as this was not a technology conference, I didn&#8217;t want to belabor the point.  <img src='http://justinholmes.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/12/free-software-and-drug-policy-reform-my-presentation-at-the-dpa-conference-in-albuquerque/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lord of the Rings Time Flow Map</title>
		<link>http://justinholmes.com/2009/11/lord-of-the-rings-time-flow-map/</link>
		<comments>http://justinholmes.com/2009/11/lord-of-the-rings-time-flow-map/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 06:12:21 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Psychedelic Mind]]></category>
		<category><![CDATA[Very Cool]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=764</guid>
		<description><![CDATA[This is one of the coolest pieces of informative art I&#8217;ve ever seen.
If you are even remotely interested in the Lord of Rings Story, you must have a look:

]]></description>
			<content:encoded><![CDATA[<p>This is one of the coolest pieces of informative art I&#8217;ve ever seen.</p>
<p>If you are even remotely interested in the Lord of Rings Story, you must have a look:</p>
<p><a href="http://xkcd.com/657/large/"><img src="http://imgs.xkcd.com/comics/movie_narrative_charts_large.png" width="400px"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/11/lord-of-the-rings-time-flow-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SICK sit-in at Lieberman&#8217;s office</title>
		<link>http://justinholmes.com/2009/11/sick-sit-in-at-liebermans-office/</link>
		<comments>http://justinholmes.com/2009/11/sick-sit-in-at-liebermans-office/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:29:14 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Health Care]]></category>
		<category><![CDATA[Pharmaceutical Industry]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=762</guid>
		<description><![CDATA[So, I&#8217;m definitely not an advocate of government health care (see my last post proposing a republican vision of health care), but I really definitely can&#8217;t stand Joe Lieberman.  Some activists (and friends of mine) from UConn staged a really sweet sit-in, unto getting arrested and simultaneously singing.
This is one of the best sit-in [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;m definitely not an advocate of government health care <a href="http://justinholmes.com/2009/10/resistors-of-socialized-medicine-must-offer-a-more-systemic-vision-of-health-care/">(see my last post proposing a republican vision of health care)</a>, but I really definitely can&#8217;t stand Joe Lieberman.  Some activists (and friends of mine) from UConn staged a really sweet sit-in, unto getting arrested and simultaneously singing.</p>
<p>This is one of the best sit-in videos this year.</p>
<a href="http://justinholmes.com/2009/11/sick-sit-in-at-liebermans-office/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/11/sick-sit-in-at-liebermans-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
