<?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>The Robb Report &#187; Just a Thought</title>
	<atom:link href="http://www.weblaws.org/robb/category/just-a-thought/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.weblaws.org/robb</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 14:10:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>That one little confusing thing about the Git version control system</title>
		<link>http://www.weblaws.org/robb/2011/02/02/that-one-little-confusing-thing-about-the-git-version-control-system/</link>
		<comments>http://www.weblaws.org/robb/2011/02/02/that-one-little-confusing-thing-about-the-git-version-control-system/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 20:35:13 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.weblaws.org/robb/?p=989</guid>
		<description><![CDATA[Git and github are awesome pieces of software. Last year, I happily switched from subversion to git just like, years ago, I switched from CVS to subversion. Another evolutionary step. I use github for lots of reasons. The biggest is that it&#8217;s the best front-end to git that I&#8217;ve found. And so now I use [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://gitref.org/">Git</a> and <a href="https://github.com/">github</a> are awesome pieces of software. Last year, I happily switched from subversion to git just like, years ago, I switched from CVS to subversion. Another evolutionary step. I use github for lots of reasons. The biggest is that it&#8217;s the best front-end to git that I&#8217;ve found. And so now I use git+github for 15 or so projects; some open source like <a href="https://github.com/dogweather/HTTP-Assertions">HTTP Assertions</a>, and some private code, like the <a href="https://www.oregonlaws.org/">OregonLaws.org web app</a>.</p>
<h2>The one little problem</h2>
<p>Everything goes along happily until git decides you need some help. And so, in a fit of well intentioned verbosity, git coughs up three terminology-packed paragraphs of text that we&#8217;ve all seen:</p>
<p><code>You asked me to pull without telling me which branch you want to merge with, and 'branch.newlayout.merge' in your configuration file does not tell me either. Please specify which branch you want to merge on the command line and try again (e.g. 'git pull &lt;repository&gt; &lt;refspec&gt;'). See git-pull(1) for details.</code></p>
<p><code>If you often merge with the same branch, you may want to configure the following variables in your configuration file:</code></p>
<p><code>branch.newlayout.remote = &lt;nickname&gt;<br />
branch.newlayout.merge  = &lt;remote-ref&gt;<br />
remote.&lt;nickname&gt;.url   = &lt;url&gt;<br />
remote.&lt;nickname&gt;.fetch = &lt;refspec&gt;</code></p>
<p>I collected the following <em>git-specific</em> terms from this one message:</p>
<p style="padding-left: 30px;"><strong>branch, fetch, git-pull, merge, newlayout, nickname, pull, refspec, repository, remote, remote-ref, url</strong></p>
<p>What&#8217;s the difference between a <strong>&lt;refspec&gt;</strong> and a <strong>&lt;remote-ref&gt;</strong>? Between a <strong>&lt;repository&gt;</strong> and a <strong>&lt;nickname&gt;</strong>? Between a <strong>pull</strong> and a <strong>merge</strong>? (I asked for a pull, but git&#8217;s giving me merge info.)</p>
<p><strong>My guess:</strong> several of these terms are <strong>used interchangeably</strong>, and git&#8217;s docs should be made more consistent. Note how the terms in the text paragraphs <strong>do not match</strong> the terms in the config file template.</p>
<p><strong>Problem #2:</strong> The second paragraph says to add the info to the config file. But <strong>the info isn&#8217;t in config file format</strong>; it&#8217;s closer to command line <code>git config</code> format.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2011/02/02/that-one-little-confusing-thing-about-the-git-version-control-system/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Why &#8220;git&#8221; instead of &#8220;svn&#8221;?</title>
		<link>http://www.weblaws.org/robb/2010/06/01/why-git-instead-of-svn/</link>
		<comments>http://www.weblaws.org/robb/2010/06/01/why-git-instead-of-svn/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 07:58:32 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.weblaws.org/robb/?p=624</guid>
		<description><![CDATA[As I learn git, I&#8217;m experiencing advantages that I haven&#8217;t seen described together. Also, I haven&#8217;t seen a description from the perspective of the real-world differences in your files, so here goes: Background context Subversion uses a single, central repository which is in a remote place. And in your project, it maintains .svn/ directories in every [...]]]></description>
			<content:encoded><![CDATA[<p>As I learn git, I&#8217;m experiencing advantages that I haven&#8217;t seen described together. Also, I haven&#8217;t seen a description from the perspective of the real-world differences in your files, so here goes:</p>
<h2>Background context</h2>
<p>Subversion uses a single, central repository which is in a remote place.  And in your project, it maintains <strong>.svn/</strong> directories in every sub-directory.  Git on the other hand, gives each developer their own full-fledged repository. And then, instead of relying on many hidden directories in your project, it creates one that lives only in the top-level directory; in <strong>.git/</strong>. So again: that&#8217;s the only place it stores info; nowhere else in your code.</p>
<p>Interesting, huh?</p>
<h2>The advantages I&#8217;ve found</h2>
<p>So now that I&#8217;ve begun to use git, it&#8217;s already been a nicer experience than subversion:</p>
<p><strong>Deleting a subdirectory doesn&#8217;t screw with the versioning</strong> like it does in svn.  (Because no version info is stored there.  In svn, you need to repair things; re-create the empty directory so you can delete it, etc.  I do this to myself periodically.)</p>
<p><strong>It&#8217;s totally painless to put existing stuff into git</strong> — it stays right where it is.  E.g., a website that&#8217;s in use.  You can initialize the repository and commit the current version of the files while they&#8217;re in use.  This isn&#8217;t possible with svn: you have to check it in, then check it out.</p>
<p><strong>It&#8217;s easy to work on a new idea:</strong> it&#8217;s really easy to create a branch to work on it, and then switch back and forth.  In svn, this is enough of a pain that I don&#8217;t do it in actual practice.  Git finally makes it easy for me to use revision control like I&#8217;ve always wanted: be able to check out our group&#8217;s code, test ideas out, and rollback in my own little world without disturbing the others, and finally commit only the changes I want to.</p>
<p><strong>Git assumes you meant to delete that file.</strong> That&#8217;s been nice and convenient:  I deleted a file without going and telling git first about it.  Git adds a &#8216;delete&#8217; operation to your list of things to check in.  Awesome.  Svn does it the other way around:  You can&#8217;t just do normal file operations; you have to also tell subversion that yes, you <em>did</em> mean to do that.</p>
<p><strong>Git has the GitHub killer app.</strong> It&#8217;s the Netscape of the WWW.  I haven&#8217;t found an equivalent for Subversion — web-based or not.</p>
<p>So that&#8217;s what I&#8217;ve come up so far; I&#8217;ll add more when I see them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2010/06/01/why-git-instead-of-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Malcolm Gladwell is Dead to Me</title>
		<link>http://www.weblaws.org/robb/2010/03/05/malcolm-gladwell-is-dead-to-me/</link>
		<comments>http://www.weblaws.org/robb/2010/03/05/malcolm-gladwell-is-dead-to-me/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 22:45:37 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[bsl]]></category>
		<category><![CDATA[pitbull]]></category>
		<category><![CDATA[skepticism]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=391</guid>
		<description><![CDATA[I&#8217;ve been a fan of his for a long time — I loved The Tipping Point, and saw him speak at Powell&#8217;s downtown Portland.  I knew he had his critics who challenged his conclusions or methods, but I saw that many of the attacks were ideological, and so didn&#8217;t think much of them. But I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a fan of his for a long time — I loved <em>The Tipping Point</em>, and saw him speak at Powell&#8217;s downtown Portland.  I knew he had his critics who challenged his conclusions or methods, but I saw that many of the attacks were ideological, and so didn&#8217;t think much of them.</p>
<p>But I recently stumbled onto his blog post, <em><a href="http://gladwell.typepad.com/gladwellcom/2006/02/pit_bulls.html">Pit Bulls&#8230;</a></em>.  It&#8217;s short; just two paragraphs long.  The first is decent; he describes how, even though a pit bull attack caused no serious physical harm,</p>
<blockquote><p>. . . the attack could have been much more serious. If everyone hadn&#8217;t run to the defense of the boy so quickly, and if the boy&#8217;s mother hadn&#8217;t done exactly the right thing (lying down, with her body covering the boy) the boy could easily have been badly injured. The attack was horrifying, even if no one was seriously hurt . . .</p></blockquote>
<p>But then the concluding paragraph is wrong on its face:</p>
<blockquote><p>. . . part of the rhetorical arsenal of those who get hysterical about Pit Bulls is to pretend that every dog bite is a medical catastrophe. . . . [But] more people are admitted every year for non-dog bites than dog-bites—which is to say that <strong>when you see a Pit Bull, you should worry as much about being bitten by the person holding the leash than the dog on the other end</strong>.</p></blockquote>
<p>[Emphasis mine]  I mean, <strong><em>really?</em></strong> He really believes (and thinks he&#8217;s proved) that <em>people</em>, or at least owners of pit bulls, are more likely to bite you than their <em>dogs</em> are?  My friend Morgan pointed out that this goes against our own experience:  We could each remember numerous times we&#8217;ve been bitten by dogs, but we&#8217;ve never been bitten by a <em>person</em>.</p>
<h2>Where Gladwell goes wrong</h2>
<p>His logic violates <a href="http://en.wikipedia.org/wiki/Conditional_probability">conditional probability</a> which is based on this central idea:  It can be the case that if A happens, B occurs too.  <strong>Yet this does not imply the reverse:</strong> That if B happens, then A will occur.</p>
<p>Here, Gladwell&#8217;s premise is, <span style="text-decoration: underline;">when people land in the hospital due to a bite</span> (A), it&#8217;s probably <span style="text-decoration: underline;">due to a non-dog animal</span> (B).  He then draws the erroneous reverse conclusion:  <span style="text-decoration: underline;">When encountering a human and a dog</span> (A), it&#8217;s more probable that <span style="text-decoration: underline;">the human, rather than the dog, will bite you, sending you to the hospital</span> (B).</p>
<h2>And another thing</h2>
<p>I have to also say that his &#8220;<em>those who get hysterical about Pit Bulls</em>&#8221; characterization is B.S.  In my experience, pro-Pit Bull people (they exist) and Anti-BSL advocates often get hysterical.   However, I haven&#8217;t seen this in advocates for BSL.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2010/03/05/malcolm-gladwell-is-dead-to-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anti- Breed-specific Legislation: Looking for a Compelling Argument</title>
		<link>http://www.weblaws.org/robb/2009/08/08/im-glad-the-anti-bsl-people-dont-write-vehicle-safety-laws/</link>
		<comments>http://www.weblaws.org/robb/2009/08/08/im-glad-the-anti-bsl-people-dont-write-vehicle-safety-laws/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 06:57:14 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[law]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=285</guid>
		<description><![CDATA[Laws that restrict dog breeds which are thought to be dangerous are called Breed Specific Legislation, or &#8220;BSL&#8221;.  I haven&#8217;t made up my mind about them, but I lean in favor of thinking they&#8217;re a good thing: after all, (1) we already ban the ownership of many kinds of dangerous animals.   And (2) the cost [...]]]></description>
			<content:encoded><![CDATA[<p><strong>L</strong><strong>aws that restrict dog breeds which are thought to be dangerous </strong>are called Breed Specific Legislation, or &#8220;BSL&#8221;.  I haven&#8217;t made up my mind about them, but I lean in favor of thinking they&#8217;re a good thing: after all, (1) we already ban the ownership of many kinds of dangerous animals.   And (2) the cost to society and individual freedom isn&#8217;t great, e.g.:</p>
<p><a href="http://audubonportland.org/backyardwildlife/brochures/coyote/reporters"><img class="size-full wp-image-396 alignright" title="Coyote in Powell Butte" src="http://greenfabric.com/robb/wp-content/uploads/2010/03/image_preview.jpeg" alt="" width="175" height="137" /></a></p>
<p style="padding-left: 30px;">&#8220;No, you can&#8217;t keep <a href="http://www.audubonportland.org/backyardwildlife/brochures/coyote/reporters">that coyote you saw in Powell Butte</a>.  And if you want a pet, there are plenty of <a href="http://www.oregonhumane.org/adopt/dogs_puppies.asp?breed=Labrador&amp;Age=&amp;Sex=&amp;Weight=&amp;sort=name&amp;order=ASC&amp;search=search">Labs waiting to be adopted</a> at the Humane Society.&#8221;</p>
<p>So I conclude that <strong>if</strong> there are overly dangerous dog breeds, <strong>then</strong> it&#8217;s reasonable to restrict them in the same way.</p>
<h2>A cute but questionable &#8220;IQ Test&#8221;</h2>
<p>But there are <a href="http://www.angelfire.com/biz6/dogholocaust/">many</a> <a href="http://www.pitbullsontheweb.com/petbull/articles/breedbans.html">people and groups</a> <a href="http://www.dogwatch.net/myths.html">who</a> <a href="http://www.understand-a-bull.com/BSL/Locations/USLocations.htm">advocate</a> <a href="http://www.staffordmall.com/bsl.htm">against BSL</a> &#8212; and in favor of their being able to keep and sell these breeds.  Ok, fair enough.  And one of them, &#8220;Paul Glassner SF/SPCA&#8221;, has written a <a href="http://www.pitbullsontheweb.com/petbull/legislation.php#test">breed ban IQ test</a> that begins,</p>
<p style="padding-left: 30px;"><span style="color: #000080;"><strong><span class="brownbodybold">1.</span> </strong>If you were the sheriff in your town and you learned that Toyotas were disproportionally involved in more auto accidents than any other model, would you:<br />
<strong><span class="greenbodybold">(a)</span></strong> ban Toyotas and confiscate the Toyota of anyone caught driving one<br />
<strong><span class="greenbodybold">(b)</span></strong> arrest the drivers responsible for those accidents? </span></p>
<p>And that&#8217;s it &#8212; those are the only choices.  The rest of the test builds on this question and makes the points one might guess it would.  And so I found the &#8220;test&#8221; pretty shoddy&#8212;essentially propaganda.  Because what about,</p>
<p><span style="color: #000080;"><strong><span class="greenbodybold">(c)</span></strong> look at car ownership to see if a disproportionate number of people own Toyotas as well.  If not, investigate the Toyotas to see if they&#8217;re flawed by design.<br />
</span></p>
<p><span style="color: #000000;">&#8230;which then leads to,</span></p>
<p><span style="color: #000080;"><strong><span class="greenbodybold">(d)</span></strong> potentially all of the above.</span></p>
<p>Because <strong>that&#8217;s what we do in the real world</strong>:  If a car type is too dangerous by design, then we ban it.  If a model&#8217;s occupants would <strong>die</strong> from a single low-speed collision, we ban it.  Ditto if a model&#8217;s <strong>brakes are fundamentally flawed</strong>.</p>
<h2>The car metaphor works in favor of BSL</h2>
<p>Now that I think about it, this does apply to dangerous dogs:  The overly dangerous dog is one who&#8217;s likely to bite more often (<strong>a car that causes more accidents</strong>), and when it does bite, more often maims or kills its victim (<strong>a car that does the same to its occupants</strong>).  In other words, the &#8220;overly dangerous dog&#8221; is one that&#8217;d be responsible for higher <strong>incidence</strong> and <strong>mortality rates</strong>. If there were a car like this &#8212; <a href="http://en.wikipedia.org/wiki/Unsafe_at_Any_Speed#.22The_sporty_Corvair.22">and there have been</a> &#8212; you can bet we&#8217;d take action against them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2009/08/08/im-glad-the-anti-bsl-people-dont-write-vehicle-safety-laws/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Fresh Air: creating a debate where there&#8217;s none.</title>
		<link>http://www.weblaws.org/robb/2009/07/28/fresh-air-creating-a-debate-where-there-is-none/</link>
		<comments>http://www.weblaws.org/robb/2009/07/28/fresh-air-creating-a-debate-where-there-is-none/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 21:54:07 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=269</guid>
		<description><![CDATA[I love NPR and Fresh Air.  But right now, I&#8217;m very disappointed. Terri Gross is chairing a a discussion about health care solutions with two people.  One is Paul Krugman.  I knew the name, but not too much about him, and so here&#8217;s what I found: Professor of economics and international affairs at Princeton, Centenary [...]]]></description>
			<content:encoded><![CDATA[<p>I love NPR and Fresh Air.  But right now, I&#8217;m very disappointed.</p>
<p>Terri Gross is chairing a <a href="http://www.npr.org/templates/story/story.php?storyId=111173038">a discussion about health care solutions</a> with two people.  One is Paul Krugman.  I knew the name, but not too much about him, and so here&#8217;s what I found:</p>
<ul>
<li>Professor of economics and international affairs at Princeton,</li>
<li>Centenary professor at London School of Economics,</li>
<li>2008 Nobel Memorial Prize winner in economics,</li>
<li>Author of &#8220;25 books and 40 scholarly articles&#8221; (Wikipedia).</li>
</ul>
<p>I thought to myself, wow, awesome &#8212; I want to hear what he has to say.  And the other person?  &#8220;Stuart Butler, [some position at] conservative thinktank, the Heritage Foundation&#8221;.  Ok, so red flags go up for me.  Who is this guy?  Here&#8217;s the best I can find:</p>
<ul>
<li>Author of a series of &#8220;WebMemos&#8221; and &#8220;Heritage Lectures&#8221; on the Heritage Foundation website,</li>
<li><em>Adjunct</em> faculty at Georgetown,</li>
<li>Identified as a very influential person by a D.C.-insider periodical. (per his resume)</li>
</ul>
<p>For cryin&#8217; out loud &#8212; why why why?  How in the world does a discussion between these two people serve listeners?  How is Butler any different from Creationists who write &#8220;research&#8221; papers that they publish in their own personal &#8220;scientific journals&#8221;?</p>
<h3>Here&#8217;s just one of the many problems with this:</h3>
<p><strong>As a consumer of news and content, I&#8217;m shortchanged. </strong></p>
<p><strong></strong><strong><em>If</em></strong> there is a well-represented competing current of research and solutions in the field, <strong><em>then</em></strong> I&#8217;d like to hear from someone who would disagree with Krugman on some issues.  But please, this person should have similarly solid credentials, and should represent a similarly broad stream of research in the subject area. <strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2009/07/28/fresh-air-creating-a-debate-where-there-is-none/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The recent Ricci decision casts no negative reflection on Sotomayor</title>
		<link>http://www.weblaws.org/robb/2009/07/01/the-recent-ricci-decision-casts-no-negative-reflection-on-sotomayor/</link>
		<comments>http://www.weblaws.org/robb/2009/07/01/the-recent-ricci-decision-casts-no-negative-reflection-on-sotomayor/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 21:40:39 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[journalism]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=240</guid>
		<description><![CDATA[I&#8217;ve seen a lot of conservative commentators make arguments that the Supreme Court&#8217;s decision is somehow a repudiation of Sotomayor.  They&#8217;ve used the decision&#8217;s 90-page length as evidence of Sotomayor&#8217;s lack of good judgment, the fact of an overturned decision as evidence of it being &#8220;wrong&#8221;, and the fact that the appellants were White as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen a lot of conservative commentators make <a href="http://pajamasmedia.com/blog/high-court-overturns-ricci-bad-news-for-sotomayor/">arguments</a> that the Supreme Court&#8217;s decision is somehow a repudiation of Sotomayor.  They&#8217;ve used the decision&#8217;s 90-page length as <a href="http://www.volokh.com/posts/1246287417.shtml">evidence of Sotomayor&#8217;s lack of good judgment</a>, the fact of an overturned decision as evidence of it being &#8220;wrong&#8221;, and the fact that the appellants were White as evidence of her racism.</p>
<h3>But I come to the opposite conclusions by calmly looking at the facts:</h3>
<ul>
<li>The Court&#8217;s conservative majority reached its decision by <em>creating law</em> in the form of a new standard &#8212; a &#8220;strong basis in evidence&#8221; of the success of a disparate effect lawsuit is now required.<strong>Sotomayor shouldn&#8217;t have done the same (and didn&#8217;t) as an appellate judge, whose role is to interpret, not create law.<br />
</strong></li>
<li>The Court&#8217;s reasoning was based on a reading of the facts that was different from that of the trial court.  Several long and conflicting recitations of the facts caused the decision to reach ~90 pages.  In other words, the case was reviewed &#8220;de novo&#8221;.<strong> </strong><strong></strong><strong>Sotomayor shouldn&#8217;t have done the same (and didn&#8217;t) as an appellate judge, who is required to give deference to the trial court&#8217;s findings of fact.<br />
</strong></li>
<li>The Court reached a 5-4 split decision along the supposed political lines: 4 conservatives, 4 liberals, and Justice Kennedy in the middle.<strong> </strong><strong> </strong><strong>Attempting to label Sotomayor&#8217;s decision to uphold the district court&#8217;s decision as radical or racist is simply disingenuous.</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2009/07/01/the-recent-ricci-decision-casts-no-negative-reflection-on-sotomayor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the big deal about &#8220;DRM-free&#8221;?</title>
		<link>http://www.weblaws.org/robb/2009/01/07/whats-the-big-deal-about-drm-free/</link>
		<comments>http://www.weblaws.org/robb/2009/01/07/whats-the-big-deal-about-drm-free/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 03:54:52 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Ethics]]></category>
		<category><![CDATA[law]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=190</guid>
		<description><![CDATA[All over the web and in real life, people are talking about DRM-free music and video, who&#8217;s selling it, and who isn&#8217;t. (&#8220;DRM-free&#8221; has a mushy definition, but it basically refers to digital media files {e.g., mp3s} that don&#8217;t have copy-protection or purchase information indelibly encoded into them.  For example, anything that you record yourself, [...]]]></description>
			<content:encoded><![CDATA[<p>All over the web and in real life, people are talking about DRM-free music and video, who&#8217;s selling it, and who isn&#8217;t.</p>
<p>(&#8220;DRM-free&#8221; has a mushy definition, but it basically refers to digital media files {e.g., mp3s} that <em>don&#8217;t</em> have copy-protection or purchase information indelibly encoded into them.  For example, anything that you record yourself, on your own computer, will be DRM-free.  In contrast, most songs purchased in the past from iTunes <em>do</em> have DRM, which ensure that only the purchaser can listen to them.)</p>
<h3>But what I can&#8217;t figure out is, <strong>why do people want DRM-free so badly</strong>?</h3>
<p>After all, in the case of iTunes&#8217; DRM-encoded files, I find that as an owner, I have more than enough flexibility to excercise the rights that I&#8217;ve been licensed; such as viewing files on the various devices and computers I own, and making backups for myself.  Here then, are my best guesses why people want DRM-free:</p>
<ol>
<li>So that they can <strong>enjoy their media on Linux</strong>.  This is why I&#8217;d like DRM-free files, but I can&#8217;t imagine this accounts for most others.</li>
<li>(In the case of iTunes) So that the media files can be viewed on <strong>media players besides iPods</strong>.  But this strikes me as unlikely as well; there are other sources of music besides iTunes.</li>
<li>(Abstracting #1 and #2 together) To decouple the media from the device required to view it.  That&#8217;s a great goal, but is this what&#8217;s behind the wave of desire for DRM-free content?</li>
<li>Something else that I&#8217;ve forgotten.  Whoops!  Waited too long to write this post.</li>
</ol>
<p>So what is it?  Can somebody drop me a line and let me know why they prefer DRM-free media</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2009/01/07/whats-the-big-deal-about-drm-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s how it looks when your bank fails:  pretty good, actually.</title>
		<link>http://www.weblaws.org/robb/2008/09/26/heres-how-it-looks-when-your-bank-fails-pretty-good-actually/</link>
		<comments>http://www.weblaws.org/robb/2008/09/26/heres-how-it-looks-when-your-bank-fails-pretty-good-actually/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 00:05:58 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=69</guid>
		<description><![CDATA[I&#8217;ve got a checking and a saving account at Washington Mutual, and I haven&#8217;t been too freaked out about the whole financial crisis. Today it occurred to me, &#8220;Oh yeah, my bank&#8217;s failing,&#8221; and so I read an NPR article about it which said, Trying to keep more people from taking their money out, regulators [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_71" class="wp-caption alignright" style="width: 310px"><a href="http://greenfabric.com/robb/wp-content/uploads/2008/09/wamu_screenshot.jpg"><img class="size-medium wp-image-71" title="WaMu screenshot" src="http://greenfabric.com/robb/wp-content/uploads/2008/09/wamu_screenshot-300x198.jpg" alt="Welcome message when logging in to WaMu on 9/26/2008." width="300" height="198" /></a><p class="wp-caption-text">Welcome message when logging in to WaMu on 9/26/2008.</p></div>
<p>I&#8217;ve got a checking and a saving account at Washington Mutual, and I haven&#8217;t been too freaked out about the whole financial crisis.</p>
<p>Today it occurred to me, &#8220;Oh yeah, my bank&#8217;s failing,&#8221; and so I read an <a href="http://www.npr.org/templates/story/story.php?storyId=95105112">NPR article</a> about it which said,</p>
<blockquote><p>Trying to keep more people from taking their money out, regulators are saying it will be a seamless transition — and that the bank is reopening Friday as usual, just with new owners.</p></blockquote>
<p>And so I thought I&#8217;d log in to my account and see if that&#8217;d be the case.  I was greeted by this message in the screenshot.  I realized that this is pretty much (hopefully!) a once-in-a-lifetime opportunity to see what it&#8217;s like when one&#8217;s bank &#8220;fails.&#8221;</p>
<p>Looks to me like everyone&#8217;s done an awesome job, including the IT people at WaMu, who&#8217;ve made a great web system.  WaMu&#8217;s always been a pretty good bank to be at; you know, as far as banks go.  So I have no complaints.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2008/09/26/heres-how-it-looks-when-your-bank-fails-pretty-good-actually/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ethics in the cafe: what&#8217;s the purpose of the condiment bar?</title>
		<link>http://www.weblaws.org/robb/2008/08/15/ethics-in-the-cafe-whats-a-reasonable-expectation/</link>
		<comments>http://www.weblaws.org/robb/2008/08/15/ethics-in-the-cafe-whats-a-reasonable-expectation/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 22:19:32 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Interesting Article]]></category>
		<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[Ethics]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/?p=50</guid>
		<description><![CDATA[Exactly what&#8217;s the purpose of the condiment bar in a coffee shop?  What&#8217;s the intended use?  What should be a customer&#8217;s expectation? Here&#8217;s a story about a cafe owner going berserk over a customer ordering a &#8220;double espresso poured over ice.&#8221;  It turns out this is a way for people to save money / rip-off [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-51" title="condiment-bar" src="http://greenfabric.com/robb/wp-content/uploads/2008/07/condiment-bar-150x150.jpg" alt="" width="150" height="150" />Exactly <strong>what&#8217;s the purpose of the condiment bar</strong> in a coffee shop?  What&#8217;s the intended use?  What should be a customer&#8217;s expectation?</p>
<p>Here&#8217;s a story about a <a href="http://consumerist.com/tag/murky-coffee/?i=5025306&amp;t=coffee+shop-threatens-to-punch-customer-in-his-dick">cafe owner going berserk</a> over a customer ordering a &#8220;double espresso poured over ice.&#8221;  It turns out this is <a href="http://starbucksgossip.typepad.com/_/2006/09/a_reader_asks_i.html">a way for people to save money / rip-off</a> a cafe on the purchase of a latte.  For example, by ordering espresso+ice and then filling up with &#8220;free&#8221; milk at the condiment bar, one can save a buck or two on the cost of the drink.</p>
<p>I&#8217;m so clueless &#8230; err, I mean <em>ethical</em> &#8230; I had no idea.</p>
<p>There&#8217;s a whole slew of interesting ethical questions here.  But then I was shocked to realize that <strong>I might be one of <em>them</em>:</strong> I like a lot of milk/creamer in my coffee.  Up to and including making it a full-on cafe au lait.  I frequently pour out a half-inch or more of my coffee (even after I ask for &#8220;room&#8221;) to be able to put more milk in.</p>
<p>I had never thought twice about it.  But sometimes I&#8217;d wonder why they never really give me &#8220;room&#8221; when I ask for &#8220;room&#8221;!  Hmm.  <strong>Am I violating some kind of implicit contract between the establishment and myself?</strong> If so, then what <em>should</em> I be ordering?  &#8220;Cafe au lait&#8221; usually is not what I&#8217;m going for.  What&#8217;s half-way betwen that and black coffee?  Is a &#8220;latte&#8221; what I&#8217;m describing?</p>
<p>I&#8217;ve always intentionally avoided learning all of the froo-froo names of the various coffee drinks.  &#8220;A man&#8217;s drink has a name which is a list of its ingredients&#8221;, you know.  Maybe it&#8217;s time I start &#8212; for all I know, I&#8217;ve been drinking back-alley lattes for years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2008/08/15/ethics-in-the-cafe-whats-a-reasonable-expectation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ethics in commerce: This seller has a problem</title>
		<link>http://www.weblaws.org/robb/2008/04/09/ethics-in-commerce-this-seller-has-a-problem/</link>
		<comments>http://www.weblaws.org/robb/2008/04/09/ethics-in-commerce-this-seller-has-a-problem/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 23:23:15 +0000</pubDate>
		<dc:creator>Robb</dc:creator>
				<category><![CDATA[Just a Thought]]></category>
		<category><![CDATA[Ethics]]></category>

		<guid isPermaLink="false">http://greenfabric.com/robb/2008/04/09/ethics-in-commerce-this-seller-has-a-problem/</guid>
		<description><![CDATA[Does a buyer have an ethical duty to inform a seller of a mistake which causes the product to be vastly underpriced? The backstory So here I am in law school, and I&#8217;m thinking that my tired-out backpack is not cutting it any more. I&#8217;d really like to have something a little more respectable. And [...]]]></description>
			<content:encoded><![CDATA[<p>Does a buyer have an ethical duty to inform a seller of a mistake which causes the product to be vastly underpriced?</p>
<p><img src="http://greenfabric.com/robb/wp-content/uploads/2008/04/briefcases-small.jpg" alt="Briefcases" hspace="15" vspace="5" align="right" /></p>
<h2>The backstory</h2>
<p>So here I am in law school, and I&#8217;m thinking that my tired-out backpack is not cutting it any more.  I&#8217;d really like to have something a little more respectable.  And so I quickly find myself submerged in the world of super-expensive (to me, at least) briefcases and laptop bags. I.e., $250 and up.</p>
<p>I tried as hard as I could to find one made locally, but could not.  So I check Ebay, and see that a lot of the bags can be had for 30% or so off, via the auctions.  But wait!  There&#8217;s one seller who&#8217;s offering <strong>a new $300 briefcase for $75</strong> as a &#8220;Buy it Now&#8221; purchase.</p>
<h2>Digging into the facts</h2>
<p>How is this possible? <span style="text-decoration: underline;"><strong>W</strong></span><strong><span style="text-decoration: underline;">hy</span> would she sell a bag for such a low price when she could get much more for it?</strong> This seller has a nearly perfect rating, and many sales.  I rule out fraud on her part. <img src="http://greenfabric.com/robb/wp-content/uploads/2008/04/messenger_8475.jpg" alt="messenger_8475.jpg" hspace="15" align="left" /></p>
<p>I look into her selling history and see that she has posted this particular briefcase repeatedly in the recent past without success. Over the period of a month, she had been re-listing the item and gradually lowering the price down to the $75 at which I found it.</p>
<p><strong>And then I see her problem:</strong> She had been listing this Coach briefcase as a <em>Coach&#8217;s</em> briefcase.  I quickly tested Ebay&#8217;s search feature and saw that <strong>her ad does not appear</strong> if a potential buyer simply searches for <em>Coach</em>.  I surmised that by mis-listing the item, she had greatly reduced the number of potential buyers, forcing her to lower the price.</p>
<p>I bought the briefcase.</p>
<h2>Wondering about the ethics</h2>
<p>I had some concerns even before I bought the item.  If this low was price due was due to a mistake on her part&#8212;would it be right of me to &#8220;take advantage&#8221; of that?</p>
<p>And now that I&#8217;ve purchased the item; <strong>wouldn&#8217;t the right thing to do be to let her know</strong> about the problem with her listings?</p>
<p><img src="http://greenfabric.com/robb/wp-content/uploads/2008/04/prestige_collection_classic_br.jpg" alt="prestige_collection_classic_br.jpg" hspace="15" align="right" />Or, maybe not?  This is a &#8220;market&#8221;, after all.  Isn&#8217;t it exactly these kinds of inefficiencies and differing skills of participants that, in fact, makes the market function, and is how people make a profit?  I&#8217;m convinced I could buy these briefcases from from her and simply re-list them on Ebay for twice the price and sell them instantly.</p>
<p>I thought of one thing that mitigates my sense of wrongdoing.  This is all theory on my part;  I <em>think</em> I know why her prices are low.  I <em>think</em> I could re-sell them at twice what I paid.  But I could be very wrong.</p>
<p><strong>Today I see that she&#8217;s put up another briefcase for sale. </strong> Same type as the one I bought, mis-listed in the same way, but this time black instead of brown, and at a very low price.  I think to myself, &#8220;now that would be nice to have!&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.weblaws.org/robb/2008/04/09/ethics-in-commerce-this-seller-has-a-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

