<?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>PHP Hosts</title>
	<atom:link href="http://www.phphosts.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phphosts.org/blog</link>
	<description>Hosting PHP Based Web Applications</description>
	<lastBuildDate>Thu, 17 May 2012 03:23:52 +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>SASS vs. LESS</title>
		<link>http://www.phphosts.org/blog/2012/05/sass-vs-less/</link>
		<comments>http://www.phphosts.org/blog/2012/05/sass-vs-less/#comments</comments>
		<pubDate>Thu, 17 May 2012 03:23:52 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://css-tricks.com/?p=16922</guid>
		<description><![CDATA[<p><p><em>"Which CSS preprocessor language should I choose?"</em> is a hot topic lately. I've been asked in person several times and an online debate has been popping up every few days it seems. It's nice that the conversation has largely turned from whether or not preprocessing is a good idea to which one language is best. Let's do this thing.</p>
<p>Really short answer: SASS</p>
<p>Slightly longer answer: SASS is better on a whole bunch of different fronts, but if you are &#8230;</p></p><p><a href="http://css-tricks.com/sass-vs-less/">SASS vs. LESS</a> is a post from <a href="http://css-tricks.com">CSS-Tricks</a></p> <a href="http://www.phphosts.org/blog/2012/05/sass-vs-less/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Which CSS preprocessor language should I choose?&#8221;</em> is a hot topic lately. I&#8217;ve been asked in person several times and an online debate has been popping up every few days it seems. It&#8217;s nice that the conversation has largely turned from whether or not preprocessing is a good idea to which one language is best. Let&#8217;s do this thing.</p>
<p>Really short answer: SASS</p>
<p>Slightly longer answer: SASS is better on a whole bunch of different fronts, but if you are already happy in LESS, that&#8217;s cool, at least you are doing yourself a favor by preprocessing.</p>
<p>Much longer answer: Read on.</p>
<p><span id="more-16922"></span></p>
<h3>The Much Longer Answer</h3>
<h4>The Learning Curve with Ruby and Command Line and Whatever</h4>
<p>The only learning curve is the syntax. You should use an app like <a href="http://incident57.com/codekit/" rel='nofollow'>CodeKit</a> to watch and compile your authored files. You need to know jack squat about Ruby or the Command Line or whatever else. Maybe you should, but you don&#8217;t have to, so it&#8217;s not a factor here. </p>
<p>Winner: Nobody</p>
<h4>Helping with CSS3</h4>
<p>With either language, you can write your own mixins to help with vendor prefixes. No winner there. But you know how you don&#8217;t go back and update the prefixes you use on all your projects? (You don&#8217;t.) You also won&#8217;t update your handcrafted mixins file. (Probably.) In SASS you can use <a href="http://compass-style.org/" rel='nofollow'>Compass</a>, and Compass <strong>will</strong> keep itself updated, and thus the prefix situation is handled for you. Yes you&#8217;ll have to keep your local preprocessor software updated and compile/push once in a while, but that&#8217;s trivial and thinking-free.</p>
<p>So what this comes down to is: <strong>SASS has Compass and LESS does not.</strong> But it goes deeper than that. The attempts at creating a real robust project like Compass for LESS haven&#8217;t succeeded because the LESS language isn&#8217;t robust enough to do it properly. More on that next.</p>
<p>Winner: SASS</p>
<h4>Language Ability: Logic / Loops</h4>
<p>LESS has an ability to do &#8220;guarded mixins.&#8221; These are mixins that only take affect <code>when</code> a certain condition is true. Perhaps you want to set a background color based on the current text color in a module. If the text color is &#8220;pretty light&#8221; you&#8217;ll probably want a dark background. If it&#8217;s &#8220;pretty dark&#8221; you&#8217;ll want a light background. So you have a single mixin broke into two parts with these guards that ensure that only one of them takes effect.</p>
<pre rel="LESS"><code>.set-bg-color (@text-color) when (lightness(@text-color) &gt;= 50%) {
  background: black;
}
.set-bg-color (@text-color) when (lightness(@text-color) &lt; 50%) {
  background: #ccc;
}</code></pre>
<p>So then when you use it, you&#8217;ll get the correct background:</p>
<pre rel="LESS"><code>.box-1 {
  color: #BADA55;
  .set-bg-color(#BADA55);
}</code></pre>
<p>That is overly simplified, but you likely get the idea. You can do some fancy stuff with it. LESS can also do self-referencing recursion where a mixin can call itself with an updated value creating a loop. </p>
<pre rel="LESS"><code>.loop (@index) when (@index &gt; 0) {
  .myclass {
    z-index: @index;
  }
  // Call itself
  .loopingClass(@index - 1);
}
// Stop loop
.loopingClass (0) {}

// Outputs stuff
.loopingClass (10);</code></pre>
<p>But thats where the logic/looping abilities of LESS end. SASS has actual logical and looping operators in the language. if/then/else statements, for loops, while loops, and each loops. No tricks, just proper programming. While guarded mixins are a pretty cool, natural concept, language robustness goes to SASS. This language robustness is what makes Compass possible. </p>
<p>For example, Compass has a mixin called <code>background</code>. It&#8217;s so robust, that you can pass just about whatever you want to that thing that it will output what you need. Images, gradients, and any combination of them comma-separated, and you&#8217;ll get what you need (vendor prefixes and all). </p>
<p>This succinct and intelligible code:</p>
<pre rel="SCSS"><code>.bam {
  @include background(
    image-url("foo.png"),
    linear-gradient(top left, #333, #0c0),
    radial-gradient(#c00, #fff 100px)
  );
}</code></pre>
<p>Turns into this monster (which is unfortunately what we need for it to work with as good of browser support as we can get):</p>
<pre rel="CSS"><code>.bam {
  background: url('/foo.png'), -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #333333), color-stop(100%, #00cc00)), -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, color-stop(0%, #cc0000), color-stop(100%, #ffffff));
  background: url('/foo.png'), -webkit-linear-gradient(top left, #333333, #00cc00), -webkit-radial-gradient(#cc0000, #ffffff 100px);
  background: url('/foo.png'), -moz-linear-gradient(top left, #333333, #00cc00), -moz-radial-gradient(#cc0000, #ffffff 100px);
  background: url('/foo.png'), -o-linear-gradient(top left, #333333, #00cc00), -o-radial-gradient(#cc0000, #ffffff 100px);
  background: url('/foo.png'), -ms-linear-gradient(top left, #333333, #00cc00), -ms-radial-gradient(#cc0000, #ffffff 100px);
  background: url('/foo.png'), linear-gradient(top left, #333333, #00cc00), radial-gradient(#cc0000, #ffffff 100px);
}</code></pre>
<p>Winner: SASS</p>
<h4>Website Niceitude</h4>
<p>LESS has a nicer, <a href="http://lesscss.org/" rel='nofollow'>more usable website</a>. The <a href="http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html" rel='nofollow'>SASS documentation</a> isn&#8217;t awful. It&#8217;s complete and you can find what you need. But when competing for attention from front end people, LESS has the edge. I don&#8217;t doubt this plays a large role in LESS currently winning the popularity race. <a href="http://twitter.com/TeamSassDesign" rel='nofollow'>Things may be changing though.</a></p>
<p>Winner: LESS</p>
<h4>The @extend Concept</h4>
<p>Say you declare a class which has a bit of styling. Then you want another class which you want to do just about the same thing, only a few additional things. In LESS you&#8217;d likely:</p>
<pre rel="LESS"><code>.module-b {
   .module-a(); /* Copies everything from .module-a down here */
   border: 1px solid red;
}</code></pre>
<p>That&#8217;s an &#8220;include&#8221; essentially. A mixin, in both languages. You could use an include to do that SASS as well, but you&#8217;re better off using <code>@extend</code>. With <code>@extend</code>, the styles from <code>.module-a</code> aren&#8217;t just duplicated down in .mobule-b (what could be considered bloat), the selector for .module-a is altered to <code>.module-a, .module-b</code> in the compiled CSS (which is more efficient).</p>
<pre rel="SCSS"><code>.module-a {
   /* A bunch of stuff */
}
.module-b {
   /* Some unique styling */
   @extend .module-a;
}</code></pre>
<p>Compiles into</p>
<pre rel="SCSS"><code>.module-a, .module-b {
  /* A bunch of stuff */
}
.module-b {
  /* Some unique styling */
}</code></pre>
<p>See that? It rewrites selectors, which is way more efficient.</p>
<p>Winner: SASS</p>
<h4>Variable Handling</h4>
<p>LESS uses @, SASS uses $. The dollar sign has no inherit meaning in CSS, while the @ sign does. It&#8217;s for things like declaring @keyframes or blocks of @media queries. You could chalk this one up to personal preference and not a big deal, but I think the edge here is for SASS which doesn&#8217;t confuse standing concepts.</p>
<p>SASS has some weirdness with scope in variables though. If you overwrite a &#8220;global&#8221; variable &#8220;locally&#8221;, the global variable takes on the local value. This just feels kind of weird.</p>
<pre rel="CSS"><code>$color: black;
.scoped {
  $color: white;
  color: $color;
}
.unscoped {
  // LESS = black (global)
  // SASS = white (overwritten by local)
  color: $color;
}</code></pre>
<p>I&#8217;ve heard it can be useful but it&#8217;s not intuitive, especially if you write JavaScript.</p>
<p>Winner: Tossup</p>
<h4>Working with Media Queries</h4>
<p>The way most of us started working with <code>@media</code> queries was adding blocks of them at the bottom of your main stylesheet. That works, but it leads to mental disconnect between the original styling and the responsive styles. Like:</p>
<pre rel="CSS"><code>.some-class {
   /* Default styling */
}

/* Hundreds of lines of CSS */

@media (max-width: 800px) {
  .some-class {
    /* Responsive styles */
  }
}</code></pre>
<p>With SASS or LESS, we can bring those styles together through nesting.</p>
<pre rel="SCSS"><code>.some-class {
  /* Default styling */
  @media (max-width: 800px) {
    /* Responsive styles */
  }
}</code></pre>
<p>You can get even sexier with SASS. There is a really cool &#8220;respond-to&#8221; technique (see code by <a href="https://gist.github.com/1215856" rel='nofollow'>Chris Eppstein</a>, <a href="http://theint.ro/blogs/outro/4686992-responsive-design-with-sass" rel='nofollow'>Ben Schwarz</a>, and <a href="http://jeffcroft.com/blog/2012/mar/02/implementing-responsive-design/" rel='nofollow'>Jeff Croft</a>) for naming/using breakpoints.</p>
<pre rel="SASS"><code>=respond-to($name)

  @if $name == small-screen
    @media only screen and (min-width: 320px)
      @content

  @if $name == large-screen
    @media only screen and (min-width: 800px)
      @content</code></pre>
<p>The you can use them succinctly and semantically:</p>
<pre rel="SASS"><code>.column
    width: 25%
    +respond-to(small-screen)
      width: 100%</code></pre>
<p>Note: requires SASS 3.2, which is in alpha, which you can install with <code>gem install sass --pre</code>. I don&#8217;t think there is any doubt this is a very nice way to work.</p>
<p>Winner: SASS</p>
<h4>Math</h4>
<p>For the most part, the math is similar, but there are some weirdnesses with how units are handled. For instance, LESS will assume the first unit you use is what you want out, ignoring further units.</p>
<pre rel="LESS"><code>div {
   width: 100px + 2em; // == 102px (weird)
}</code></pre>
<p>In SASS, you get a clear error: Incompatible units: &#8216;em&#8217; and &#8216;px&#8217;. I guess it&#8217;s debatable if it&#8217;s better to error or be wrong, but I&#8217;d personally rather have the error. Especially if you&#8217;re dealing with variables rather than straight units and it&#8217;s harder to track down.</p>
<p>SASS will also let you perform math on &#8220;unknown&#8221; units, making it a bit more futureproof should some new unit come along before they are able to update. LESS does not. There is some more weird differences like how SASS handles multiplying values that both have units, but it&#8217;s esoteric enough to not be worth mentioning.</p>
<p>Winner: Narrowly SASS</p>
<h4>Active Development</h4>
<p>At the time of this writing&#8230;</p>
<p><a href="https://github.com/cloudhead/less.js/issues" rel='nofollow' rel='nofollow'>Number of open issues</a> on LESS: 392<br />
<a href="https://github.com/nex3/sass/issues" rel='nofollow' rel='nofollow'>Number of open issues</a> on SASS: 84</p>
<p><a href="https://github.com/cloudhead/less.js/pulls" rel='nofollow' rel='nofollow'>Pending pull requests</a> on LESS: 86<br />
<a href="https://github.com/nex3/sass/pulls" rel='nofollow' rel='nofollow'>Pending pull requests</a> on SASS: 3</p>
<p><a href="https://github.com/cloudhead/less.js/commits/master/" rel='nofollow' rel='nofollow'>Number of commits</a> in the last month in LESS: 11<br />
<a href="https://github.com/nex3/sass/commits/stable/" rel='nofollow' rel='nofollow'>Number of commits</a> in the last month in SASS: 35</p>
<p>None of that stuff is any definitive proof that one project is more active than the other, but the numbers do seem to always leans toward SASS. As I understand it, both of the leads work on the languages in whatever little free time they have, as they both have other major new projects they are working on. </p>
<p>Winner: Probably SASS</p>
<h3>More Reading</h3>
<ul>
<li>Chris Eppstein: <a href="https://gist.github.com/674726" rel='nofollow'>SASS/LESS Comparison</a></li>
<li>Jeremy Hixon: <a href="http://coding.smashingmagazine.com/2011/09/09/an-introduction-to-less-and-comparison-to-sass/" rel='nofollow'>An Introduction To LESS, And Comparison To Sass</a></li>
<li>Ken Collins: <a href="http://metaskills.net/2012/02/27/too-less-should-you-be-using-sass/" rel='nofollow'>Too LESS? Should You Be Using Sass?</a></li>
<li>Johnathan Croom: <a href="http://net.tutsplus.com/tutorials/html-css-techniques/sass-vs-less-vs-stylus-a-preprocessor-shootout/" rel='nofollow'>Sass vs. LESS vs. Stylus: Preprocessor Shootout</a></li>
</ul>
<p><a href="http://css-tricks.com/sass-vs-less/" rel='nofollow'>SASS vs. LESS</a> is a post from <a href="http://css-tricks.com" rel='nofollow'>CSS-Tricks</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/sass-vs-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New HTC Phones Stopped At Customs Due To Apple Patent Fight</title>
		<link>http://www.phphosts.org/blog/2012/05/new-htc-phones-stopped-at-customs-due-to-apple-patent-fight/</link>
		<comments>http://www.phphosts.org/blog/2012/05/new-htc-phones-stopped-at-customs-due-to-apple-patent-fight/#comments</comments>
		<pubDate>Thu, 17 May 2012 02:35:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/blog/wireless/articles/20120515/17552418934/new-htc-phones-stopped-customs-due-to-apple-patent-fight.shtml</guid>
		<description><![CDATA[In one of many Apple patent fights concerning smartphones, it went after Taiwanese smartphone maker HTC in both the courts and using the infamous ITC loophole that gives the company two separate cracks and blocking competition using the same patents.  ... <a href="http://www.phphosts.org/blog/2012/05/new-htc-phones-stopped-at-customs-due-to-apple-patent-fight/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In one of many Apple patent fights concerning smartphones, it <a href="http://www.techdirt.com/articles/20100302/1031458365.shtml" rel='nofollow'>went after</a> Taiwanese smartphone maker HTC in both the courts and using the infamous <a href="http://www.techdirt.com/articles/20080702/1117121576.shtml" rel='nofollow'>ITC loophole</a> that gives the company two separate cracks and blocking competition using the same patents.  The ITC ruled in Apple&#8217;s favor late last year, issuing its customary injunction (the ITC can only issue injunctions blocking import, rather than any monetary award).  HTC was given time to create a fix, but the injunction has apparently gone into effect, and it means that the newest HTC phones &#8212; eagerly awaited by some &#8212; <a href="http://www.theverge.com/2012/5/15/3022907/at-t-htc-one-x-blocked-at-us-customs-infringing-apple"  rel='nofollow'>are being held at the border by customs</a> to make sure that allowing them into the country won&#8217;t violate the ITC injunction.  It&#8217;s pretty sad that Apple doesn&#8217;t appear to think that it can actually compete on the merits in the marketplace, but rather has to resort to this sort of protectionism.  Similar to Apple&#8217;s complaints against Samsung, I have to admit that all this has really done is increase my interest in both the HTC One X and the HTC Evo LTE.  If a smartphone is so good that even Apple is scared to compete against it, well, that seems like a phone that might be worth having&#8230;</p>
<p><a href="http://www.techdirt.com/blog/wireless/articles/20120515/17552418934/new-htc-phones-stopped-customs-due-to-apple-patent-fight.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/blog/wireless/articles/20120515/17552418934/new-htc-phones-stopped-customs-due-to-apple-patent-fight.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/blog/wireless/articles/20120515/17552418934/new-htc-phones-stopped-customs-due-to-apple-patent-fight.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=bff15e0e0b6552d4909c3238cad00929&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=bff15e0e0b6552d4909c3238cad00929&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=uF5cFDFvYgs:-H_VUCPr8z8:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=uF5cFDFvYgs:-H_VUCPr8z8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=uF5cFDFvYgs:-H_VUCPr8z8:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/uF5cFDFvYgs" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/new-htc-phones-stopped-at-customs-due-to-apple-patent-fight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DailyDirt: Caffeine In Everything</title>
		<link>http://www.phphosts.org/blog/2012/05/dailydirt-caffeine-in-everything/</link>
		<comments>http://www.phphosts.org/blog/2012/05/dailydirt-caffeine-in-everything/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:00:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120309/14231718057/dailydirt-caffeine-everything.shtml</guid>
		<description><![CDATA[No one likes feeling drowsy when they want to be awake and alert. For centuries, folks have been self-medicating by drinking various beverages with caffeine (and Coca-cola originally had a more potent drug in it). We've come a long way from just boilin... <a href="http://www.phphosts.org/blog/2012/05/dailydirt-caffeine-in-everything/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>No one likes feeling drowsy when they want to be awake and alert. For centuries, folks have been self-medicating by drinking various beverages with caffeine (and Coca-cola originally had a more potent drug in it). We&#8217;ve come a long way from just boiling tea leaves in water, and here are just a few more ways caffeine is spreading into our lives.</p>
<ul>
<li> <a title="http://news.yahoo.com/apnewsbreak-fda-review-inhalable-caffeine-120211703.html" href="http://yhoo.it/xydpKx" rel='nofollow'>Inhalable caffeine isn&#8217;t really meant to be absorbed by the lungs, despite its name.</a> Caffeine doesn&#8217;t really seem like a dietary supplement, either. [<a href="http://news.yahoo.com/apnewsbreak-fda-review-inhalable-caffeine-120211703.html" rel='nofollow' rel='nofollow' rel='nofollow' rel='nofollow'>url</a>]</li>
<li> <a title="http://blogs.discovermagazine.com/discoblog/2012/02/16/a-caffeine-tracking-app-that-doesnt-actually-track-your-caffeine/" href="http://bit.ly/wK087F" rel='nofollow'>The Caffeine Zone app is supposed to help optimize when a person should ingest caffeine for maximal effects.</a> But this simple app doesn&#8217;t take into account personal metabolisms &#8212; it just predicts how much caffeine will be left in your bloodstream after you enter in how much you drank, when and how fast. [<a href="http://blogs.discovermagazine.com/discoblog/2012/02/16/a-caffeine-tracking-app-that-doesnt-actually-track-your-caffeine/" rel='nofollow' rel='nofollow' rel='nofollow' rel='nofollow'>url</a>]</li>
<li> <a title="http://www.cdc.gov/alcohol/fact-sheets/cab.htm" href="http://1.usa.gov/wFUAUB" rel='nofollow'>The CDC and FDA have several warnings against caffeinated alcoholic beverages.</a> But where are the warnings for a rum and Coke? [<a href="http://www.cdc.gov/alcohol/fact-sheets/cab.htm" rel='nofollow' rel='nofollow' rel='nofollow' rel='nofollow'>url</a>]</li>
<li><b>To discover more food-related links, <a title="http://www.stumbleupon.com/to/stumble/topic:102" href="http://bit.ly/iaJVJd" rel='nofollow'>check out what&#8217;s floating around in StumbleUpon.</a></b> [<a href="http://www.stumbleupon.com/to/stumble/topic%3A102" rel='nofollow' rel='nofollow' rel='nofollow' rel='nofollow'>url</a>]  <a title="what's this?" href="http://www.techdirt.com/articles/20120309/14231718057/dailydirt-caffeine-everything.shtml" class="whatsthis help_ddstumble" rel='nofollow'>&nbsp;</a>
</li>
</ul>
<p>By the way, StumbleUpon can also recommend some good <a title="http://www.stumbleupon.com/to/stumble/stumblethru:www.techdirt.com" href="http://bit.ly/fagV8c" rel='nofollow'>Techdirt</a> articles, too.</p>
<p><a href="http://www.techdirt.com/articles/20120309/14231718057/dailydirt-caffeine-everything.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120309/14231718057/dailydirt-caffeine-everything.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120309/14231718057/dailydirt-caffeine-everything.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=2045d8c2da1cd225897cca4924c007b7&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=2045d8c2da1cd225897cca4924c007b7&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=TQhkjk8oa2Y:YIUTPFiavXM:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=TQhkjk8oa2Y:YIUTPFiavXM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=TQhkjk8oa2Y:YIUTPFiavXM:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/TQhkjk8oa2Y" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/dailydirt-caffeine-in-everything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time To Realize That The Obama Administration Doesn&#8217;t Even Have The Authority To Commit The US To ACTA Or TPP</title>
		<link>http://www.phphosts.org/blog/2012/05/time-to-realize-that-the-obama-administration-doesnt-even-have-the-authority-to-commit-the-us-to-acta-or-tpp/</link>
		<comments>http://www.phphosts.org/blog/2012/05/time-to-realize-that-the-obama-administration-doesnt-even-have-the-authority-to-commit-the-us-to-acta-or-tpp/#comments</comments>
		<pubDate>Wed, 16 May 2012 22:59:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120508/17174518835/time-to-realize-that-obama-administration-doesnt-even-have-authority-to-commit-us-to-acta-tpp.shtml</guid>
		<description><![CDATA[There is a major problem with the Anti-Counterfeiting Trade Agreement (ACTA) that has little to do with IP or the internet: how does international law get made&#8212;by the President alone, or with Congress's involvement?  ACTA's key problem in the Uni... <a href="http://www.phphosts.org/blog/2012/05/time-to-realize-that-the-obama-administration-doesnt-even-have-the-authority-to-commit-the-us-to-acta-or-tpp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There is a major problem with the Anti-Counterfeiting Trade Agreement (ACTA) that has little to do with IP or the internet: how does international law get made&mdash;by the President alone, or with Congress&#8217;s involvement?  ACTA&#8217;s key problem in the United States is a Constitutional question that turns on the separation of powers. The President, or an office of the executive branch like USTR, can negotiate treaties that fall within presidential powers. But for topics that fall within Congressional powers, like IP law, the Constitution <b>requires</b> that Congress be involved in the process.</p>
<p>The most obvious and difficult way to involve Congress is through Article II of the Constitution. Under Article II, a treaty negotiated by the executive branch is presented to the Senate for ratification. The process is notoriously difficult, because it requires two-thirds of the Senate to approve. So USTR, almost understandably, wants to avoid the Article II process if at all possible.</p>
<p>A number of years ago, this wouldn&#8217;t have been a problem, or at least not a Constitutional one. Congress gave USTR &#8220;fast track&#8221; authority to negotiate trade agreements, subject to an up-or-down vote at the end of the negotiating process. This authority, however, expired in July 2007. ACTA wasn&#8217;t announced until October of that same year.	Fast track wasn&#8217;t great, because it didn&#8217;t allow for amendments, but at least it allowed final oversight over the executive branch by Congress. It also allowed international law to be made, because the hurdle of Senate ratification for Article II treaties can make that process come to a standstill.</p>
<p>USTR knew, then, when it began negotiating ACTA, that it <b>no longer had Congress&#8217;s authorization to negotiate these kinds of trade agreements</b>. This doesn&#8217;t mean that USTR had to drop its activities, but at the end of the negotiating process, it would have to seek Congress&#8217;s approval anew. If Congress decided not to do an up-or-down vote or amend the agreement, the agreement would need to go to the Senate for ratification, or it would fail.</p>
<p><b>So USTR tried to avoid the process, and Congress, entirely</b>. USTR initially explained that it planned to negotiate ACTA under the President&#8217;s powers, alone. This made no sense, as <a href="http://www.washingtonpost.com/wp-dyn/content/article/2010/03/25/AR2010032502403.html"  rel='nofollow'>prominent legal scholars noted</a>. The President&#8217;s inherent powers do not involve IP. That&#8217;s Congress&#8217;s purview.</p>
<p>In March 2012, USTR switched gears. After Senator Ron Wyden publicly questioned the way in which ACTA had been negotiated, the Legal Advisor to the Department of State, Harold Hongju Koh (disclosure: also formerly the dean of my law school and my professor of transnational law), <a href="http://infojustice.org/wp-content/uploads/2012/03/84365507-State-Department-Response-to-Wyden-on-ACTA.pdf"  rel='nofollow'>explained</a> that ACTA wasn&#8217;t being negotiated just by the President. Koh explained that&#8211;surprise!&#8211;Congress actually had been involved in ACTA, authorizing the negotiation of ACTA beforehand in the <i>2008 PRO-IP Act.</i></p>
<p>There&#8217;s a major problem with this argument. First, the part of the PRO-IP Act Koh cited describes the creation of a <a href="http://infojustice.org/archives/9072"  rel='nofollow'>plan</a> for US agencies to generally coordinate on IP enforcement, under the IP Czarina Espinel. <b>It isn&#8217;t addressed to USTR, and it <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2043605"  rel='nofollow'>doesn&#8217;t authorize USTR to negotiate an agreement</a>.</b></p>
<p>Second, there&#8217;s an element of madness in claiming that the 2008 PRO-IP Act authorizes ACTA.  ACTA was announced in 2007. <i>How can Congress pre-authorize the negotiation of a treaty that was announced in 2007 through a <a href="https://www.eff.org/deeplinks/2012/04/acta-state-play-us"  rel='nofollow'>law enacted in 2008</a>?</i></p>
<p>Thus, while the EU focuses on ACTA&#8217;s impact on fundamental rights and liberties, in the United States the procedural problem blows those questions out of the water.</p>
<p>This is about situating ACTA against a bigger picture of the <a href="http://www.nytimes.com/2012/04/23/us/politics/shift-on-executive-powers-let-obama-bypass-congress.html?pagewanted=all"  rel='nofollow'>excessive power of the President</a>, and the ability of Congress to put limits on the executive branch. In the context of treaty-making, it&#8217;s about all of our international lawmaking, and an executive branch that has <a href="http://digitalcommons.law.yale.edu/fss_papers/831/"  rel='nofollow'>grown used to making international commitments</a> without involving democratic process.  It&#8217;s important to understand that ACTA is just the tip of the iceberg, where the public has finally encountered the craziness with which international law now gets made in the United States. Frequently, now, international law gets made by the President under purported prior authorization by Congress, without a democratic vote at the end of the process.</p>
<p>There are enormously important values at stake. When the executive negotiates without Congress&#8217;s participation, citizens don&#8217;t get a  say in the process. We don&#8217;t get to review the agreement, or pressure our representatives into changing or rejecting it. However, <a href="http://www.ustr.gov/about-us/advisory-committees/industry-trade-advisory-committees-itac"  rel='nofollow'>special industry groups do</a>, including the RIAA, as advisors to USTR.</p>
<p>It&#8217;s not that all the problems with IP and trade law would disappear if we involved Congress. But the struggles of advocates and academics with USTR&#8217;s lack of responsiveness and the secrecy around ACTA and TPP show that we require at least a sense of being able to effect change through democratic process.</p>
<p>Congress needs to get involved here. It needs to make clear to the administration that it must send ACTA to Congress to seek approval, or to the Senate for ratification as an Article II treaty. With this in mind, I am part of a group of legal academics that is <a href="http://infojustice.org/senatefinance-may2012"  rel='nofollow'>writing to the Senate Finance Committee</a> asking them to make these requirements clear with respect to ACTA.  The PRO-IP Act doesn&#8217;t authorize ACTA, and IP is not part of the President&#8217;s inherent powers, so Congress must get involved.</p>
<p>And the problem continues. Last week, the USTR and other countries met to continue negotiating the Trans-Pacific Partnership Agreement (TPP) in Dallas.  The TPP also contains an unreleased IP chapter of dubious substance. As of now, USTR <a href="http://thehill.com/blogs/on-the-money/1005-trade/213349-kirk-white-house-will-send-fast-track-authority-bill-to-congress-this-year."  rel='nofollow'>still doesn&#8217;t have fast-track authority</a> from Congress to negotiate agreements like the TPP. USTR also can&#8217;t claim that the PRO-IP Act authorizes negotiations this time, because unlike ACTA, TPP is broader than just IP.  So once again, USTR is negotiating an international agreement without a clear plan of how Congress or the Senate will be involved. If USTR does not get the desired fast-track authority for TPP, it will have to try to get after-the-fact approval from Congress or ratify TPP as an Article II treaty. So where ACTA is facing a Constitutional crisis where the executive branch is claiming it can go it alone, TPP is an example of an overactive agency not thinking through how it will Constitutionally accomplish its goals. </p>
<p>What we have right now is an overactive executive branch accustomed to a lack of supervision, and a Congress that has failed to assert its Constitutional responsibility in this sphere. If we want public input on international law-making at any point in the future, this is a dynamic that we&#8217;re really going to have to work hard to change.</p>
<p><a href="http://www.techdirt.com/articles/20120508/17174518835/time-to-realize-that-obama-administration-doesnt-even-have-authority-to-commit-us-to-acta-tpp.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120508/17174518835/time-to-realize-that-obama-administration-doesnt-even-have-authority-to-commit-us-to-acta-tpp.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120508/17174518835/time-to-realize-that-obama-administration-doesnt-even-have-authority-to-commit-us-to-acta-tpp.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=65d14b8f43bd015fc03fdd9b74d87d9e&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=65d14b8f43bd015fc03fdd9b74d87d9e&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=63jEYpsaLWM:xDPrxQUsLow:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=63jEYpsaLWM:xDPrxQUsLow:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=63jEYpsaLWM:xDPrxQUsLow:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/63jEYpsaLWM" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/time-to-realize-that-the-obama-administration-doesnt-even-have-the-authority-to-commit-the-us-to-acta-or-tpp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bogus Stats Again: BSA Puts Out Its Yearly Propaganda About Software Piracy</title>
		<link>http://www.phphosts.org/blog/2012/05/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy/</link>
		<comments>http://www.phphosts.org/blog/2012/05/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy/#comments</comments>
		<pubDate>Wed, 16 May 2012 21:58:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120515/15081718930/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy.shtml</guid>
		<description><![CDATA[For the 9th year in a row, the Business Software Alliance (BSA), an organization that mainly represents Microsoft's interest, has put out its ridiculous "Global Software Piracy Study", which argues that tons and tons of software is being pirated, and i... <a href="http://www.phphosts.org/blog/2012/05/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For the 9th year in a row, the Business Software Alliance (BSA), an organization that mainly represents Microsoft&#8217;s interest, has put out its <a href="http://www.prnewswire.com/news-releases/well-over-half-the-worlds-computer-users-admit-pirating-software-bsa-study-finds-151480345.html"  rel='nofollow'>ridiculous &#8220;Global Software Piracy Study&#8221;</a>, which argues that tons and tons of software is being pirated, and if only people paid for it, there would be $63.4 billion more going to software companies.  We&#8217;ve been criticizing the ridiculously laughable methodology of the report <a href="http://www.techdirt.com/articles/20040707/0146245_F.shtml" rel='nofollow'>since</a> it began, and even have seen the company that does the research, IDC, <a href="http://www.techdirt.com/articles/20040719/034230_F.shtml" rel='nofollow'>admit</a> that the BSA exaggerates what the report actually says.  We&#8217;ve done <a href="http://www.techdirt.com/articles/20080718/1226541724.shtml" rel='nofollow'>multiple</a> detailed <a href="http://www.techdirt.com/articles/20110512/10183914249/bsa-2010-piracy-report-its-back-its-just-as-wrong-as-before.shtml" rel='nofollow'>analyses</a> of how the BSA&#8217;s stats are misleading (or just flat out bogus).  And yet, because there are magical numbers involved, the press just loves to <a href="http://www.techdirt.com/articles/20100511/1516059386.shtml" rel='nofollow'>parrot</a> the claims without any skepticism.</p>
<p>This year&#8217;s report is no different.  It&#8217;s more of the same ridiculousness, with a clueless press reporting (totally inaccurately) that the study says that software piracy <a href="http://www.google.com/hostednews/afp/article/ALeqM5gLZmDiCTgiUtua0Gdq0anTOt0Ndg?docId=CNG.37ab293d08346aa6f7c1d1bfbdd5758f.5f1"  rel='nofollow'>&#8220;costs&#8221; the economy $63.4 billion</a>.  That&#8217;s simply not true.  What the report did find was not actually surprising or even very interesting.  It&#8217;s that people in developing countries tend to <a href="http://news.techworld.com/applications/3357773/developing-world-fuels-rise-in-software-piracy-claims-bsa/"  rel='nofollow'>infringe</a> more often.  You probably knew that already, but if you wanted evidence for that, you shouldn&#8217;t look to the BSA and its bogus stats, but a thorough, comprehensive and independent review of the market, such as the one done by Joe Karaganis and SSRC <a href="http://www.techdirt.com/articles/20110308/02354213395/massive-research-report-piracy-emerging-economies-released-debunks-entire-foundation-us-foreign-ip-policy.shtml" rel='nofollow'>last year</a>.  That report found the reason that there was increased piracy in developing markets was because clueless companies don&#8217;t realize that people aren&#8217;t going to pay a month&#8217;s salary for a single digital good.</p>
<p>Of course, rather than recognize it&#8217;s their own business model failings at issue, the BSA is once again using this report to <a href="http://www.itpro.co.uk/640636/bsa-demands-tougher-penalties-for-software-pirates"  rel='nofollow'>call for &#8220;tougher penalties&#8221; for infringement</a>.  This despite the fact that no study has ever shown that such penalties actually drive more people to buy.</p>
<p>Thankfully, at least some people are calling the BSA out on its bogus report, such as by noting that it&#8217;s <a href="http://joshmendelsohn.tumblr.com/post/23122331028/bsa-proves-they-are-out-of-touch"  rel='nofollow'>political propaganda</a> designed to get legislation like SOPA and PIPA passed.  The reality, of course, is that it shows how out of touch the BSA is with the innovation economy today, instead working to lock up and protect the interests of its major funders: Microsoft, Symantec and Intuit.  Those companies are threatened by upstarts with better business models, and the best they can do is to support legislation that will lock down the internet, causing more harm than good for true innovation.</p>
<p>The &#8220;Bogus Stats Again&#8221; report from the BSA isn&#8217;t about dealing with piracy.  It&#8217;s a way of white washing an agenda of protectionism for some large software companies who don&#8217;t want to compete or to adapt.</p>
<p><a href="http://www.techdirt.com/articles/20120515/15081718930/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120515/15081718930/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120515/15081718930/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=da1ff9a5a0bf06be5861c85b6b96b9b7&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=da1ff9a5a0bf06be5861c85b6b96b9b7&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=5qTbhb7EV8Q:ULRj9xRuEYo:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=5qTbhb7EV8Q:ULRj9xRuEYo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=5qTbhb7EV8Q:ULRj9xRuEYo:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/5qTbhb7EV8Q" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/bogus-stats-again-bsa-puts-out-its-yearly-propaganda-about-software-piracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When Games Allow Mods, Beautiful Things Can Happen</title>
		<link>http://www.phphosts.org/blog/2012/05/when-games-allow-mods-beautiful-things-can-happen/</link>
		<comments>http://www.phphosts.org/blog/2012/05/when-games-allow-mods-beautiful-things-can-happen/#comments</comments>
		<pubDate>Wed, 16 May 2012 20:53:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120516/09044318944/when-games-allow-mods-beautiful-things-can-happen.shtml</guid>
		<description><![CDATA[Recently, Mike wrote about the importance of externalities and spillovers in economics, and the fact that it's often best to allow other people to capture pieces of the value you create and build on top of it. Not only does this benefit the economy as ... <a href="http://www.phphosts.org/blog/2012/05/when-games-allow-mods-beautiful-things-can-happen/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently, Mike wrote about the importance of <a href="http://www.techdirt.com/blog/innovation/articles/20120426/20121618675/when-you-create-value-it-doesnt-mean-you-have-to-capture-every-bit-that-value.shtml" rel='nofollow'>externalities and spillovers</a> in economics, and the fact that it&#8217;s often best to allow other people to capture pieces of the value you create and build on top of it. Not only does this benefit the economy as a whole, it benefits the originator, because some of the additional value that people create feeds back to them.</p>
<p>In the video game world, a great example of this is when companies open their games up to mods, so users can tweak them or build entirely new games on top of the same basic engine. Valve&#8217;s Counter-Strike series grew from a fan-made mod for Half-Life, which was so popular it has been credited with keeping Half-Life on gamers&#8217; radars for years longer than it would have been otherwise, leading Valve to hire the creators and turn it into its own game, which remains one of the company&#8217;s most successful titles. This week another example bubbled up on Reddit, in the form of <a href="http://www.reddit.com/r/gaming/comments/tptec/dear_developers_this_is_why_you_should_make_your/"  rel='nofollow'>a captioned screenshot of the Steam store titled <em>&#8220;Dear developers, this is why you should make your games moddable&#8221;</em></a>:</p>
<p><center><a href="http://imgur.com/srYuk" rel='nofollow'><img src="http://i.imgur.com/srYuk.jpg" title="Hosted by imgur.com" alt="" width="560" /></a></center></p>
<p>The game <em>ARMA II: Combined Operations</em> was on track to be another mostly-forgotten game, still enjoyed by a small group of fans with few other prospects. Then, two years after its release, and without getting any kind of promotional sale price, it started selling like crazy and surged to the front page of the Steam leaderboards. Why? Another team of developers released the alpha of <a href="http://www.dayzmod.com/" rel='nofollow'><em>Day Z</em></a>, a zombie-survival game built as an <em>ARMA II</em> mod. Fans have been clamoring for a particular type of zombie game for a while now (and Cracked&#8217;s Robert Brockway <a href="http://www.cracked.com/blog/the-6-greatest-video-games-well-never-get-to-play/"  rel='nofollow'>pitched</a> a similar idea recently) and the description of <em>Day Z</em> sounds like it fits the bill&mdash;so when the free alpha of the mod was released, lots of people bought a copy of <em>ARMA II</em> so they could give it a try.</p>
<p>In this situation, everybody wins. Gamers get a new game, <em>ARMA II</em> gets renewed sales, <em>Day Z</em> gets to exist (without the need to build a brand new engine). The sales boost to the original might be temporary, or it might spark new interest in the game and revive it entirely, or it might inspire newer and even more popular mods, or&#8230; well, there are a lot of possibilities, none of them <em>bad</em>. All because the <em>ARMA II</em> developers had the foresight to let others add value to what they created.</p>
<p><a href="http://www.techdirt.com/articles/20120516/09044318944/when-games-allow-mods-beautiful-things-can-happen.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120516/09044318944/when-games-allow-mods-beautiful-things-can-happen.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120516/09044318944/when-games-allow-mods-beautiful-things-can-happen.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=99d0bd4aaf3152e86d376b005a64c86d&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=99d0bd4aaf3152e86d376b005a64c86d&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=E74fpDtzUW4:1lH_J7Xveak:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=E74fpDtzUW4:1lH_J7Xveak:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=E74fpDtzUW4:1lH_J7Xveak:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/E74fpDtzUW4" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/when-games-allow-mods-beautiful-things-can-happen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Musician Wonders What It Would Take To Become An Open Source Musician</title>
		<link>http://www.phphosts.org/blog/2012/05/musician-wonders-what-it-would-take-to-become-an-open-source-musician/</link>
		<comments>http://www.phphosts.org/blog/2012/05/musician-wonders-what-it-would-take-to-become-an-open-source-musician/#comments</comments>
		<pubDate>Wed, 16 May 2012 19:42:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120516/01125218936/musician-wonders-what-it-would-take-to-become-open-source-musician.shtml</guid>
		<description><![CDATA[Kevin H alerts us to the news that electronic music/DJ artist The Polish Ambassador recently began musing on Facebook about what it would mean to be an "open source" musician:

According to Wikipedia, "Open Source" is a philosophy that promotes free re... <a href="http://www.phphosts.org/blog/2012/05/musician-wonders-what-it-would-take-to-become-an-open-source-musician/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techdirt.com/profile.php?u=kevinh" rel='nofollow'>Kevin H</a> alerts us to the news that electronic music/DJ artist The Polish Ambassador recently began musing on Facebook about <a href="https://www.facebook.com/thepolishambassador/posts/10151710129980582"  rel='nofollow'>what it would mean to be an &#8220;open source&#8221; musician</a>:</p>
<blockquote><p><i><br />
According to Wikipedia, &#8220;Open Source&#8221; is a philosophy that promotes free redistribution and access to a project&#8217;s design and implementation details. The end user who edits the program is then allowed to send his/her input to the author for possible inclusion in the project.</p>
<p>If an artist like The Polish Ambassador were to become an open sourced project what might that look like? Is there room/possibility for art/music/brands to become open source? Is it already happening? Could this ideology serve some purpose? Maybe a way to get other people&#8217;s ideas out there? A way to collaborate? A way to merge efforts of like minded folks? A way to create art from art? A way to generate $ for end users/charities? It seems to me the possibilities are endless. We all use open sourced software every day. Linux, Firefox, etc, but I haven&#8217;t heard of many artists that when I think of their name, I also think, &#8220;O yea, she/he&#8217;s that open source artist.&#8221; Maybe there&#8217;s a reason for this, maybe not. With Twitter/Facebook and the web in general, technologically speaking, we have never been more connected. Would love to hear your thoughts and ideas. Could &#8220;open source artists&#8221; be an evolutionary step for art?<br />
</i></p></blockquote>
<p>Of course, many folks in the &#8220;free culture&#8221; world would point to <a href="http://creativecommons.org/"  rel='nofollow'>Creative Commons</a> as the artistic equivalent of an open source offering.  However, two interesting things strike me.  First, as of the time I&#8217;m writing this post, no one in the dozens of comments posted to that story mentions CC at all.  Second, the request actually goes a bit further than CC.  It&#8217;s not just about making the works free to distribute or use&#8230; but the second part: sending it back to the original creator for possible inclusion in the project.  Now, again, we have seen some examples of this with various remix projects.  In particular, I&#8217;m reminded of the <a href="http://www.techdirt.com/articles/20090412/2210074468.shtml" rel='nofollow'>experiment by K-OS</a>, where rather than having fans <i>remix</i> an album, he pre-released all the stems, and let fans create their own <i>original mixes</i>, and then took the best for each song and released a combo album: one of his own mixes, and a second of the best fan mixes. In the hip-hop world, releasing instrumentals or acapellas for fans and other artists to remix (and building contests or other promotions around that) is fairly common&mdash;but only a few artists have gone further and offered up the individual bits and pieces. Perhaps that&#8217;s along the lines of what The Polish Ambassador is looking for.</p>
<p>Either way, this has me wondering if there isn&#8217;t something Creative Commons could include in their offerings, or if if this goes beyond that.  It <i>is</i> an interesting point however.  One of the thrills people get in working on open source software isn&#8217;t the fact that they can do what they want with it, but that they can collaborate to make the project better.  Open source developers feel well-earned pride when a contribution gets included in a larger project.  Imagine the same situation with musicians.  What if your favorite band <i>released</i> your remix of their song?  That is, what if they effectively worked with you and said your version was one they really liked &#8212; such that you got the official stamp of approval that had the work more widely distributed?  Again, it appears that some artists are doing this on the margins, but it seems like the kind of thing that could be more clearly formalized and promoted as a cool way for artists to connect with fans <i>and</i> for fans to gain some form of <i>validation</i> for their own help with certain projects.</p>
<p>Oh, and in the meantime, it appears that The Polish Ambassador is <a href="http://thepolishambassador.com/blogs/free-polish-ambassador-discography-7-albums-30-remixes-over-7-hours-free-music"  rel='nofollow'>currently offering up its entire discography for free</a> &#8212; 7 hours worth of music, all in FLAC format.</p>
<p><a href="http://www.techdirt.com/articles/20120516/01125218936/musician-wonders-what-it-would-take-to-become-open-source-musician.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120516/01125218936/musician-wonders-what-it-would-take-to-become-open-source-musician.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120516/01125218936/musician-wonders-what-it-would-take-to-become-open-source-musician.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=de7b6852104a65a815a9968d9d298828&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=de7b6852104a65a815a9968d9d298828&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=t8BS9JQM70Q:DGlJN26HYk4:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=t8BS9JQM70Q:DGlJN26HYk4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=t8BS9JQM70Q:DGlJN26HYk4:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/t8BS9JQM70Q" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/musician-wonders-what-it-would-take-to-become-an-open-source-musician/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Economist: Copyright Is An Antiquated Relic That Has No Place In The Digital Age</title>
		<link>http://www.phphosts.org/blog/2012/05/economist-copyright-is-an-antiquated-relic-that-has-no-place-in-the-digital-age/</link>
		<comments>http://www.phphosts.org/blog/2012/05/economist-copyright-is-an-antiquated-relic-that-has-no-place-in-the-digital-age/#comments</comments>
		<pubDate>Wed, 16 May 2012 18:28:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120515/17375818933/economist-copyright-is-antiquated-relic-that-has-no-place-digital-age.shtml</guid>
		<description><![CDATA[For many years I've been pointing out the basics of economics concerning concepts like "free" and the importance of marginal cost to pricing in an efficient market.  After one such recent post, I got an angry email from a college professor who has work... <a href="http://www.phphosts.org/blog/2012/05/economist-copyright-is-an-antiquated-relic-that-has-no-place-in-the-digital-age/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For many years I&#8217;ve been pointing out the basics of economics concerning concepts like &#8220;free&#8221; and the importance of marginal cost to pricing in an efficient market.  After one such <a href="http://www.techdirt.com/articles/20120503/14160618768/nobody-cares-about-fixed-costs-your-book-movie-whatever.shtml" rel='nofollow'>recent post</a>, I got an angry email from a college professor who has worked in the entertainment industry for many years, telling me that clearly I had never taken an economics class.  That, of course, is not true.  I took a great many economics classes, and learned the economics I talk about here on the site from some of the best economists around.  Either way, I do wonder what this same individual would say upon reading well known (and greatly respected) economist Dean Baker&#8217;s <a href="http://www.aljazeera.com/indepth/opinion/2012/05/2012514204029381972.html"  rel='nofollow'>latest column about how The Pirate Party has got it right on copyright</a>:</p>
<blockquote><p><i><br />
Near the top of the list of the Pirate Party&#8217;s demons is copyright protection, and rightly so. <b>Copyright protection is an antiquated relic of the late Middle Ages that has no place in the digital era. It is debatable whether such government-granted monopolies were ever the best way to finance the production of creative and artistic work, but now that the internet will allow this material to be instantly transferred at zero cost anywhere in the world, copyrights are clearly a counter-productive restraint on technology.</p>
<p>As every graduate of an introductory economics class knows, the market works best when items sell at their marginal cost. That means we maximize efficiency when recorded music, movies, video games and software are available to users at zero cost</b>. The fees that the government allows copyright holders to impose create economic distortions in the same way that tariffs on imported cars or clothes lead to economic distortions.</p>
<p>The major difference is that the distortions from copyright protection are much larger. While tariffs on cars or clothes would rarely exceed 20-30 per cent, the additional cost imposed by copyright protection is the price of the product. Movies that would be free in a world without copyright protection can cost $20-$30. The same is true of video games, and the price of copyrighted software can run into the thousands of dollars.<br />
</i></p></blockquote>
<p>Baker goes on to suggest some alternative means to fund such creative works in a world without copyright, including ideas like &#8220;artistic freedom vouchers&#8221; that would give people a refundable tax credit on supporting creativity, on the condition that any of the creativity funded by such money <b>would not</b> be able to protect it with copyright for a period of time.  I find such program interesting, though I do wonder if they&#8217;d even be necessary.  As we&#8217;ve been <a href="http://www.techdirt.com/blog/casestudies/articles/20120430/11150918717/no-record-label-amanda-palmer-raises-over-100k-just-six-hours-kickstarter.shtml" rel='nofollow'>seeing</a> over and over again, all sorts of interesting new business models are springing up that have nothing to do with copyright.  As there is demand for creativity, I fully expect more and more such models to continue to show up as well.  What I fear is that the focus by those who benefit excessively from the monopoly rents and protectionism of copyright, will lead to cutting off innovation or <a href="http://www.techdirt.com/articles/20120120/15060817494/busta-rhymes-backs-megaupload-says-record-labels-are-real-criminals.shtml" rel='nofollow'>killing off</a> interesting and more efficient business models, before they have a chance to evolve.</p>
<p>Contrary to what some like to say about me, I am not convinced that copyright should be done away with completely.  I do think that it needs significant reform.  I just want that reform to be based on actual evidence and understanding of basic economics rather than faith and the demands of those who have benefited excessively from it, over those who have been held back because of it.</p>
<p><a href="http://www.techdirt.com/articles/20120515/17375818933/economist-copyright-is-antiquated-relic-that-has-no-place-digital-age.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120515/17375818933/economist-copyright-is-antiquated-relic-that-has-no-place-digital-age.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120515/17375818933/economist-copyright-is-antiquated-relic-that-has-no-place-digital-age.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=28e38972f69621252f4d50315d7a61fa&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=28e38972f69621252f4d50315d7a61fa&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=29FzqxLfoc8:aW7Xu5hO5V8:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=29FzqxLfoc8:aW7Xu5hO5V8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=29FzqxLfoc8:aW7Xu5hO5V8:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/29FzqxLfoc8" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/economist-copyright-is-an-antiquated-relic-that-has-no-place-in-the-digital-age/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feds Tie Themselves In Legal Knots Arguing For Domain Forfeiture In Rojadirecta Case</title>
		<link>http://www.phphosts.org/blog/2012/05/feds-tie-themselves-in-legal-knots-arguing-for-domain-forfeiture-in-rojadirecta-case/</link>
		<comments>http://www.phphosts.org/blog/2012/05/feds-tie-themselves-in-legal-knots-arguing-for-domain-forfeiture-in-rojadirecta-case/#comments</comments>
		<pubDate>Wed, 16 May 2012 17:22:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120516/05031118941/feds-tie-themselves-legal-knots-arguing-domain-forfeiture-rojadirecta-case.shtml</guid>
		<description><![CDATA[If you don't recall, among the various domains that ICE and the DOJ seized last year were two domains -- rojadirecta.com and rojadirecta.org -- held by a Spanish company, Puerto 80.  After extended negotiations to try to get the government to return th... <a href="http://www.phphosts.org/blog/2012/05/feds-tie-themselves-in-legal-knots-arguing-for-domain-forfeiture-in-rojadirecta-case/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t recall, among the various domains that ICE and the DOJ seized last year were two domains &#8212; rojadirecta.com and rojadirecta.org &#8212; held by a Spanish company, Puerto 80.  After extended negotiations to try to get the government to return the domain names, Puerto 80 finally <a href="http://www.techdirt.com/articles/20110613/12021514673/rojadirecta-sues-us-government-homeland-security-ice-over-domain-seizure.shtml" rel='nofollow'>sued</a> the government to get them back.  Almost immediately after, the government filed to forfeit the domains (seizing property is supposed to be a temporary thing &#8212; if the owner wants it back, the government has to file for forfeiture to keep it permanently).  Thus there are two semi-parallel issues going on here.  Either way, the judge <a href="http://www.techdirt.com/articles/20110805/10212515405/judge-says-making-it-harder-to-exercise-free-speech-does-not-create-substantial-hardship.shtml" rel='nofollow'>rejected</a> the request to return the domains prior to the trial, and while <a href="http://www.techdirt.com/articles/20110920/01444916022/puerto-80-explains-how-rojadirecta-domain-seizures-violated-first-amendment.shtml" rel='nofollow'>the appeal</a> on that process is ongoing, back in the district court, the fight over forfeiture has continued.</p>
<p>Last December (actually the same day that the government was handing back the Dajaz1 domain in a similar dispute), the lower court <a href="http://www.techdirt.com/articles/20111208/01424117003/court-dismisses-puerto-80-rojadirecta-case-now-doesnt-give-back-domain.shtml" rel='nofollow'>dismissed</a> the forfeiture claim &#8212; saying that the government failed to plead willful copyright infringement, which is necessary to show criminal copyright infringement.  However, it allowed the government to refile, which it did.  The two sides  have filed their latest motions in the case, and once again, it appears that they&#8217;re talking about two totally different things.  In fact, reading through <a href="http://ia600501.us.archive.org/31/items/gov.uscourts.nysd.380872/gov.uscourts.nysd.380872.49.0.pdf"  rel='nofollow'>the government&#8217;s filing</a>, it appears that they either have no understanding of the law itself, or have twisted themselves into such a tight knot, that they&#8217;re not sure how to get out of it.</p>
<p>The details are a bit tedious, but let&#8217;s see if we can break it out.  First off, the seizure and forfeiture are &#8220;in rem&#8221; &#8212; meaning that the case is against the domains themselves, and not the owners of the domains.  That can be an awkward distinction, obviously, but the government makes it much, much more awkward in that it seems to shift its argument back and forth constantly.  For example, it repeatedly (in a rather mocking tone) rejects the arguments of Puerto 80 by noting that no one is accusing Puerto 80 of anything.  The case is merely about how the Rojadirecta domains &#8220;facilitate&#8221; criminal copyright infringement.  So the government argues that the court should ignore the (rather compelling) defenses for why Puerto 80 did not violate criminal copyright law.</p>
<p>Now, that part is fine&#8230; but where it gets weird is that the government <i>immediately</i> then tries to use Puerto 80s actions as proof of facilitating infringement.  If you&#8217;re playing along with the home game, the government is arguing both that <i>Puerto 80s actions are meaningless to the case</i> and that <i>Puerto 80&#8242;s actions are the key to facilitating criminal copyright infringement</i>.  Basically, whenever Puerto 80 points out that its actions do not meet the standard of criminal copyright infringement, the government waves its hands and says &#8220;doesn&#8217;t matter, we&#8217;re not charging you, just the URL.&#8221;  But then to prove that the URL &#8220;facilitated&#8221; the actions, it cites Puerto 80&#8242;s actions, rather than the URL&#8217;s actions.  That&#8217;s because the URL <i>doesn&#8217;t act</i>.  It&#8217;s just a URL.  See the following as an example:</p>
<blockquote><p><i><br />
Additionally, there can be no serious argument that the Government has alleged that the<br />
Rojadirecta Domain Names&#8217;  facilitation of  the underlying copyright offense was anything but substantial.<br />
See Amended Complaint&#8230; (&#8220;At all relevant times, the links displayed on the main homepage of  the<br />
Rojadirecta Website were purposefully aggregated and organized by the owner(s) and/or operator(s) of<br />
the Rojadirecta Website.  Moreover, more than half of  the material available on the Rojadirecta Website<br />
at any given time during law enforcement&#8217;s investigation appeared to be dedicated to making infringing<br />
content available to users of  the Rojadirecta Website.&#8221;)&#8230;.</p>
<p>Puerto 80&#8242;s arguments about its own conduct are irrelevant and misapprehend the nature of  the<br />
inquiry<br />
</i></p></blockquote>
<p>See that?  First it&#8217;s &#8220;here&#8217;s all the evidence of things done by Puerto 80&#8243;&#8230; and then immediately, &#8220;Puerto 80&#8242;s actions are irrelevant&#8221;.</p>
<p>At times this reaches absolutely absurd levels, such as the part of the government&#8217;s filing in which they assert that <i>the domain itself had knowledge of infringement</i>.  The feds can&#8217;t say Puerto 80 had knowledge, since (again) they admit that Puerto 80 is not being charged.  So they switch and anthropomorphize the domain itself:</p>
<blockquote><p><i><br />
Indeed, the Rojadirecta Domain Names were repeatedly noticed<br />
that they were linking to copyright infringing content.<br />
</i></p></blockquote>
<p>You see?  It&#8217;s not Puerto 80 who was noticed, but the domain name itself.  It must have &#8220;known.&#8221;  Or something.</p>
<p>The government&#8217;s argument gets even worse from there, because nowhere does it show where the criminal copyright infringement happened.  In order for the government to claim that the Rojadirecta domains facilitated criminal copyright infringement, you would think the first step would have to be to show where it actually happened.  Here, the government basically waves its hand and says, &#8220;of course it happened.&#8221;  First, it highlights the fact that because of links on the Rojadirecta sites, content could be streamed <i>from third party sites</i>.  In fact, it straight out admits that Rojadirecta hosted no infringing content, but rather it was all on these other sites.  It then notes that such streams likely violated the performance and reproductions rights under the Copyright Act.  That may be true, but that, alone, does not make it a <i>criminal</i> offense.  That requires willfulness &#8212; which was the problem in the original filing.</p>
<p>But, here again, the feds run into a serious problem: how can they show willfulness on the part of the infringer when <i>they never identify an infringer</i>? The entire filing insists that the domains should be forfeited because they were used to facilitate a crime, but they never show that any crime was actually committed, because they never even attempt to identify who committed the crime.  They admit that it&#8217;s not Puerto 80 (even as they try to use Puerto 80&#8242;s actions).  It likely isn&#8217;t the users of Rojadirecta (and the government doesn&#8217;t even try to make that claim).  Instead, it seems to hint at an imaginary party who willfully infringed, but is never actually identified!  It&#8217;s really amazing.</p>
<p>The implications here are <b><i>staggering</i></b>.  Basically, the feds are arguing that they can seize and then forfeit a domain without showing any crime actually happened.  Instead, all they need to do is vaguely assert that someone, somewhere may have possibly violated a law somehow using the domain in the process &#8212; but they never have to actually prove anyone violated the specific law.  In other words, if the government wanted to, under this definition, it could easily seize and forfeit any search engine domain or any website that allows public comments, merely by asserting that a link in a search result or a link in a comment led to infringing material.  That&#8217;s an insane interpretation of the law &#8212; yet it appears to be the one that the feds are asserting.</p>
<p>One hopes that the judge actually understands the absolutely insanity of the feds&#8217; argument here.  Puerto 80&#8242;s lawyers <a href="http://ia600501.us.archive.org/31/items/gov.uscourts.nysd.380872/gov.uscourts.nysd.380872.51.0.pdf"  rel='nofollow'>lay it out nicely</a> (pdf) in their response, but courts can be funny sometimes &#8212; especially in copyright cases.  Still, the argument made by Puerto 80&#8242;s lawyers lay out just how ridiculous this interpretation would be:</p>
<blockquote><p><i><br />
Under the government&#8217;s construction of [the law], every domain name<br />
that pointed to a website containing links to infringing copies would &#8220;facilitate&#8221; and have a<br />
&#8220;substantial connection&#8221; to the offense of criminal copyright infringement, and would therefore<br />
be subject to forfeiture.  The broad construction of the term &#8220;facilitation&#8221; the government seeks<br />
would give it the power to shut down google.com, yahoo.com, bing.com, or any of an array of<br />
other channels of communication that&#8212;like every site on the Internet&#8212;link to content provided<br />
by third parties that might or might not be infringing.  The property in question is two domain<br />
names, which (in the government&#8217;s words) are merely &#8220;labels&#8221; that &#8220;resolve&#8221; to websites, and are<br />
distinct from the servers that host the website or any content of it&#8230;.</p>
<p>The government&#8217;s theory would<br />
have allowed it to seize the New York Times issue that published the Pentagon Papers and<br />
destroy it, on the theory that the New York Times was facilitating Daniel Ellsberg&#8217;s violation of<br />
national security laws.  And the Times would have had no opportunity to show that its speech<br />
was lawful.  There is no reason to think Congress intended the forfeiture statute to extend so<br />
broadly.  And even if it had, Congress lacks the power to confer such plenary control over<br />
speech on government agents acting without judicial sanction.<br />
</i></p></blockquote>
<p>Of course, all of this doesn&#8217;t even touch on two other important issues in the case.  One is the First Amendment questions raised by seizing a domain and the second is the fact that US copyright law only matters in the US, not in Spain.  In both cases, the government again comes back with wacky responses.  On the First Amendment claim, it argues there&#8217;s no First Amendment issue, relying incorrectly on the Arcara vs. Cloud Books case.  But that ruling is clear that it only applies if the crime in question is not expressive.  But copyright infringement is often absolutely expressive.  It may not be <i>protected</i> expression but it is expression, and as such it requires First Amendment scrutiny to make that determination.  The government flat out claims that copyright infringement (which it falsely calls &#8220;intellectual property theft&#8221;) is &#8220;unrelated to speech.&#8221;  That&#8217;s simply incorrect.  Courts have long established that there is a balance between copyright and the First Amendment, and you can only establish infringement following a ruling by a court.  Yet here the government wants to skip over that step entirely.  As Puerto80 notes:</p>
<blockquote><p><i><br />
The government argues that the links on the Rojadirecta website are not protected speech<br />
because they constitute copyright infringement.  But that argument exactly misses the point of<br />
the prior restraint doctrine.  Unless and until there has been a final determination on the merits<br />
after an adversary hearing, there is no basis to find that criminal copyright infringement occurred<br />
on the third party sites to which the Rojadirecta website linked.<br />
</i></p></blockquote>
<p>As for US law being applied outside the US, here the government just tries to wave this issue off again.  It first admits that US law does not apply outside its borders, but then insists that it is &#8220;inconceivable&#8221; that <i>some</i> infringement didn&#8217;t happen inside the US.  But that&#8217;s not how the law works.  You have to actually show the infringement.  You can&#8217;t just insist that it happened somewhere in the US and move on&#8230;</p>
<p>The further this case goes, the worse and worse the government&#8217;s arguments seem to get, and the less and less it seems to understand about the hole it has dug for itself.</p>
<p><a href="http://www.techdirt.com/articles/20120516/05031118941/feds-tie-themselves-legal-knots-arguing-domain-forfeiture-rojadirecta-case.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120516/05031118941/feds-tie-themselves-legal-knots-arguing-domain-forfeiture-rojadirecta-case.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120516/05031118941/feds-tie-themselves-legal-knots-arguing-domain-forfeiture-rojadirecta-case.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=996db25fca6dae4c9a96022d227e6d96&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=996db25fca6dae4c9a96022d227e6d96&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=vNDNmTdokkI:RryUsosNKs4:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=vNDNmTdokkI:RryUsosNKs4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=vNDNmTdokkI:RryUsosNKs4:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/vNDNmTdokkI" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/feds-tie-themselves-in-legal-knots-arguing-for-domain-forfeiture-in-rojadirecta-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Church Sues Former Members For Posting A Negative Review Online</title>
		<link>http://www.phphosts.org/blog/2012/05/church-sues-former-members-for-posting-a-negative-review-online/</link>
		<comments>http://www.phphosts.org/blog/2012/05/church-sues-former-members-for-posting-a-negative-review-online/#comments</comments>
		<pubDate>Wed, 16 May 2012 16:25:00 +0000</pubDate>
		<dc:creator>News</dc:creator>
				<category><![CDATA[Syndicated]]></category>

		<guid isPermaLink="false">http://www.techdirt.com/articles/20120516/02114018938/church-sues-former-members-posting-negative-review-online.shtml</guid>
		<description><![CDATA[Nastybutler77 was the first of a few people to send over this story of a church pastor, Charles O'Neal, of the Beaverton Grace Bible Church in Oregon, suing a former church member, Julie Anne Smith, and her family, for posting a negative review of the ... <a href="http://www.phphosts.org/blog/2012/05/church-sues-former-members-for-posting-a-negative-review-online/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techdirt.com/profile.php?u=fsjja1" rel='nofollow'>Nastybutler77</a> was the first of a few people to send over this story of a church pastor, Charles O&#8217;Neal, of the Beaverton Grace Bible Church in Oregon, <a href="http://www.katu.com/news/local/Beaveton-Grace-Bible-Church-lawsuit-charles-oneal-julie-anne-smith-151227055.html?tab=video&#038;c=y"  rel='nofollow'>suing a former church member</a>, Julie Anne Smith, and her family, for posting a negative review of the church online.  O&#8217;Neal claims that the review was defamation, and apparently <a href="http://bgbcsurvivors.blogspot.com/2012/02/chucks-reviews-of-me-on-google-and.html"  rel='nofollow'>responded to Smith&#8217;s review</a> on Google with a post about how Smith was lying and how he was planning to sue.</p>
<p>Some of <a href="http://3.bp.blogspot.com/-Oeob1sfsrwU/T6grG1KpLDI/AAAAAAAAAIg/nx0Jmfx2VLs/s1600/Summons+Blog+4.jpg"  rel='nofollow'>the specifics</a> argued in the lawsuit do seem to quite critical of the church, but it&#8217;s not clear they rise to the level of defamation:<br />
<center><br />
<a href="http://imgur.com/TSWtf" rel='nofollow'><img src="http://i.imgur.com/TSWtf.jpg" width=400 /></a><br />
</center><br />
<br />
The original report also claims that part of the lawsuit claims that using the word &#8220;creepy&#8221; is defamatory.  While the factual statements <i>might</i> be defamatory, opinion statements such as calling a place creepy are clearly not.</p>
<p>For what it&#8217;s worth, Oregon appears to have <a href="http://lindawilliams.net/node/23"  rel='nofollow'>a reasonably strong anti-SLAPP law</a>, and I wonder if Smith will make use of that.  It will depend on the details of her statements to see if they were truly defamatory, but the general descriptions provided certainly make it appear like a vindictive lawsuit to silence a vocal critic.</p>
<p><a href="http://www.techdirt.com/articles/20120516/02114018938/church-sues-former-members-posting-negative-review-online.shtml" rel='nofollow'>Permalink</a> | <a href="http://www.techdirt.com/articles/20120516/02114018938/church-sues-former-members-posting-negative-review-online.shtml#comments" rel='nofollow'>Comments</a> | <a href="http://www.techdirt.com/articles/20120516/02114018938/church-sues-former-members-posting-negative-review-online.shtml?op=sharethis" rel='nofollow'>Email This Story</a><br />
 <br clear="both" style="clear: both;"/><br />
<br clear="both" style="clear: both;"/><br />
<a href="http://ads.pheedo.com/click.phdo?s=25b3c0c21fe89fd14b7af4015d2015a7&#038;p=1" rel='nofollow'><img alt="" style="border: 0;" border="0" src="http://ads.pheedo.com/img.phdo?s=25b3c0c21fe89fd14b7af4015d2015a7&#038;p=1"/></a><br />
<img alt="" height="0" width="0" border="0" style="display:none" src="http://tags.bluekai.com/site/5148"/><img alt="" height="0" width="0" border="0" style="display:none" src="http://insight.adsrvr.org/track/evnt/?ct=0:8pyu3gz&#038;adv=wouzn4v&#038;fmt=3"/>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=ww4mucUGWbI:0QVVAKX5XS8:D7DqB2pKExk" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?i=ww4mucUGWbI:0QVVAKX5XS8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/techdirt/feed?a=ww4mucUGWbI:0QVVAKX5XS8:c-S6u7MTCTE" rel='nofollow'><img src="http://feeds.feedburner.com/~ff/techdirt/feed?d=c-S6u7MTCTE" border="0"></img></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/techdirt/feed/~4/ww4mucUGWbI" height="1" width="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.phphosts.org/blog/2012/05/church-sues-former-members-for-posting-a-negative-review-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

