<?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>Joshua Knowlton Berry</title>
	<atom:link href="http://joshberry.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://joshberry.com</link>
	<description>Design / Technology / Photography</description>
	<lastBuildDate>Sat, 28 Jan 2012 18:48:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Share Photos to Pinterest from a WordPress Post</title>
		<link>http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/</link>
		<comments>http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 03:45:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[pinterest]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2244</guid>
		<description><![CDATA[I post different types of things on my blog. Some posts have nice pictures while some don't have pictures at all. I'm sort of new to Pinterest, but it already seems like you can't post anything to Pinterest at all if there is no photo. I wanted a way to curate the images that are shared to Pinterest, and this method is the way to do that.

After completing this guide, you'll be able to set a photo in a custom field that will be used as the photo that gets shared to Pinterest. <a href="http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I post different types of things on my blog. Some posts have nice pictures while some don&#8217;t have pictures at all. I&#8217;m sort of new to Pinterest, but it already seems like you can&#8217;t post anything to Pinterest at all if there is no photo. I wanted a way to curate the images that are shared to Pinterest, and this method is the way to do that.</p>
<p>After completing this guide, you&#8217;ll be able to set a photo in a custom field that will be used as the photo that gets shared to Pinterest.</p>
<p><a href="http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/screen-shot-2012-01-02-at-9-50-35-pm/" rel="attachment wp-att-2246"><img class="aligncenter size-full wp-image-2246" title="Screen Shot 2012-01-02 at 9.50.35 PM" src="http://joshberry.com/wp-content/Screen-Shot-2012-01-02-at-9.50.35-PM.png" alt="" width="349" height="304" /></a></p>
<p><span id="more-2244"></span></p>
<p>First, you need to enable WordPress custom fields. We&#8217;ll use this to add the URL of the image we want to share. If you don&#8217;t have them enabled already, <a href="http://codex.wordpress.org/Custom_Fields">go here</a> to learn more about them. Once you have custom fields enabled, keep on reading.</p>
<p>Next, add a new post so that you can create your new field and register it with your site. Below the text-writing window of your new post, you should see the Custom Fields area. Click <strong>Enter new</strong> and name the new field <strong>share_image</strong>. (You can call it whatever you want, but for the purposes of this article we&#8217;ll use share_image). Here&#8217;s a picture of what you should see:</p>
<p><a href="http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/screen-shot-2012-01-02-at-10-26-40-pm/" rel="attachment wp-att-2245"><img class="aligncenter size-full wp-image-2245" title="Screen Shot 2012-01-02 at 10.26.40 PM" src="http://joshberry.com/wp-content/Screen-Shot-2012-01-02-at-10.26.40-PM.png" alt="" width="792" height="261" /></a></p>
<p>Now we need to open up our theme folder and find the correct files to work with. I&#8217;m using <a href="http://wordpress.org/extend/themes/twentyten">Twenty Ten</a> so I need <strong>loop.php</strong> for the main blog page, and <strong>loop-single.php </strong>for a single post. Hopefully your theme files are well-named and it is easy for you to find out where you need to be. If you don&#8217;t know, find out before moving forward.</p>
<p>The code for the button comes <a href="http://pinterest.com/about/goodies/">straight from Pinterest</a>. All we&#8217;re doing is replacing their static text with some PHP. At the top of your appropriate theme files, add Pinterest&#8217;s JavaScript (outisde of the PHP tags). It looks like this:</p>
<p><script type="text/javascript" src="http://pastebin.com/embed_js.php?i=3QEmEhsf"></script>Now find the area of the post where you want your button to go. I wanted mine to go below the post date, so I looked for HTML markup like entry-title and entry-author to help me figure out where that was. Once you find that place, paste the following code:<script type="text/javascript" src="http://pastebin.com/embed_js.php?i=q0tRKpBg"></script></p>
<p>That&#8217;s it for the code. If you&#8217;re interested in what all that does, keep reading this paragraph. If not, skip to the next one. With WordPress Custom Fields, you have access to that data in the form of a big associative array. I created a variable for that array and then just referenced the appropriate array elements for the image and description (which is the blog post title). The post URL is located in a different data object, so I used a different function for that. Additionally, since we only want to show the button when there&#8217;s an image, we&#8217;ll check to make sure the image array element is not null.</p>
<p>To put your new Pinterest button to use, just start a new blog post and add the URL for your image as a <strong>share_image</strong> custom field. If your image doesn&#8217;t have a URL yet, because you just uploaded it for this post, then publish your post, get the URL for image (by right clicking the image, opening it in a new tab, or your favorite method for getting image URLs) and edit the post to add it. That&#8217;s what I do, and it&#8217;s working great. Enjoy!</p>
<p>If this post helped you at all, please consider sharing my <a href="/groove-clock-for-ipad-2/">new iPad app</a>. Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/adding-a-pinterest-button-with-image-to-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buckminster Fuller at the RISD museum</title>
		<link>http://joshberry.com/buckminster-fuller-at-the-risd-museum/</link>
		<comments>http://joshberry.com/buckminster-fuller-at-the-risd-museum/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 03:24:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2204</guid>
		<description><![CDATA[One of my favorite inventor-types.]]></description>
			<content:encoded><![CDATA[<p>One of my favorite inventor-types.</p>
<p><a href="http://joshberry.com/buckminster-fuller-at-the-risd-museum/19b2f30631ad11e1abb01231381b65e3_7/" rel="attachment wp-att-2205"><img class="aligncenter size-full wp-image-2205" title="19b2f30631ad11e1abb01231381b65e3_7" src="http://joshberry.com/wp-content/19b2f30631ad11e1abb01231381b65e3_7.jpg" alt="" width="612" height="612" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/buckminster-fuller-at-the-risd-museum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing the Groove Clock for iPad</title>
		<link>http://joshberry.com/groove-clock-for-ipad-2/</link>
		<comments>http://joshberry.com/groove-clock-for-ipad-2/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 20:08:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2167</guid>
		<description><![CDATA[The Groove Clock is a minimalist clock face for the iPad with hands that respond to ambient sound. As the clock listens to its environment, the hands can&#8217;t help but &#8220;groove&#8221; to what it hears. It loves listening to music &#8230; <a href="http://joshberry.com/groove-clock-for-ipad-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Groove Clock is a minimalist clock face for the iPad with hands that respond to ambient sound. As the clock listens to its environment, the hands can&#8217;t help but &#8220;groove&#8221; to what it hears. It loves listening to music the most, but works well in any environment.</p>
<p><a href="http://joshberry.com/groove-clock-for-ipad-2/20111231-dsc_2153-web/" rel="attachment wp-att-2168"><img class="aligncenter size-large wp-image-2168" title="20111231-DSC_2153-web" src="http://joshberry.com/wp-content/20111231-DSC_2153-web-1024x575.jpg" alt="" width="640" height="359" /></a></p>
<p>The <a href="http://itunes.apple.com/us/app/groove-clock/id486225795?ls=1&amp;mt=8">Groove Clock</a> is easy to use, because there&#8217;s not much to it. Just turn it on and leave it there. You can quickly change the background color if you prefer something lighter, and the clock face will adjust itself for perfect contrast. It&#8217;s Apple TV-enabled, and  of course it&#8217;s free of ads.</p>
<p><a href="http://joshberry.com/groove-clock-for-ipad-2/20111231-dsc_2249-web/" rel="attachment wp-att-2170"><img class="aligncenter size-large wp-image-2170" title="20111231-DSC_2249-web" src="http://joshberry.com/wp-content/20111231-DSC_2249-web-1024x575.jpg" alt="" width="640" height="359" /></a></p>
<p>We&#8217;ll be adding some nice surprises in the near future without sacrificing the essence of the Groove Clock. It&#8217;s available now in the app store. We appreciate your support and hope you enjoy your Groove Clock!</p>
<p><a href="http://itunes.apple.com/us/app/groove-clock/id486225795?ls=1&amp;mt=8"><img class="aligncenter size-full wp-image-2352" title="App_Store_badge_0708" src="http://joshberry.com/wp-content/App_Store_badge_0708.png" alt="" width="550" height="200" /></a></p>
<p>&nbsp;</p>
<p><a href="http://joshberry.com/groove-clock-for-ipad-2/20111231-dsc_2153-web/" rel="attachment wp-att-2168"><img class="aligncenter size-large wp-image-2168" style="display: none;" title="20111231-DSC_2153-web" src="http://joshberry.com/wp-content/20111231-DSC_2153-web-1024x575.jpg" alt="" width="640" height="359" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/groove-clock-for-ipad-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drawing on the iPad is Easier with the Cosmonaut</title>
		<link>http://joshberry.com/i-drew-a-picture-with-the-cosmonaut/</link>
		<comments>http://joshberry.com/i-drew-a-picture-with-the-cosmonaut/#comments</comments>
		<pubDate>Thu, 22 Dec 2011 06:27:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2150</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://joshberry.com/i-drew-a-picture-with-the-cosmonaut/guitar_drawing/" rel="attachment wp-att-2154"><img class="aligncenter size-full wp-image-2154" title="guitar_drawing" src="http://joshberry.com/wp-content/guitar_drawing.png" alt="" width="747" height="1024" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/i-drew-a-picture-with-the-cosmonaut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Photos Featured in NYMag</title>
		<link>http://joshberry.com/recent-photos-featured-in-nymag/</link>
		<comments>http://joshberry.com/recent-photos-featured-in-nymag/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 17:06:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2145</guid>
		<description><![CDATA[NY Magazine featured a couple of my photos from the recent Jonathan Toubin Benefit show at Brooklyn Bowl. Here&#8217;s a link to that article: http://nymag.com/daily/entertainment/2011/12/this-weekends-concerts-from-atlas-sound-to-wu-tang-clan.html The rest of the photos are here and here.]]></description>
			<content:encoded><![CDATA[<p>NY Magazine featured a couple of my photos from the recent Jonathan Toubin Benefit show at Brooklyn Bowl. Here&#8217;s a link to that article: <a href="http://nymag.com/daily/entertainment/2011/12/this-weekends-concerts-from-atlas-sound-to-wu-tang-clan.html">http://nymag.com/daily/entertainment/2011/12/this-weekends-concerts-from-atlas-sound-to-wu-tang-clan.html</a></p>
<p>The rest of the photos are <a href="http://www.flickr.com/photos/joshbg2k/sets/72157628457313289/">here</a> and <a href="http://www.flickr.com/photos/joshbg2k/sets/72157628460741317/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/recent-photos-featured-in-nymag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karen O</title>
		<link>http://joshberry.com/karen-o/</link>
		<comments>http://joshberry.com/karen-o/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 03:03:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=2126</guid>
		<description><![CDATA[The Yeah Yeah Yeahs played a short but intense early Saturday morning at the Jonathan Toubin benefit concert at Brooklyn Bowl. Here are a few pictures of Karen O. Here are the rest: http://www.flickr.com/photos/joshbg2k/sets/72157628457313289/]]></description>
			<content:encoded><![CDATA[<p>The Yeah Yeah Yeahs played a short but intense early Saturday morning at the Jonathan Toubin benefit concert at Brooklyn Bowl. Here are a few pictures of Karen O. Here are the rest: <a href="http://www.flickr.com/photos/joshbg2k/sets/72157628457313289/">http://www.flickr.com/photos/joshbg2k/sets/72157628457313289/</a></p>
<p><img class="alignnone" src="http://joshberry.com/wp-content/6526985449_d4910111f9_b.jpg" alt="" width="600" /></p>
<p><img class="alignnone" src="http://joshberry.com/wp-content/6526985559_3000aa5c60_b.jpg" alt="" width="600" /></p>
<p><img class="alignnone" src="http://joshberry.com/wp-content/6526985611_9d06487c63_b.jpg" alt="" width="600" /></p>
<p><img class="alignnone" src="http://joshberry.com/wp-content/6526985667_7526cb521b_b1.jpg" alt="" width="600" /></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/karen-o/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site Design</title>
		<link>http://joshberry.com/new-site-design/</link>
		<comments>http://joshberry.com/new-site-design/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 17:48:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=1983</guid>
		<description><![CDATA[My old theme was awful. Black, blue and gray, it looked like a bruise. I always wanted to do a theme based on the cover of Exile on Main St., but never found the time to develop it. As it &#8230; <a href="http://joshberry.com/new-site-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My old theme was awful. Black, blue and gray, it looked like a bruise. I always wanted to do a theme based on the cover of Exile on Main St., but never found the time to develop it. As it turns out, the new default WordPress theme TwentyTen is really nice and clean. I&#8217;ll use this one for the near future.</p>
<p><a href="http://joshberry.com/wp-content/exile-on-main-street.jpg"><img src="http://joshberry.com/wp-content/exile-on-main-street.jpg" alt="" title="exile-on-main-street" width="600" height="599" class="alignnone size-full wp-image-1984" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/new-site-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ken Jennings on Specialization</title>
		<link>http://joshberry.com/ken-jennings-on-specialization/</link>
		<comments>http://joshberry.com/ken-jennings-on-specialization/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 03:21:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=1973</guid>
		<description><![CDATA[From an epic Q&#038;A on Reddit today: The problem with specialization is that cultural literacy is starting to disappear&#8230;there are fewer facts and references that you know everyone will know. Even something like TV&#8211;there are 175 channels instead of 3. &#8230; <a href="http://joshberry.com/ken-jennings-on-specialization/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>From an <a href="http://www.reddit.com/r/IAmA/comments/fwpzj/iama_74time_jeopardy_champion_ken_jennings_i_will/">epic Q&#038;A</a> on Reddit today:</p>
<blockquote><p>The problem with specialization is that cultural literacy is starting to disappear&#8230;there are fewer facts and references that you know everyone will know. Even something like TV&#8211;there are 175 channels instead of 3. This means it&#8217;s harder to communicate. It&#8217;s harder to get to know people.</p></blockquote>
<p>I get where he&#8217;s coming from. I used to play the guitar a lot more than I do today. I picked it up at a young age, learning basic rock &#038; blues songs, scales, etc, and I ended up being pretty adept with a pick. Everything changed when I went to Spain to study flamenco. All of a sudden I had five picks as my fingers and the possibilities were limitless. After I became skilled at flamenco I was able to start fingerpicking the blues, Reverend Gary Davis type stuff, classical, jazz, and composing became a lot easier. </p>
<p>Had I not dropped the pick none of that would happened. I would have blissfully, albeit naively, carried on mimicking Richards, Knopfler, etc. I didn&#8217;t realize until years after I got back from Spain the value of variety. Learning a variety of styles introduced me to a variety of people. The same is true of my career now. I consider myself to be a blend of interaction designer and software engineer, and while there aren&#8217;t any job descriptions out there calling for both skillsets, I get to work with many different types of people. I like it this way.</p>
<div id="attachment_1975" class="wp-caption alignnone" style="width: 610px"><a href="http://joshberry.com/wp-content/martin.jpg"><img src="http://joshberry.com/wp-content/martin.jpg" alt="" title="martin" width="600" height="600" class="size-full wp-image-1975" /></a><p class="wp-caption-text">my 1954 Martin</p></div>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/ken-jennings-on-specialization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interaction Design</title>
		<link>http://joshberry.com/interaction-design/</link>
		<comments>http://joshberry.com/interaction-design/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 01:07:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=1944</guid>
		<description><![CDATA[Bill Verplank perfectly explains interaction design.]]></description>
			<content:encoded><![CDATA[<p>Bill Verplank perfectly explains interaction design.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="365" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.youtube.com/v/C3rxCLhzmXY&amp;hl=en&amp;fs=1" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/qQtIRG_sTFc&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="365" src="http://www.youtube.com/v/C3rxCLhzmXY&amp;hl=en&amp;fs=1" data="http://www.youtube.com/v/C3rxCLhzmXY&amp;hl=en&amp;fs=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/interaction-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Template for Storyboarding</title>
		<link>http://joshberry.com/a-template-for-storyboarding/</link>
		<comments>http://joshberry.com/a-template-for-storyboarding/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 19:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Etcetera]]></category>

		<guid isPermaLink="false">http://joshberry.com/?p=1889</guid>
		<description><![CDATA[I&#8217;ve recently been doing some collaborative storyboarding for an upcoming documentary. I created this template that can be printed, cut with scissors, and distributed to the members of your group. The frames can be rearranged until you figure out how &#8230; <a href="http://joshberry.com/a-template-for-storyboarding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1890" title="storyboard_template_600" src="http://joshberry.com/wp-content/storyboard_template_600.png" alt="" width="600" height="464" /></p>
<p>I&#8217;ve recently been doing some collaborative storyboarding for an upcoming documentary. I created this template that can be printed, cut with scissors, and distributed to the members of your group. The frames can be rearranged until you figure out how to best tell the story. You can get the full-sized PDF <a href="http://joshberry.com/wp-content/storyboard_template.pdf">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshberry.com/a-template-for-storyboarding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

