<?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!&#187; Articles about Technology from This Just-in! at JustinHolmes.com</title>
	<atom:link href="http://justinholmes.com/category/technology/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>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>Resisters of socialized medicine must offer a more systemic vision of health care.</title>
		<link>http://justinholmes.com/2009/10/resistors-of-socialized-medicine-must-offer-a-more-systemic-vision-of-health-care/</link>
		<comments>http://justinholmes.com/2009/10/resistors-of-socialized-medicine-must-offer-a-more-systemic-vision-of-health-care/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 14:33:44 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Drug Policy]]></category>
		<category><![CDATA[Drugs]]></category>
		<category><![CDATA[Economy]]></category>
		<category><![CDATA[Health Care]]></category>
		<category><![CDATA[Obama]]></category>
		<category><![CDATA[Original Writing]]></category>
		<category><![CDATA[Pharmaceutical Industry]]></category>
		<category><![CDATA[Psychedelic Mind]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Technology Freedom]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=735</guid>
		<description><![CDATA[As with pretty much every area of political discourse in the United States today, the congressional wrangling over health care lacks a thoughtful, compassionate, informed republican perspective.
Of course the (captial-R) Republican Party has been a miserable failure in representing (small-r) republican views in my lifetime, so I&#8217;m not sure why in this instance I expect [...]]]></description>
			<content:encoded><![CDATA[<p>As with pretty much every area of political discourse in the United States today, the congressional wrangling over health care lacks a thoughtful, compassionate, informed republican perspective.</p>
<p>Of course the (captial-R) Republican Party has been a miserable failure in representing (small-r) republican views in my lifetime, so I&#8217;m not sure why in this instance I expect anything more.  </p>
<p>The problem is that in this instance, the statist / socialist perspective is fundamentally correct about one thing: The health care system of the United States is poorly designed for efficiency and efficacy as a system.  </p>
<p>Imagine, if the current system were invented as a full system, the kind of conversation leading to its invention: &#8220;Let&#8217;s base health coverage around employment status &#8211; most of the people who are employed can have a product we&#8217;ll call &#8220;insurance&#8221; but that will really be a buffet-style hodgepodge of health services.  We&#8217;ll have a whole slew of different plans and practices so as to avoid large-scale negotiation for the benefit of the consumer.  People who are self-employed or not-employed will be kinda screwed, as will those who happen to be sick the day before they get a job &#8211; pre-existing conditions are a liability, you know.  People who are young and destitute or people who are over a particular arbitrary age will be covered by a mix of their home state government and the federal government.  All the while, no solid block of informed consumers will exist to challenge the status quo as a market force.&#8221;</p>
<p>Now I realize that&#8217;s an oversimplification, but my point is that, while pretty much everybody sees the need for a massive change to the health care system, only the statist / socialist perspective has risen up with a really great sounding alternative:</p>
<p>&#8220;Every single person will be required to pay into a collective hold, for which on their behalf a single entity will negotiate the best prices and practices.  Each person then will be entitled to coverage with a fraction of a percent of the system&#8217;s resources leaving as overhead or profit.&#8221;</p>
<p>It&#8217;s not hard to understand how a person can find this alternative compelling!</p>
<p>Making it even more difficult to resist, proponents are able to point to many nation-states around the world where such systems are deployed effectively and to the delight of the citizenry.</p>
<p>Now, on the other hand, look at the narrative of reform offered by the anarchist / republican perspective.  I don&#8217;t know of one.  I can&#8217;t think of one!  Instead, we merely point out the many (and scary) inevitable pitfalls of asking the most powerful military hegemon in history to take care of our health.  We sound terribly academic and disconnected, and <strong>we offer no systemic perspective on what our ideal system will look like.</strong></p>
<p>This is the problem.</p>
<p>Thus, henceforth, I&#8217;m suggesting that we stop or at least curtail all criticism of the current &#8220;reform&#8221; proposals.  We take Obama (and the curious word &#8220;Obamacare&#8221;) out of our lexicon and out of our cross-hairs.  Instead we relentlessly espouse our vision for taking care of people &#8211; all people &#8211; without the heavy hand of government.</p>
<p>I don&#8217;t know all the details, but just to get us started, it goes something like this:</p>
<p>We start by ending all criminal liability for the act of putting anything into one&#8217;s own body.  We restore and strengthen the notion that, across the system, each person is the sole owner and operator of their own biological organism.</p>
<p>We restore and re-examine the role of plant-based medicines, making coca, poppy, hemp, and all other plants legal to cultivate.</p>
<p>We repeal those laws which create the artificial concept of &#8220;intellectual property,&#8221; at least as far as psychoactive compounds are concerned.  We thus end government protection of pharmaceutical companies who inflate their prices by thousands of percent.  Medicines of all kinds become affordable again, and lo and behold! More, rather than fewer, enterprising young scientists become interested in open source medicine.</p>
<p>We create a rich, comfortable, and easy-to-use wiki-like environment, in which people can list the symptoms of any malady from which they may be suffering.  They can also list the remedies which have helped them in the past, and together, as a community, we can create a massive database of trends for all sorts of diseases.  </p>
<p>In this online environment, people in similar biological conditions can talk to one another in a live environment and have occasional support meetings and form consumer support-and-wellness groups.  </p>
<p>Practitioners of medicine, both conventional and alternative, can advertise their services and be hired as advisors by these support groups, being paid directly instead of through a convoluted coverage system.  If, for example, they want to make $50 / hour, they can charge a 10-person group $10 each for a two-hour session, and answer all of their questions.</p>
<p>The concept of &#8220;insurance&#8221; can be re-introduced and distinguished from buffet-style comprehensive coverage.  Most people will likely opt-out of insurance, realizing that the act of purchasing insurance is actually a bet that they will become sick or die sooner rather than later.  On the other hand, some will purchase policies to cover unlikely catastrophic events.  Such insurance will be very cheap.</p>
<p>People can once again choose for themselves which tests and procedures are important, and the incentive structure will be one of conservation, as they&#8217;ll have to pay for each one.</p>
<p>As overhead and systemic costs are reduced, people who currently find themselves spending outrageous amounts on &#8220;coverage&#8221; for themselves, their families, and their employees can instead invest in medical centers or charities in their communities which can care for people who truly need complicated and expensive procedures but can&#8217;t pay for them.</p>
<p>Support groups can also use their presence to help doctors help the poor.  In the example above, if each participant pays $11 for the session, the doctor will have an extra $10.  Assuming the doctor is willing to work for half price for charity, she needs to administer only five such sessions a week in order to administer a free one for people who cannot afford the $10 fee.  Surgeons can work the same way, albeit on a larger scale, just as they did before government regulation got us into the mess we are in today.</p>
<p>Some doctors and other medical professionals will make long-lasting relationships and be able to charge a bit more money as they get older and more trusted.  Some of them will make very good money practicing their art, and that&#8217;s OK.  In fact, that&#8217;s great.  Young people will again have a reason to follow their passion for caring about people instead of studying pharmaceutical patent law or insurance adjustment expediting.</p>
<p>Of course none of us has all the answers, but I think that most people have never stopped to think about what kind of alternative the republican / anarchist perspective has to offer in the health care debate.  It&#8217;s time to change that.  </p>
<p>Also, and perhaps most importantly, the open-source movement and the progress of technology make all of these ideas (and lots of even more innovate ideas!) not only possible, but inevitable.  So it&#8217;s time for us to become optimistic and take some pride in our ability to help each other and keep each other well.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/10/resistors-of-socialized-medicine-must-offer-a-more-systemic-vision-of-health-care/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New York State is Trying to Force the H1N1 Vaccine on Medical Workers</title>
		<link>http://justinholmes.com/2009/10/new-york-state-is-trying-to-force-the-h1n1-vaccine-on-medical-workers/</link>
		<comments>http://justinholmes.com/2009/10/new-york-state-is-trying-to-force-the-h1n1-vaccine-on-medical-workers/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 21:21:23 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Big News]]></category>
		<category><![CDATA[Drug Policy]]></category>
		<category><![CDATA[Drugs]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Justice]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Pharmaceutical Industry]]></category>
		<category><![CDATA[Technology Freedom]]></category>
		<category><![CDATA[police state]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=715</guid>
		<description><![CDATA[This was just brought to my attention by Jessica Sloan, a friend of mine who is a Registered Nurse (and also a daughter of a Registered Nurse) in New York.
Now, without any legislative backing or public hearings, the New York State Health Commissioner has made an &#8220;emergency executive order&#8221; demanding that Jessica, her mother, and [...]]]></description>
			<content:encoded><![CDATA[<p>This was just brought to my attention by Jessica Sloan, a friend of mine who is a Registered Nurse (and also a daughter of a Registered Nurse) in New York.</p>
<p>Now, without any legislative backing or public hearings, the New York State Health Commissioner has made an &#8220;emergency executive order&#8221; demanding that Jessica, her mother, and every other medical service professional to be vaccinated with both the seasonal and H1N1 flu vaccines.  If they decline to allow this, they&#8217;ll lose their jobs.</p>
<p>Remember, these are not government employees.  They are private citizens who have worked hard to build a career around helping people be healthy.  They know better than anyone the risks of being, or declining to be, injected with swine flu vaccine.</p>
<p>A recent small protest on the steps of the New York State Capitol in Albany got a bit of news attention, with <a href="http://www.fox23news.com/news/local/story/Health-care-workers-protest-H1N1-vaccine-mandate/u7C9_1qFOkmB-wPOF0A6zw.cspx">local TV coverage</a>,</p>
<p><a href="http://justinholmes.com/wp-content/uploads/2009/10/vaccine-protest.jpg"><img class="alignnone size-medium wp-image-717" title="vaccine-protest" src="http://justinholmes.com/wp-content/uploads/2009/10/vaccine-protest-300x225.jpg" alt="vaccine-protest" width="300" height="225" /></a></p>
<p>Later, a lawsuit filed got more coverage, and the decision of a New York State judge got <a href="http://www.upi.com/Top_News/US/2009/10/16/Judge-blocks-NY-H1N1-vaccine-mandate/UPI-29001255728092/">even more coverage</a> when he issued a restraining order against the State, preventing it from vaccinating people until a hearing is held.  The hearing is scheduled to begin October 30.</p>
<p>Many health care professionals have said they&#8217;ll be fired rather than allow themselves to be injected with the vaccine.  As with all flu vaccines, it&#8217;s quite risky.  In addition to the typical risks, though, the plaintiffs say that this vaccine was rushed to market hastily and has already caused more sickness than usual.</p>
<p>Does anybody have the relevant documents?  I&#8217;m looking for, but cannot find:</p>
<ul>
<li>The text of the mandate</li>
<li>The brief filed by the plaintiffs in the lawsuit, and the response, if any, from the state</li>
<li>The restraining order</li>
<li>Any kind of press release from the State defending the mandate</li>
</ul>
<p>I have started a <a href="http://www.facebook.com/group.php?gid=181298455659">facebook group</a>.  Please invite!</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/10/new-york-state-is-trying-to-force-the-h1n1-vaccine-on-medical-workers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This guy proposed to his girlfriend by hacking Chrono Trigger.</title>
		<link>http://justinholmes.com/2009/10/this-guy-proposed-to-his-girlfriend-by-hacking-chrono-trigger/</link>
		<comments>http://justinholmes.com/2009/10/this-guy-proposed-to-his-girlfriend-by-hacking-chrono-trigger/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 23:48:50 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Happy]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=695</guid>
		<description><![CDATA[This is worth a watch.  This is one of the best happy YouTube videos I&#8217;ve seen in a while, and without any doubt, the very best proposal I&#8217;ve ever seen.
Click here to view the embedded video.
]]></description>
			<content:encoded><![CDATA[<p>This is worth a watch.  This is one of the best happy YouTube videos I&#8217;ve seen in a while, and without any doubt, the very best proposal I&#8217;ve ever seen.</p>
<a href="http://justinholmes.com/2009/10/this-guy-proposed-to-his-girlfriend-by-hacking-chrono-trigger/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/10/this-guy-proposed-to-his-girlfriend-by-hacking-chrono-trigger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>They&#8217;re coming for our encryption.  It was only a matter of time.</title>
		<link>http://justinholmes.com/2009/09/theyre-coming-for-our-encryption-it-was-only-a-matter-of-time/</link>
		<comments>http://justinholmes.com/2009/09/theyre-coming-for-our-encryption-it-was-only-a-matter-of-time/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 17:18:12 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Big News]]></category>
		<category><![CDATA[Conspiracies]]></category>
		<category><![CDATA[Corporate Media]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Technology Freedom]]></category>
		<category><![CDATA[police state]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=682</guid>
		<description><![CDATA[Freedom to Tinker has the story today about bills introduced in a number of states that seek to prohibit the use of encryption by home internet users.
The underlying message here is simple:  You must expose yourself to surveillance.  You may not take any steps to defend yourself against state or corporate incursion into your privacy.
This [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://freedom-to-tinker.com/blog/felten/use-firewall-go-jail">Freedom to Tinker has the story today </a>about bills introduced in a number of states that seek to prohibit the use of encryption by home internet users.</p>
<p>The underlying message here is simple:  You must expose yourself to surveillance.  You may not take any steps to defend yourself against state or corporate incursion into your privacy.</p>
<p>This reminds me of the <a href="http://www.seattlepi.com/local/wto18.shtml">order in Seattle back in 1999 that made gas masks illegal</a>.  The thought process seems the same:  Your communication data and your muccous membranes must be exposed to the state so that they can be utilized to control you.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://freedom-to-tinker.com/blog/felten/use-firewall-go-jail</div>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/09/theyre-coming-for-our-encryption-it-was-only-a-matter-of-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Much ado about declining to show ID to a police officer</title>
		<link>http://justinholmes.com/2009/09/much-ado-about-declining-to-show-id-to-a-police-officer/</link>
		<comments>http://justinholmes.com/2009/09/much-ado-about-declining-to-show-id-to-a-police-officer/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:37:06 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Justice]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[Police]]></category>
		<category><![CDATA[Police Watching]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=655</guid>
		<description><![CDATA[In the past few days, my video of declining to show ID to a police officer who &#8220;pulled me over&#8221; as I was inline skating in Port Dickinson, NY, has become my #1 post.  I&#8217;m happy that people are learning about the limitations that agents of certain governments, in this case New York State, must [...]]]></description>
			<content:encoded><![CDATA[<p>In the past few days, <a href="http://justinholmes.com/2008/11/remember-you-dont-have-to-show-id-to-police-in-new-york-state">my video of declining to show ID to a police officer</a> who &#8220;pulled me over&#8221; as I was inline skating in Port Dickinson, NY, has become my #1 post.  I&#8217;m happy that people are learning about the limitations that agents of certain governments, in this case New York State, must operate under.</p>
<p>There are a number of places with commentary, if you want to join the discussion:</p>
<ul>
<li><a href="http://justinholmes.com/2008/11/remember-you-dont-have-to-show-id-to-police-in-new-york-state/#comments">The comments section of the post itself</a> is the best discussion, and the one I&#8217;d prefer to house the archive.</li>
<li><a href="http://www.vimeo.com/2230232">My Vimeo page for the video</a> has quite a few comments as well.</li>
<li><strong>Also, there is a hilariously childish <a href="http://theerant.yuku.com/topic/23648/master/1/?page=1">discussion on a third-rate yuku site called &#8220;The Rant.&#8221;</a></strong> I don&#8217;t know whether to laugh at these people or feel bad for them &#8211; if nothing else, the site seems to serve as a place to vent.  I didn&#8217;t expect my post to cause these kind of tantrums, but perhaps it&#8217;s therapeutic for the participants.</li>
</ul>
<p><strong>UPDATE:</strong></p>
<p><a href="http://bcvoice.com/forums/index.php?showtopic=22088&amp;st=60">Now a forum has started here at a website I&#8217;ve never heard of called bcvoice.com</a>.  It&#8217;s somewhat similar to the yuku site, but with a modicum of maturity.  One thing I love is that people &#8211; quite a lot of people at this point &#8211; will sit and waste their time at their keyboard wondering aloud why this &lt;insert fairly random disparaging adjective&gt; &#8220;kid&#8221; would waste his time asserting his basic rights in his own community.</p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/09/much-ado-about-declining-to-show-id-to-a-police-officer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Connecticut Governor &#8220;Google Bombed&#8221; Over Marijuana Decriminalization</title>
		<link>http://justinholmes.com/2009/03/ct-governor-google-marijuana-decriminalizatio/</link>
		<comments>http://justinholmes.com/2009/03/ct-governor-google-marijuana-decriminalizatio/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 15:05:17 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Big News]]></category>
		<category><![CDATA[Drug Policy]]></category>
		<category><![CDATA[Economy]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Justice]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Police Brutality]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=528</guid>
		<description><![CDATA[This is major news.
A google search for the phrase &#8220;Connecticut Governor&#8221; yields a drug-policy reform site as the #1 result, dropping her official website to #2.
What does this mean?
While Google doesn&#8217;t tell the public exactly how its pagerank system works, we know that it primarily assesses links.  It sees each link as a &#8220;vote&#8221; that [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>This is major news.</strong></span></p>
<p>A <a href="http://www.google.com/search?q=connecticut+governor">google search for the phrase &#8220;Connecticut Governor</a>&#8221; yields a drug-policy reform site as the #1 result, dropping her official website to #2.</p>
<p><strong>What does this mean?</strong></p>
<p>While Google doesn&#8217;t tell the public exactly how its pagerank system works, we know that it primarily assesses <em>links</em>.  It sees each link as a &#8220;vote&#8221; that the website being linked to is relevant to phrases near the link.</p>
<p>In this case, the phrase &#8220;Connecticut Governor&#8221; normally points to the official website for the office of the Connecticut Governor.  However, now, with all the attention on the movement to decriminalize cannabis in Connecticut, it seems that there are more and/or stronger links for the phrase &#8220;Connecticut Governor&#8221; to the website of the Drug Policy Alliance, one of the leading organizations advocating sensible drug policies in Connecticut and around the world.</p>
<p>A few years ago, a concerted effort, called a &#8220;Google Bomb,&#8221; was made to tie the phrase &#8220;miserable failure&#8221; to George W. Bush.  This event, on the other hand, seems to be entirely organic and incidental.</p>
<p><strong>Was this intentional and targeted?</strong></p>
<p>As far as I can tell, <em>absolutely not.</em> There is no evidence of efforts to actually game the pagerank system.  Instead, it just seems that many thousands of people saw fit to link to drug policy reform websites when writing about the Connecticut Government.</p>
<p><strong>Why is this politically significant?</strong></p>
<p>As a tech-activist, I often observe that certain types of trends formulate first on the web and later on the streets and in the statehouses.</p>
<p>In this case, I believe this to be the clearest indication yet that drug policy reform is not a second-rate issue or a &#8220;third rail,&#8221; but is actually the #1 domestic policy concern across a wide array of the American populous.</p>
<p><em><strong>Check out this screen shot:</strong></em></p>
<p><img class="alignnone size-full wp-image-529" style="border: 2px dotted black;" title="screenshot-1" src="http://justinholmes.com/wp-content/uploads/2009/04/screenshot-1.png" alt="screenshot-1" width="905" height="314" /></p>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/03/ct-governor-google-marijuana-decriminalizatio/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>TASER-proof vest</title>
		<link>http://justinholmes.com/2009/03/taser-proof-vest/</link>
		<comments>http://justinholmes.com/2009/03/taser-proof-vest/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 19:14:19 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Activism]]></category>
		<category><![CDATA[Armed Populace]]></category>
		<category><![CDATA[Big News]]></category>
		<category><![CDATA[Police Brutality]]></category>
		<category><![CDATA[TASER]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Technology Freedom]]></category>
		<category><![CDATA[police state]]></category>

		<guid isPermaLink="false">http://justinholmes.com/?p=460</guid>
		<description><![CDATA[Although ostensibly created for police and military personnel, let&#8217;s hope these vests are widely distributed to those engaging in non-violent protest actions.
Click here to view the embedded video.
]]></description>
			<content:encoded><![CDATA[<p>Although ostensibly created for police and military personnel, let&#8217;s hope these vests are widely distributed to those engaging in non-violent protest actions.</p>
<a href="http://justinholmes.com/2009/03/taser-proof-vest/"><em>Click here to view the embedded video.</em></a>
]]></content:encoded>
			<wfw:commentRss>http://justinholmes.com/2009/03/taser-proof-vest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
