<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>Calder Group Inc</title>
	<link>http://caldergroup.com/blog</link>
	<description></description>
	<pubDate>Mon, 21 May 2007 16:05:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title> Active Scaffold for Rails: Many to Many </title>
		<link>http://caldergroup.com/blog/2007/05/active-scaffold-for-rails-many-to-many/</link>
		<comments>http://caldergroup.com/blog/2007/05/active-scaffold-for-rails-many-to-many/#comments</comments>
		<pubDate>Mon, 21 May 2007 16:01:59 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/active-scaffold-for-rails-many-to-many/</guid>
		<description><![CDATA[Yesterday I downloaded Active Scaffold and played around with it. I have to say its pretty nice and really easy to use. 

script/plugin install http://activescaffold.googlecode.com/svn/tags/active_scaffold
create three tables items, baskets, and baskets_items (see SQL below)
create a simple layout with two includes
                [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I downloaded <a href="http://activescaffold.com/tutorials/getting-started">Active Scaffold</a> and played around with it. I have to say its pretty nice and really easy to use. </p>
<ol>
<li>script/plugin install http://activescaffold.googlecode.com/svn/tags/active_scaffold</li>
<li>create three tables items, baskets, and baskets_items (see SQL below)</li>
<li>create a simple layout with two includes<br />
                     <code><br />
                      < %= javascript_include_tag :defaults %><br />
                      < %= active_scaffold_includes %><br />
                   </code></li>
<li>create two models examples below SQL, Item and Basket and add <em>has_and_belongs_to_many :items</em> to Basket </li>
<li>create two controllers one for Item and one for Basket and make sure each has the keyword <em>active_scaffold</em></li>
<li>navigate to items or baskets and enjoy!</li>
</ol>
<h5> SQL for tables</h5>
<p><code><br />
DROP TABLE IF EXISTS baskets;</p>
<p>CREATE TABLE baskets (<br />
        id                 INT(11)      NOT NULL AUTO_INCREMENT,<br />
        basket_name        VARCHAR(40)  NOT NULL COMMENT 'name of the basket, should match event',<br />
        PRIMARY KEY (id)<br />
)<br />
ENGINE=INNODB;</p>
<p>DROP TABLE IF EXISTS items;</p>
<p>CREATE TABLE items (<br />
        id                 INT(11)      NOT NULL AUTO_INCREMENT,<br />
        name               VARCHAR(40)  NOT NULL COMMENT 'name of the item',<br />
        qualities          VARCHAR(40)  NOT NULL COMMENT 'comma seperated list of qualities we may infer about the person consuming the item',<br />
        PRIMARY KEY (id)<br />
)<br />
ENGINE=INNODB;</p>
<p>DROP TABLE IF EXISTS baskets_items;</p>
<p>CREATE TABLE baskets_items (<br />
        basket_id               INT(11) NOT NULL,<br />
        item_id                 INT(11) NOT NULL,<br />
        PRIMARY KEY (basket_id,item_id)<br />
)<br />
ENGINE=INNODB;<br />
</code></p>
<h5>Many-to-Many models</h5>
<p><code><br />
class Basket < ActiveRecord::Base<br />
  has_and_belongs_to_many :items<br />
end</p>
<p>class Item < ActiveRecord::Base<br />
end<br />
</code></p>
<h5>Controllers</h5>
<p></code><code><br />
class BasketsController < ApplicationController</p>
<p>  layout "active_scaffold"<br />
  active_scaffold :basket</p>
<p>end</p>
<p>class ItemsController < ApplicationController</p>
<p>  layout "active_scaffold"<br />
  active_scaffold :items</p>
<p>end<br />
</code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/active-scaffold-for-rails-many-to-many/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Pidgin 2.0 on Debian Etch</title>
		<link>http://caldergroup.com/blog/2007/05/installing-pidgin-20-on-debian-etch/</link>
		<comments>http://caldergroup.com/blog/2007/05/installing-pidgin-20-on-debian-etch/#comments</comments>
		<pubDate>Fri, 11 May 2007 02:25:26 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/installing-pidgin-20-on-debian-etch/</guid>
		<description><![CDATA[Wow, lots of libraries to install if you want to build Pidgin from src on Debain Etch. I can&#8217;t even name them all.

 Get the Pidgin source.
Unpack tar xjf pidgin*.bz2
run ./configure
keep installing development libs and perl XML::Parser (which requires libexpat-dev) until config stops complaining
make
sudo make install

You may also pick up the experimental debs here. For [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, lots of libraries to install if you want to build Pidgin from src on Debain Etch. I can&#8217;t even name them all.</p>
<ul>
<li> Get the <a href="http://www.pidgin.im/pidgin/download/source/">Pidgin source</a>.</li>
<li>Unpack <i>tar xjf pidgin*.bz2</i></li>
<li>run <i>./configure</i></li>
<li>keep installing development libs and perl XML::Parser (which requires libexpat-dev) until config stops complaining</li>
<li><i>make</i></li>
<li><i>sudo make install</i></li>
</ul>
<p>You may also pick up the experimental debs <a href="http://packages.debian.org/cgi-bin/search_packages.pl?keywords=pidgin&#038;searchon=names&#038;subword=1&#038;version=all&#038;release=all">here</a>. For me the experimental debs had too many unfamiliar dependencies. </p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/installing-pidgin-20-on-debian-etch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Peer code review tools for java</title>
		<link>http://caldergroup.com/blog/2007/05/peer-code-review-tools-for-java/</link>
		<comments>http://caldergroup.com/blog/2007/05/peer-code-review-tools-for-java/#comments</comments>
		<pubDate>Wed, 09 May 2007 03:47:08 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/peer-code-review-tools-for-java/</guid>
		<description><![CDATA[Everyone says code reviews are great, but I&#8217;ve always had trouble getting them off the ground. I spend some time looking for tools to assist in peer reviews. Usually I&#8217;m the first to say buy it, but with commercial tools costing up to $400 a seat who want to buy a tool to manage a [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone says code reviews are great, but I&#8217;ve always had trouble getting them off the ground. I spend some time looking for tools to assist in peer reviews. Usually I&#8217;m the first to say buy it, but with <a href="http://smartbearsoftware.com/codecollab.php">commercial tools</a> costing up to $400 a seat who want to buy a tool to manage a process which may not even exist. </p>
<p>Tracs has a <a href="http://trac-hacks.org/wiki/PeerReviewPlugin">plug-in</a> to do peer code reviews. Thats pretty cool, as Tracs is widely used.</p>
<p>I would love to get my hands on <a href="http://talkback.zdnet.com/5208-11470-0.html?forumID=1&#038;threadID=28021&#038;messageID=525359&#038;start=-1">Mondorian</a> but thats not going to happy with all that proprietary google code. </p>
<p><a href="http://codestriker.sourceforge.net/">Code striker</a> looks like a decent peer review tool. Its very active with the last release in Mach 2007.</p>
<p>Finally in a different category is <a href="http://quilt.sourceforge.net/">Quilt</a> a code coverage tool. It says optimized to work with ant and Maven and jUnit so I&#8217;ll have to check it out.</p>
<p><em>update: I found one more code coverage tool</em> <a href="http://emma.sourceforge.net/samples.html">Emma </a>.  It is supposed to be very easy to use and set up.</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/peer-code-review-tools-for-java/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scalling with YouTube&#8217;s oracle algorithm for speeding up writes</title>
		<link>http://caldergroup.com/blog/2007/05/scalling-with-youtubes-oracle-algorithm-for-speeding-up-writes/</link>
		<comments>http://caldergroup.com/blog/2007/05/scalling-with-youtubes-oracle-algorithm-for-speeding-up-writes/#comments</comments>
		<pubDate>Sat, 05 May 2007 00:33:54 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[The Web]]></category>

		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/scalling-with-youtubes-oracle-algorithm-for-speeding-up-writes/</guid>
		<description><![CDATA[Paul Tuckfield from YouTube presented at the mySQL conference. He devised the oracle algorithm to speed up MySQL replication. 
The short of it is pretty simple. Scan the replication log then create/execute SQL queries to ensure to-be-altered data is already in memory on the slave. 



]]></description>
			<content:encoded><![CDATA[<p>Paul Tuckfield from YouTube presented at the mySQL conference. He devised the <a href="http://jan.prima.de/~jan/plok/archives/62-The-oracle-Algorithm-this-is-a-small-o.html">oracle algorithm</a> to speed up MySQL replication. </p>
<p>The short of it is pretty simple. Scan the replication log then create/execute SQL queries to ensure to-be-altered data is already in memory on the slave. </p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-1552374019466639";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "000000";
google_color_link = "CC0033";
google_color_bg = "FFCC33";
google_color_text = "000000";
google_color_url = "CC0033";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/scalling-with-youtubes-oracle-algorithm-for-speeding-up-writes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MySQL One Large Table is better than many small tables</title>
		<link>http://caldergroup.com/blog/2007/05/mysql-one-large-table-is-better-than-many-small-tables/</link>
		<comments>http://caldergroup.com/blog/2007/05/mysql-one-large-table-is-better-than-many-small-tables/#comments</comments>
		<pubDate>Sat, 05 May 2007 00:29:49 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/mysql-one-large-table-is-better-than-many-small-tables/</guid>
		<description><![CDATA[With MySQL one large table is almost always faster then many small tables. This is attributed to MySQL&#8217;s exclusive use of a nested join algorithm. Check out Peter Zaitsev comment at the end of the page.
The nested join algorithm has to loop through the inner and outer elements of the loop to find matches. The [...]]]></description>
			<content:encoded><![CDATA[<p>With MySQL one large table is almost always faster then many small tables. This is attributed to MySQL&#8217;s exclusive use of a nested join algorithm. Check out <a href="http://forum.mysqlperformanceblog.com/s/t/10/">Peter Zaitsev comment</a> at the end of the page.</p>
<p>The nested join algorithm has to loop through the inner and outer elements of the loop to find matches. The more joins, the more nested loops. So one large table is almost always better.</p>
<p>Of course, a huge de-normalized table has some problems, namely data duplication. If you have a list of people with addresses, changing something simple like a zip code or a city name is a pain. You have to scan the whole table changing multiple rows. A db in 3rd normal form would enable a zip code or city update of just one row.</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/mysql-one-large-table-is-better-than-many-small-tables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Faceted Searching With Solr</title>
		<link>http://caldergroup.com/blog/2007/05/faceted-searching-with-solr/</link>
		<comments>http://caldergroup.com/blog/2007/05/faceted-searching-with-solr/#comments</comments>
		<pubDate>Fri, 04 May 2007 06:18:49 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Web Analytics]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/faceted-searching-with-solr/</guid>
		<description><![CDATA[Chris Hostetter presented this presentation at Apache Con 2006. Faceted searching with Solr. Its pretty good and well worth the read. Solr has some special caching mechanisms to deal with facetes. I know one of the first implementations of Solr at CNET was to support facted search. So you wouldn&#8217;t be wrong in saying Solr [...]]]></description>
			<content:encoded><![CDATA[<p>Chris Hostetter presented this presentation at Apache Con 2006. <a href="http://people.apache.org/~hossman/apachecon2006us/faceted-searching-with-solr.pdf">Faceted searching with Solr</a>. Its pretty good and well worth the read. Solr has some special caching mechanisms to deal with facetes. I know one of the first implementations of Solr at CNET was to support facted search. So you wouldn&#8217;t be wrong in saying Solr was built to do faceted search.</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/faceted-searching-with-solr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Clients for SOLR in Python Java Ruby Rails Drupal JSON C#</title>
		<link>http://caldergroup.com/blog/2007/05/clients-for-solr-in-python-java-ruby-rails-drupal-json-c/</link>
		<comments>http://caldergroup.com/blog/2007/05/clients-for-solr-in-python-java-ruby-rails-drupal-json-c/#comments</comments>
		<pubDate>Tue, 01 May 2007 22:30:02 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/05/clients-for-solr-in-python-java-ruby-rails-drupal-json-c/</guid>
		<description><![CDATA[Apache Solr really seems to be taking off. Its a web-based wrapper supporting a simple REST protocol. There are clients available in quite a few languages

Solr Ruby client
Solr PHP client
Solr Java client
Solr Embedded Java client for use without HTTP
Solr JSON client for javascript
Solr C# client even one for C sharp
the JSON client is recommended as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lucene.apache.org/solr/">Apache Solr</a> really seems to be taking off. Its a web-based wrapper supporting a simple REST protocol. There are clients available in quite a few languages</p>
<ul>
<li><a href="http://wiki.apache.org/solr/SolRuby">Solr Ruby client</a></li>
<li><a href="http://wiki.apache.org/solr/SolPHP">Solr PHP client</a></li>
<li><a href="http://wiki.apache.org/solr/SolJava">Solr Java client</a></li>
<li><a href="http://wiki.apache.org/solr/EmbeddedSolr">Solr Embedded Java client</a> for use without HTTP</li>
<li><a href="http://wiki.apache.org/solr/SolJSON">Solr JSON client</a> for javascript</li>
<li><a href="http://wiki.apache.org/solr/SolrSharp">Solr C# client</a> even one for C sharp</li>
<li>the JSON client is recommended as the <a href="http://undefined.org/python/#simplejson">Solr Python Client</a> but there is a <a href="http://svn.apache.org/repos/asf/lucene/solr/trunk/client/python/solr.py">solr.py</a> file in the repository which has <a href="http://www.mail-archive.com/solr-user@lucene.apache.org/msg03232.html">undocumented multi-map support</a></li>
</ul>
<p>There are also integrations for many major platforms</p>
<ul>
<li><a href="http://forrest.apache.org/pluginDocs/plugins_0_80/org.apache.forrest.plugin.output.solr/">Apache Forest Pluging</a></li>
<li><a href="http://drupal.org/project/solr">Solr Drupal Client</a></li>
<li><a href="http://code.google.com/p/fac-back-opac/">Solr Django Client</a></li>
<li> <a href="http://acts-as-solr.rubyforge.org/">Simple Rails Solr Client</a> with the more advanced <a href="http://wiki.apache.org/solr/Flare">Flare</a></li>
<p> still in development, but usable</p>
<li><a href="http://ecmarchitect.com/archives/2007/03/02/742">Solr Alfresco Integration</a></li>
</ul>
<p>No excuses, get your Solr on</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/05/clients-for-solr-in-python-java-ruby-rails-drupal-json-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top 5 Skills for Online Media Engineers</title>
		<link>http://caldergroup.com/blog/2007/04/top-5-skills-for-online-media-engineers/</link>
		<comments>http://caldergroup.com/blog/2007/04/top-5-skills-for-online-media-engineers/#comments</comments>
		<pubDate>Mon, 30 Apr 2007 18:56:05 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/04/top-5-skills-for-online-media-engineers/</guid>
		<description><![CDATA[To me the interesting thing is the lack of variety. Where is the scripaculous, wicket, solr, and sitemesh?]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reviewing a lot of resumes for contract positions at several of the 10 ten online media companies. Its interesting to see the common set of java skill develop. So if you want to be a java developer here are the skills the market is presenting.</p>
<ul>
<li>Struts MVC - the MVC everyone uses, inhouse MVC are dying out replace by open source versions</li>
<li>AJAX - everyone has this on their resume, but everyone means form validation without reloads (see Struts above)</li>
<li>XML - its the new way to write configuration files </li>
<li>JSP - This means understanding the servlet lifecycle and the ability to do gunt work by adapting the web pages for constant updates</li>
<li>CSS - everyone knows the basics of CSS which is good, big change from 2 years ago</li>
<li>JSTL &#038; Tags - shows up on almost all resumes and everyone has a different level of experience</li>
<li>ORM &#038; DAO - anything goes, lots of inhouse code which people are afraid to change</li>
<li>Spring - but only as an IOC container for Hibernate and the occasions bean configuration management</li>
</ul>
<p>To me the interesting thing is the lack of variety. My favorite question so far has been:</p>
<p>Q: &#8220;Which XML parser did you use?&#8221;<br />
A: &#8220;DOM &#038; SAX&#8221;<br />
Q: &#8220;Oh sorry let me rephrase, which implementation of an XML parser did you use?&#8221;<br />
A: &#8220;DOM &#038; SAX&#8221;</p>
<p>Its always the same! I&#8217;m not sure how exactly people are doing XML parsing with out knowing the implementation. I must be missing some super easy <em>parsenow </em> function in java. A quick google shows that even the Sun tutorial lists the <a href="http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/overview/3_apis.html">XML parsers</a></p>
<p>What interests me the most is how shallow the tool box is. Take the MVC layer. I expected more variety like <a href="http://www.blainekendall.com/index.php/archives/2005/04/05/which-java-mvc-framework-to-use/">Wicket or Struts2</a>. Spring is a good solution, but it doesn&#8217;t go far enough (especially in the view and model departments). Additional packages like Tiles and Sitemesh make a big difference. </p>
<p>Spring is a nice and people should use the configuration management and aspect oriented features more. </p>
<p>No one seems to have any knowledge of javascript libraries, which is really a shame. Pick a simple one and learn it. Its easy and lots of fun. I recommend <a href="http://script.aculo.us">script.aculo.us</a> or <a href="http://jquery.com">JQuery</a>.  <a href="http://simile.mit.edu/exhibit/">Exhibit </a> is a standout facited browser written in javascript. </p>
<p>Lastly would be search. Search is a key skill for an online media company. Pick a searching technology and learn it. I suggest <a href="http://lucene.apache.org/solr/">Solr</a>, but MySQL full text search is a simple alternative. <a href="http://www.egothor.org/index.shtml">Egothor </a> is all java and interesting, but I haven&#8217;t used it. A nice little project would be to create a simple collection and use scriptaculous to make suggestions as you type. </p>
<p>With all the good stuff out there why doesn&#8217;t more of it show up on resumes?</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/04/top-5-skills-for-online-media-engineers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 Great Things About Rails MVC layer</title>
		<link>http://caldergroup.com/blog/2007/04/5-great-things-about-rails-mvc-layer/</link>
		<comments>http://caldergroup.com/blog/2007/04/5-great-things-about-rails-mvc-layer/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 16:13:41 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Rails]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/04/5-great-things-about-rails-mvc-layer/</guid>
		<description><![CDATA[Everyone can learn something from looking at the Rails MVC framework. Here are some highlights
1) The model is feature rich, making it easy to data manipulation in the model. For example code is often put in the controller to determine if an object is an update or an insert. This code should live in the [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone can learn something from looking at the Rails MVC framework. Here are some highlights</p>
<p>1) The model is feature rich, making it easy to data manipulation in the model. For example code is often put in the controller to determine if an object is an update or an insert. This code should live in the model; it shouldn&#8217;t pollute the controller<br />
2) There are helpers which are only accessible in the view. So little if then statements, popup windows, and javascript generation may be tucked away with out the temptation to manipulate them before the view is rendered. Today there is too much side effect programming where a controller will generate view code.<br />
3) RJS templates provide a mechanism for injecting javascript, while keeping it separate from the view and controller. This rocks, the javascript can live on its own manipulating the page after its rendered and it can read session data.<br />
4) Patterns for manipulating hashes make parameter logic easy. Rails has patterns for removing empty elements from hashes and combining hashes together, then digesting the resulting hash. This gets rid of all the if/then logic to check if a parameter has a value<br />
5) Lots of helpers. Link helpers, URL helpers, image helpers, javascript lib helpers. This ensures that all paths get a little wrapper tag. This is a life saver when developing multi-channel or multi-partner sites</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/04/5-great-things-about-rails-mvc-layer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Patent Claims and Marshall TX</title>
		<link>http://caldergroup.com/blog/2007/04/patent-claims-and-marshall-tx/</link>
		<comments>http://caldergroup.com/blog/2007/04/patent-claims-and-marshall-tx/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 16:48:31 +0000</pubDate>
		<dc:creator>ericp</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://caldergroup.com/blog/2007/04/patent-claims-and-marshall-tx/</guid>
		<description><![CDATA[Techdirt reported Patent Trolls love Marshall TX.  Which was also reported in a recent Slashdot article  
People are often critical of patents sighting examples of big companies picking on little ones. Honestly I see it the other way around. Small companies get acquired while large companies get picked on by small companies with [...]]]></description>
			<content:encoded><![CDATA[<p>Techdirt reported <a href="http://www.techdirt.com/articles/20060203/0332207.shtml">Patent Trolls love Marshall TX</a>.  Which was also reported in a recent <a href="http://apple.slashdot.org/article.pl?sid=07/04/24/0055211&#038;from=rss">Slashdot article </a> </p>
<p>People are often critical of patents sighting examples of big companies picking on little ones. Honestly I see it the other way around. Small companies get acquired while large companies get picked on by small companies with nothing to loose. I would rather have the current system for intellectual property then no system at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://caldergroup.com/blog/2007/04/patent-claims-and-marshall-tx/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
