<?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>Big Red Tin &#187; blogging</title>
	<atom:link href="http://bigredtin.com/tag/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://bigredtin.com</link>
	<description>Thoughts about the web and business from the large pantry</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:55:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Thesis V WordPress, Pearson V Mullenweg</title>
		<link>http://bigredtin.com/2010/thesis-v-wordpress/</link>
		<comments>http://bigredtin.com/2010/thesis-v-wordpress/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 01:33:38 +0000</pubDate>
		<dc:creator>Peter Wilson</dc:creator>
				<category><![CDATA[Behind the Websites]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Chris Pearson]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[Matt Mullenweg]]></category>
		<category><![CDATA[Movable Type]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Thesis]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bigredtin.pressgiant.net/?p=669</guid>
		<description><![CDATA[Mullenweg believes that, because WordPress is released under the GPLv2 license, all themes and plugins developed for WordPress must also be released under the same license. Pearson disagrees. I believe that Mullenweg is wrong. WordPress themes can operate on other blogging platforms with minimal changes.]]></description>
			<content:encoded><![CDATA[<p>Reading my WordPress feeds this-morning, it appears a <a title="war of words" href="http://thenextweb.com/socialmedia/2010/07/14/wordpress-and-thesis-go-to-battle-mullenweg-may-sue/">war of words</a> broke out overnight between Matt Mullenweg (the lead developer of WordPress) and Chris Pearson, the developer of the Thesis theme.</p>
<p>In brief, Mullenweg believes that, because WordPress is released under the <a title="GPLv2 license" href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GPLv2 license</a>, all themes and plugins developed for WordPress must also be released under the same license. Pearson disagrees.</p>
<p>This situation has never affected us directly at Soupgiant so we haven&#8217;t needed to, and this is important, ask our lawyer if my interpretation is correct. <strong>This is a layman&#8217;s opinion and should be treated as such</strong>.</p>
<p>The battle comes down to these clauses in the GPLv2 license:</p>
<blockquote><p>You must cause any work that you distribute or publish, that in    whole or in part contains or is derived from the Program or any    part thereof, to be licensed as a whole at no charge to all third    parties under the terms of this License.</p>
<p>If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works.</p>
<p>&#8211;source <a title="GPLv2 license" href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt">GPLv2 license</a></p></blockquote>
<p>Due to the second clause quoted above, I believe that Mullenweg is wrong. WordPress themes can operate on other blogging platforms with minimal changes. This has been done before with the <a title="Sandbox theme for WordPress" href="http://www.plaintxt.org/themes/sandbox/">Sandbox theme for WordPress</a> which was successfully ported to <a title="Movable Type" href="http://plugins.movabletype.org/sandbox/">Movable Type</a>.</p>
<p>WordPress themes output <abbr>HTML</abbr> with a series of calls to the blogging platform. To output the post&#8217;s title and contents in our base theme, we use the code:</p>
<pre><code>&lt;h2 class="entry-title"&gt;&lt;?php the_title() ?&gt;&lt;/h2&gt;
&lt;div class="entry-content"&gt;
    &lt;?php the_content("Continue reading " . the_title('', '', false)); ?&gt;
&lt;/div&gt;</code></pre>
<p>To output the same <abbr>HTML</abbr> in a Movable Type theme, we would output:</p>
<pre><code>&lt;h2 class="entry-title"&gt;&lt;$mt:EntryTitle$&gt;&lt;/h2&gt;
&lt;div class="entry-content"&gt;
    &lt;$mt:EntryBody$&gt; &lt;$mt:EntryMore$&gt;
&lt;/div&gt;</code></pre>
<p>In terms of a page&#8217;s output, the above code is a minor part of the page. <em>The theme&#8217;s template is mostly made up of HTML and CSS, HTML and CSS operate in the browser and not in the blogging platform</em>. It&#8217;s for that reason that I believe that Pearson is correct in this case.</p>
<p>I acknowledge that WordPress hooks may complicate the matter but these hooks output such a minor part of a theme&#8217;s HTML, that I consider the theme <em>uses</em> the platform but isn&#8217;t <em>derived</em> from the platform. I&#8217;ve left plugins out of this discussion as these are a more complicated matter: they can output HTML or they can build on the platform.</p>
<p>The above said, were I to release a WordPress theme I would probably release it under the GPL as a hat tip and thank you to the community that has assisted me so much. However, if the theme was as complicated as the Thesis theme, I may feel differently about the matter when it&#8217;s crunch time.</p>
<p>Again, this is a layman&#8217;s opinion and should be treated as such. If you have a layman&#8217;s opinion too, <a title="we'd love to hear it in the comments" href="http://bigredtin.com/behind-the-websites/thesis-v-wordpress/#comments">we&#8217;d love to hear it in the comments</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bigredtin.com/2010/thesis-v-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blog Post: This Tweet Looks Unloved</title>
		<link>http://bigredtin.com/2010/unloved-tweets/</link>
		<comments>http://bigredtin.com/2010/unloved-tweets/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 00:30:03 +0000</pubDate>
		<dc:creator>Peter Wilson</dc:creator>
				<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[CoTweet]]></category>
		<category><![CDATA[Statistics]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Twitterfeed]]></category>

		<guid isPermaLink="false">http://bigredtin.pressgiant.net/?p=588</guid>
		<description><![CDATA[We had Twitterfeed set up at this blog's old location and took the opportunity to compare click-throughs from manual tweets versus automated tweets. Manual tweets had a substantially higher click-through rate than the automated tweets.]]></description>
			<content:encoded><![CDATA[<p>Any blogger worth their salt knows of <a href="http://twitterfeed.com/">Twitterfeed</a> or a similar service. For the uninitiated, Twitterfeed converts a site&#8217;s RSS feed into tweets, allowing users to set and forget. The auto-tweets take the form &#8216;Blog Post: &lt;title&gt; &lt;short url&gt;&#8217; or similar.</p>
<p>When we launched Big Red Tin we didn&#8217;t set up Twitterfeed immediately.</p>
<p>With manual tweets we could customise the message to provide more details to Twitter users, one such tweet was:</p>
<blockquote><p>We&#8217;ve defined a new term: Web 1.5 <a href="http://bigredtin.com/design/web-1-5/">http://redt.in/b0KRut</a> ^pw</p>
<p>– <a href="http://twitter.com/bigredtin/status/16282703026">source: @bigredtin</a></p></blockquote>
<p>We had Twitterfeed set up at this blog&#8217;s old location and took the opportunity to compare click-throughs from manual tweets versus automated tweets.</p>
<p>Manual tweets had a substantially higher click-through rate than the automated tweets. I suspect the reason for this is two fold:</p>
<ul>
<li>With so many people using Twitterfeed type 	services, Twitter users have learnt to ignore tweets that appear 	auto-generated.</li>
<li>More information can be included in a manual tweet than might appear in an auto-tweet.</li>
</ul>
<p>Take the post we were linking to earlier, had we been using Twitterfeed the tweet would have been &#8216;Blog Post: Web 1.5 <a href="http://bigredtin.com/design/web-1-5/">http://redt.in/b0KRut</a>&#8216;. This provides so little information as to be next to useless. We would have ignored such a tweet out ourselves.</p>
<p>Many of the posts on this site are scheduled in advance, this allows us to publish at roughly the same time each week.</p>
<p>To schedule the associated tweets we use <a href="http://cotweet.com/">CoTweet</a>. We have a couple of shared twitter accounts as it is, so CoTweet comes in handy for other purposes, but it&#8217;s the scheduling feature we use most of all.</p>
<p>If you use Twitterfeed yourself, try disabling it for a couple of weeks and manually tweet in its place. There&#8217;s a good chance you&#8217;ll be pleasantly surprised when you compare your <a href="http://bit.ly/">bit.ly</a> stats.</p>
]]></content:encoded>
			<wfw:commentRss>http://bigredtin.com/2010/unloved-tweets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Right Content for the Right Audience</title>
		<link>http://bigredtin.com/2010/the-right-content-for-the-right-audience/</link>
		<comments>http://bigredtin.com/2010/the-right-content-for-the-right-audience/#comments</comments>
		<pubDate>Mon, 31 May 2010 07:26:59 +0000</pubDate>
		<dc:creator>Josh Kinal</dc:creator>
				<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[content]]></category>

		<guid isPermaLink="false">http://bigredtin.com/?p=483</guid>
		<description><![CDATA[What we've done in Soupgiant is take the blog portion of our website and move it over here to Big Red Tin. The two sites still link to each other. There's no doubt that the people in charge over here are also in charge over there. It's one and the same.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve long thought it important for certain businesses to have blogs. Particularly if a business relies on the expertise of its staff, a blog can really help that business build a reputation for being experts in that particular field.</p>
<p>What we&#8217;ve done in Soupgiant, however, is take the blog portion of our website and move it over here to Big Red Tin. The two sites still link to each other. There&#8217;s no doubt that the people in charge over here are also in charge over there. It&#8217;s one and the same.</p>
<p>We decided to separate the two because we didn&#8217;t want to disrupt any one audience.</p>
<p>Soupgiant.com is our sales website. It&#8217;s where we&#8217;ll put all our information about the products and services we offer. Customers will be able to see the work that we&#8217;ve done for other clients and can see if what we can do for them is actually what they want.</p>
<p>Big Red Tin, on the other hand, is just a blog. It gives us a chance to document every single part of our business, from bits of code to design concepts and also choices we make in running our business in the day to day.</p>
<p>Basically we hope that this will become a repository of information that can help people who encounter the same issues we have.</p>
<p>This is the first lesson of Content Strategy and it&#8217;s something we are taught all through school but still often manage to forget: Know your audience.</p>
<p>Websites have the added benefit of allowing our audiences to know us. So, in one sense we can work out the audience for a website by asking: What do we want our audience to know about us?</p>
<p>With Big Red Tin we&#8217;ve already answered that question earlier in this post: We want to share what we learn from the issues we encounter.</p>
<p>To do that, we&#8217;ve split this blog into four categories that we think detail all aspects of our business:</p>
<ul>
<li><strong><a href="http://bigredtin.com/behind-the-websites/">Behind the Websites</a></strong> details the work we do in coding websites and dealing with content management system (CMS).</li>
<li><strong><a href="http://bigredtin.com/business/">Business</a></strong> is about business decisions we&#8217;ve made or the general lessons we learn in running a business, either based on our own experiences or our observations of others.</li>
<li><strong><a href="http://bigredtin.com/content-strategy/">Content Strategy</a></strong> discusses the intricacies in honing the content of websites to achieve the greatest value from them. It might be about navigation or website accessibility or the general layout of information on the screen, but it also might be about words and how to use them.</li>
<li><strong><a href="http://bigredtin.com/design/">Design</a></strong> will bring together aspects of graphic design that we deal with. Buttons, images, colours, styles, legibility &ndash; basically everything that brings that all important first opinion will be dealt with under the &#8220;Design&#8221; banner.</li>
</ul>
<p>There might be people who are interested in all four of these categories but we hope splitting them out makes it easier for those only interested in one or two.</p>
<p>For more specific areas of discussion we have tags. There are many of these and you&#8217;ll see them at the bottom of each post. So, if you&#8217;re on a post about CSS3 and you want to know more, you can <a href="http://bigredtin.com/tag/css3/">see all our posts about CSS3</a>.</p>
<p>Big Red Tin is the result of a long process of planning, which is the only way to do content strategy correctly. We hope you enjoy what we do here and encourage you to share your experiences in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://bigredtin.com/2010/the-right-content-for-the-right-audience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

