<?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"
	>

<channel>
	<title>BJU Bloggers</title>
	<atom:link href="http://www.bjubloggers.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bjubloggers.com</link>
	<description>folks from the world's most unusual university</description>
	<pubDate>Fri, 12 Mar 2010 11:08:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>&#8220;Brownstones to Red Dirt&#8221; charity art auction is live!</title>
		<link>http://www.bjubloggers.com/cory/brownstones-to-red-dirt-charity-art-auction-is-live/</link>
		<comments>http://www.bjubloggers.com/cory/brownstones-to-red-dirt-charity-art-auction-is-live/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:08:15 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:lightnightrains.blogspot.com://119fff64acb4fd90c7a913cf4b737265</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/cory/brownstones-to-red-dirt-charity-art-auction-is-live/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New WordPress Plugin: Custom Image Sizes</title>
		<link>http://www.bjubloggers.com/filosofo/new-wordpress-plugin-custom-image-sizes/</link>
		<comments>http://www.bjubloggers.com/filosofo/new-wordpress-plugin-custom-image-sizes/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 04:29:22 +0000</pubDate>
		<dc:creator>filosofo</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ilfilosofo.com/?p=593</guid>
		<description><![CDATA[I make a lot of WordPress themes, and frequently clients want to associate a particular size of image with a post.  You can do this easily with WordPress by using add_image_size() to define an image and then by calling wp_get_attachment_image() later to print the markup for that image.
So for example, if I have an [...]]]></description>
			<content:encoded><![CDATA[<p>I make a lot of WordPress themes, and frequently clients want to associate a particular size of image with a post.  You can do this easily with WordPress by using <code>add_image_size()</code> to define an image and then by calling <code>wp_get_attachment_image()</code> later to print the markup for that image.</p>
<p>So for example, if I have an attachment image of ID number 123, I might do something like the following:</p>
<pre>

add_image_size( 'my-custom-size', 220, 180, true );
...
echo wp_get_attachment_image( 123, 'my-custom-size' );
</pre>
<p>Here, <code>add_image_size()</code> defines the custom thumbnail (in this example the arguments tell <code>add_image_size()</code> to make it 220 pixels wide, 180 high, and cropped), and </p>
<pre>echo wp_get_attachment_image()</pre>
<p>prints the markup of the image itself, <code>&lt;img&gt;</code> element and everything.</p>
<h3>The Problem</h3>
<p>This works great; WordPress even creates thumbnails in this size from now on.  The problem is that it doesn&#8217;t apply to pre-existing thumbnails.  And if people change their minds about what sizes they want their thumbnails to be (clients sometimes change their minds) you&#8217;re stuck with existing thumbnails of the wrong size.</p>
<p>In addition, if you call <code>wp_get_attachment_image( 123, 'my-custom-size' );</code> and that size doesn&#8217;t exist, WordPress just scales down the larger-sized original image, which might cause some performance issues.</p>
<h3>Solution: Custom Image Sizes</h3>
<p>My solution is the <a href="/blog/wordpress-plugins/filosofo-custom-image-sizes/">Custom Image Sizes plugin</a>.  You activate it, and if you call <code>wp_get_attachment_image()</code> and related functions for an attachment that doesn&#8217;t have that size, WordPress will create it on demand.</p>
<p>As a bonus, if you pass a width and height of the desired image to <code>wp_get_attachment_image()</code> (and related functions), you can create any size image.  So for example I could create a thumbnail 50 pixels wide by 40 high of attachment 123 with the following code, where <code>'50x40'<code> is <code>'[width]x[height]'</code>:</p>
<pre>

echo wp_get_attachment_image( 123, '50x40' );
</pre>
<h3>Download</h3>
<p>You can <a href="/blog/wordpress-plugins/filosofo-custom-image-sizes/">download the Custom Image Sizes plugin here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/filosofo/new-wordpress-plugin-custom-image-sizes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Constitutional Conservatism?</title>
		<link>http://www.bjubloggers.com/paulmatzko/constitutional-conservatism/</link>
		<comments>http://www.bjubloggers.com/paulmatzko/constitutional-conservatism/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 03:39:03 +0000</pubDate>
		<dc:creator>paulmatzko</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://paulmatzko.edublogs.org/?p=206</guid>
		<description><![CDATA[An insightful critique of the Mount Vernon Statement.
]]></description>
			<content:encoded><![CDATA[<p>An insightful <a href="http://reason.com/archives/2010/02/24/fight-the-power">critique</a> of the Mount Vernon Statement.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/paulmatzko/constitutional-conservatism/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Thinking Man&#8217;s Thoughts 2010-03-12 00:53:00</title>
		<link>http://www.bjubloggers.com/frank-sansone/a-thinking-mans-thoughts-2010-03-12-005300/</link>
		<comments>http://www.bjubloggers.com/frank-sansone/a-thinking-mans-thoughts-2010-03-12-005300/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 00:53:00 +0000</pubDate>
		<dc:creator>Frank Sansone</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-17582952.post-6478963512370759320</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/frank-sansone/a-thinking-mans-thoughts-2010-03-12-005300/feed/</wfw:commentRss>
		</item>
		<item>
		<title>They Call it Red Rocks Baptist Church Because of the Blood of the Innocent</title>
		<link>http://www.bjubloggers.com/jeri/they-call-it-red-rocks-baptist-church-because-of-the-blood-of-the-innocent/</link>
		<comments>http://www.bjubloggers.com/jeri/they-call-it-red-rocks-baptist-church-because-of-the-blood-of-the-innocent/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:54:00 +0000</pubDate>
		<dc:creator>Jeri</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-13276942.post-1545557996564451648</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/jeri/they-call-it-red-rocks-baptist-church-because-of-the-blood-of-the-innocent/feed/</wfw:commentRss>
		</item>
		<item>
		<title>“What Would Jesus Do?”: A Parable About Copyright</title>
		<link>http://www.bjubloggers.com/lincoln-mullen/%e2%80%9cwhat-would-jesus-do%e2%80%9d-a-parable-about-copyright/</link>
		<comments>http://www.bjubloggers.com/lincoln-mullen/%e2%80%9cwhat-would-jesus-do%e2%80%9d-a-parable-about-copyright/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 21:41:49 +0000</pubDate>
		<dc:creator>Lincoln Mullen</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://lincolnmullen.com/?p=1510</guid>
		<description><![CDATA[		<span class="Z3988" title="//lincolnmullen.com/archives/2010/03/what-would-jesus-do-a-parable-about-copyright/&#38;rft.language=English"></span>
Have you heard the saying &#8220;What would Jesus do?&#8221; Who hasn&#8217;t? In the 1990s the phrase became a fad among evangelical Christians, who printed the &#8230; <a href="http://lincolnmullen.com/archives/2010/03/what-would-jesus-do-a-parable-about-copyright/"> Read this post &#8594;</a>]]></description>
			<content:encoded><![CDATA[		<span class="Z3988" title="//lincolnmullen.com/archives/2010/03/what-would-jesus-do-a-parable-about-copyright/&amp;rft.language=English"></span>
<p><img class="alignleft size-full wp-image-1512" src="http://lincolnmullen.com/blog/wp-content/uploads/2010/03/WWJD-bracelet.jpg" alt="What Would Jesus Do bracelet" width="240" height="160" />Have you heard the saying &#8220;What would Jesus do?&#8221; Who hasn&#8217;t? In the 1990s the phrase became a fad among evangelical Christians, who printed the abbreviation <em>WWJD?</em> on bracelets, t-shirts, and posters, spawning in turn a host of mocking pop culture imitations. <em>WWJD</em> can provide a useful lens for looking at <a href="http://www.bookforum.com/inprint/016_02/3848">evangelical consumer culture</a> of the late twentieth century. But the phrase can also serve as a parable about contemporary copyright law.</p>
<p>The phrase &#8220;What would Jesus do?&#8221; originated in a novel titled <a href="http://books.google.com/books?id=cHVIAAAAMAAJ"><em>In His Steps: What Would Jesus Do?</em></a>, published in 1897 by Charles M. Sheldon. Sheldon was a Congregational minister in Topeka, Kansas, and a Progressive concerned with Christianity&#8217;s relationship to the social politics of his day. His book is a parable about the Reverend Henry Maxwell, a minister to a wealthy middle-class congregation. Maxwell comes into contact with a poor man who owes his plight to industrialization, and is thereby jarred from his complacency about social issues. He challenges his congregation to seriously consider the question &#8220;What would Jesus do?&#8221; in all their actions. As his congregation takes up the challenge, their views on politics, class, race, charity, and corporations fall in line with the social gospel.</p>
<p>The long reach of Sheldon&#8217;s <em>In His Steps </em>is due in large part to its message, which appeals to both mainline and evangelical Christians, and to its simple though not particularly literary prose. But its long reach also due to a simple mistake by Sheldon&#8217;s publisher: the book was never properly copyrighted.</p>
<p>In the 1890s, copyright was opt-in, not opt-out. In order for a book to be copyrighted, the publisher had to register it with the federal government. Chicago Advance, Sheldon&#8217;s publisher, incorrectly registered the copyright, and so the book was available in the public domain. Many publishers issued their own editions of <em>In His Steps</em>, which sold widely. About the sales of the book, <a href="http://www.jstor.org/stable/2711587">Paul Boyer writes</a>:</p>
<blockquote><p>Owing to a defect in the copyright, sixteen different publishers soon had editions of the book in the market, and by the summer of 1897, 100,000 copies had been sold. And this was merely the beginning. While Sheldon&#8217;s own later estimate of 30,000,000 sales is overdrawn, Frank L. Mott, tabulator and chronicler of American best-sellers, suggests that a figure of 6,000,000 for total world sales would probably not be far amiss, with perhaps 2,000,000 of these in the United States.</p></blockquote>
<p>To be sure, <em>In His Steps </em>would not have been a bestseller simply because of a mistake in the copyright registration. Sixteen publishers would not have issued the book unless it appealed to the reading public. Nor can the resurgence of <em>WWJD? </em>in the 1990s be attributed to the book&#8217;s being in the public domain&#8212;by that time the book would have long been out of copyright no matter what. And it is worth noting that the book was a best<em>seller</em>: the failure of copyright registration did not mean that the book was available for free, just that Sheldon made hardly any royalties from it. Even today, the book is <a href="http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&amp;field-keywords=in+his+steps&amp;x=0&amp;y=0">available for purchase</a> in many editions, though it is available free from <a href="http://www.gutenberg.org/etext/4540">several</a> <a href="http://books.google.com/books?id=cHVIAAAAMAAJ&amp;printsec=frontcover&amp;dq=in+his+steps&amp;ei=dWCZS4HvMpbONM-vwdcH&amp;cd=1#v=onepage&amp;q=&amp;f=false">sources</a>.</p>
<p>But would the explosive sales and long-standing popularity of Sheldon&#8217;s <em>In His Steps</em> have been possible if the book had been subject to, say, the <a href="http://chnm.gmu.edu/digitalhistory/copyright/1.php">Copyright Act of 1976, or the Sonny Bono Copyright Term Extension Act, or, worse, the Digital Millennium Copyright Act</a>? If the point of copyright is &#8220;to promote the Progress of Science and useful Arts, by securing for<a href="http://www.archives.gov/exhibits/charters/constitution_transcript.html"> <em> limited Times</em></a> to Authors and Inventors the exclusive Right to their  respective Writings and Discoveries,&#8221; perhaps there is something to be learned from the case of Charles Sheldon and his novel&#8212;a fitting parable for a Progressive reformer, indeed.</p>
<p><img class="aligncenter size-full wp-image-1513" src="http://lincolnmullen.com/blog/wp-content/uploads/2010/03/In_His_Steps_Front_Cover.jpg" alt="In His Steps (front cover)" width="260" height="411" /></p>
<p><em>[Bracelet image courtesy of Flickr user <a href="http://www.flickr.com/photos/bodzasfanta/3302860749/">bodzasfanta</a> under a Creative Commons license. The image of the cover of </em>In His Steps<em> is in the public domain, and is available from <a href="http://en.wikipedia.org/wiki/File:In_His_Steps_%28Front_Cover%29.jpg">Wikipedia</a>.]</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/BackwardGlance?a=ItWgJLzATuU:b7lU5790MVo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/BackwardGlance?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BackwardGlance?a=ItWgJLzATuU:b7lU5790MVo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/BackwardGlance?i=ItWgJLzATuU:b7lU5790MVo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BackwardGlance?a=ItWgJLzATuU:b7lU5790MVo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/BackwardGlance?i=ItWgJLzATuU:b7lU5790MVo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BackwardGlance?a=ItWgJLzATuU:b7lU5790MVo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/BackwardGlance?i=ItWgJLzATuU:b7lU5790MVo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/BackwardGlance?a=ItWgJLzATuU:b7lU5790MVo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/BackwardGlance?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/BackwardGlance/~4/ItWgJLzATuU" height="1">]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/lincoln-mullen/%e2%80%9cwhat-would-jesus-do%e2%80%9d-a-parable-about-copyright/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The perfect post-it note</title>
		<link>http://www.bjubloggers.com/katherine/the-perfect-post-it-note/</link>
		<comments>http://www.bjubloggers.com/katherine/the-perfect-post-it-note/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 18:40:06 +0000</pubDate>
		<dc:creator>Katherine</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:typepad.com,2003:post-6a00d83451dc9b69e20120a927b050970b</guid>
		<description><![CDATA[Oh man! Do I want these!!! They are the best book markers EVER! Absolutely luscious!]]></description>
			<content:encoded><![CDATA[Oh man! Do I want these!!! They are the best book markers EVER! Absolutely luscious!]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/katherine/the-perfect-post-it-note/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Parting the Waters</title>
		<link>http://www.bjubloggers.com/barbara-h/parting-the-waters/</link>
		<comments>http://www.bjubloggers.com/barbara-h/parting-the-waters/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 17:26:00 +0000</pubDate>
		<dc:creator>Barbara H.</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://barbarah.wordpress.com/?p=5162</guid>
		<description><![CDATA[I first read Jeanne Damoff when someone (I’m sorry, I forgot to note who) linked to her articles “How fiction can powerfully inform the practical application of truth,” part one and part two. Both her insights and her writing style resonated with me. Since these articles were part of a writer&#8217;s blog called The Master&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=barbarah.wordpress.com&#38;blog=326089&#38;post=5162&#38;subd=barbarah&#38;ref=&#38;feed=1" />]]></description>
			<content:encoded><![CDATA[A]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/barbara-h/parting-the-waters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Difficulty</title>
		<link>http://www.bjubloggers.com/jordan-m-poss/difficulty/</link>
		<comments>http://www.bjubloggers.com/jordan-m-poss/difficulty/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:18:00 +0000</pubDate>
		<dc:creator>Jordan M. Poss</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-13610230.post-2515018662748943470</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/jordan-m-poss/difficulty/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Citroen C6 Images</title>
		<link>http://www.bjubloggers.com/david-mcguire/citroen-c6-images/</link>
		<comments>http://www.bjubloggers.com/david-mcguire/citroen-c6-images/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:04:00 +0000</pubDate>
		<dc:creator>David McGuire</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-1130578020694789530.post-878392536743932650</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.bjubloggers.com/david-mcguire/citroen-c6-images/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
