<?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>Bengfort.com &#187; Tech</title>
	<atom:link href="http://www.bengfort.com/tags/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bengfort.com</link>
	<description>The Bengfort Global Blog</description>
	<lastBuildDate>Sat, 24 Dec 2011 14:37:52 +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>Techy Art: Algorithmic Imagery</title>
		<link>http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/</link>
		<comments>http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 17:16:57 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Nerd]]></category>
		<category><![CDATA[Programmer]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Wierd Things]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=2005</guid>
		<description><![CDATA[I'm working on an interesting project-- I'm writing programs that convert text to images based on the key strokes. It's turning up some unusual results! My plan is to create a program that turns 140 characters into an image, so that people can tweet art! Ultimately, I would like to be able to upload a text file and have it turned into a png file, or even better, upload a png file and turn it into text! It's not really an encryption scheme, since it can be easily deciphered, but I think it might be interesting digital artwork. For instance, Mike and I could upload the source code from our websites and create images from them-- unique embodiments of our technical work!]]></description>
			<content:encoded><![CDATA[<blockquote><p>I&#8217;m working on an interesting project&#8211; I&#8217;m writing programs that convert text to images based on the key strokes. It&#8217;s turning up some unusual results! My plan is to create a program that turns 140 characters into an image, so that people can tweet art! Ultimately, I would like to be able to upload a text file and have it turned into a png file, or even better, upload a png file and turn it into text! It&#8217;s not really an encryption scheme, since it can be easily deciphered, but I think it might be interesting digital artwork. For instance, Mike and I could upload the source code from our websites and create images from them&#8211; unique embodiments of our technical work!</p></blockquote>
<hr />
<p>I recently read an article on steganography- the art and science of hiding messages inside of images, and it got me to thinking: &#8220;what if the message wasn&#8217;t hidden in the image,but instead the message defined the image?&#8221; Now I&#8217;m not the artistic type- the kind of art I am interested in is methodical (read&#8230; paint by numbers). But I am a computer scientist, and I know that a color as understood by the computer is a 4 byte unsigned integer that defines an ARGB value (Alpha, Red, Green, Blue), where each byte represents the quantity of each part. I also know that a character like the lower letter case a, is defined by one byte when encoded in UTF-8, which represents a number between 32 and 126. Therefore, 4 characters, like the word duck can actually be translated into a unique ARGB value (or for opaque colors, three characters like the word ben can be translated into an RGB value).</p>
<p>Thus began my experiment. I wanted to see what a translation from text characters to colored pixels would produce, and if potentially there would be meaning in art created algorithmically. The quote above is from an email I sent to Jaci describing on what I was working on. The quote has one unique feature- it is 675 characters long. If you divide 675 by 3 (the number of characters you need to get an RGB value), you get 225 &#8211; which is 15 squared. This is perfect for an image of 150 x 150 pixels, where each RGB value makes up a 10 x 10 pixel square (or 100 pixels). Here was my first result:</p>
<div id="attachment_2008" class="wp-caption aligncenter" style="width: 168px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/first.png"><img class="size-full wp-image-2008" title="Photext- First Attempt" src="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/first.png" alt="Photext- First Attempt" width="158" height="157" /></a><p class="wp-caption-text">First Attempt</p></div>
<p>So when you take the above quote and translate the byte sequence into RGB values, you get this colored, kind of grey, very dark image. The reason for this is because the characters American keyboards use (and we regularly type) range from between 32-126, while colors are defined with values between 0 and 255, where 0 is black, and 255 is white. When you put an RGB value together, the amount of each value determines the color, so (255,0, 0) is red. (0, 0, 0) is black (no color), and (255, 255, 255) is white (all colors). If the values are even, say (64,64,64) you get grey, darker grey is numbers closer to 0 and lighter grey is numbers closer to 255. So because the alphabet we normally use is so close together, and very low numbers- you get a grey, dark image. Especially since the most common character we use is the non-breaking space: &#8221; &#8221; which is 32.</p>
<p>To fix this, I shifted the values for the characters by distributing them evenly across the range 0-255 (for the nerds out there, I used the formula: Math.ceil((charCode &#8211; 32) / 94 ) * 255)). This had the effect of spreading the values of characters farther apart, and making them less grey, it also lightens the image, because the top values are closer to white again instead of black, and I got this:</p>
<div id="attachment_2011" class="wp-caption aligncenter" style="width: 160px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/shift.png"><img class="size-full wp-image-2011" title="Photext- Shift" src="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/shift.png" alt="Photext - Shift" width="150" height="150" /></a><p class="wp-caption-text">Shifting the colors to a full range</p></div>
<p>Much, much better! And actually, an interesting result because all the colors are there- reds, greens, blues, yellows- that is what I was hoping for! I was afraid that a direct byte by byte translation would produce uninteresting results (monocolor, shades of the same color, etc.). There were still a lot of greys and whites, and I thought this could be the fault of the most common character, the non breaking space, which my shift gave a value of 0. So I made the non breaking space 255 (all white). This was a failure, because it lightened the image up too much:</p>
<div id="attachment_2012" class="wp-caption aligncenter" style="width: 170px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/white.png"><img class="size-full wp-image-2012" title="Photext- White Shift" src="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/white.png" alt="Photext- White Shift" width="160" height="157" /></a><p class="wp-caption-text">Making space, &quot; &quot;, white</p></div>
<p>I had been hoping that maximizing a color value might make the color more vibrant. But as it turns out, spaces are only one of two other values, that probably are also high. so, instead a 0 value actually makes the other two colors more vibrant, while the the 255 value, just makes things whiter. Blocks might not be the most interesting result, so I tried random scatter of the 1o0 pixels:</p>
<div id="attachment_2010" class="wp-caption aligncenter" style="width: 164px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/scatter.png"><img class="size-full wp-image-2010" title="Photext - Scatter" src="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/scatter.png" alt="Photext - Scatter" width="154" height="155" /></a><p class="wp-caption-text">Scattering the pixels randomly </p></div>
<p>But this has a problem, when you inject randomness into the formula, you can&#8217;t translate the image back to text. So my original idea of an algorithmically generated piece of art, whose meaning could be read in plain English, would be lost. This image could be translated into any text, not just the paragraph that you read in the beginning. Blocks are boring, so next I tried 100px lines, I hoped that this would give me the fluidity I was looking for:</p>
<div id="attachment_2009" class="wp-caption aligncenter" style="width: 164px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/lines.png"><img class="size-full wp-image-2009" title="Photext - Lines" src="http://www.bengfort.com/wordpress/wp-content/uploads/2010/03/lines.png" alt="Photext- Lines" width="154" height="153" /></a><p class="wp-caption-text">Lines instead of blocks</p></div>
<p>Alas, it did not, it gave me three columns because 100 is 2/3 of 150, so the images was broken into thirds. I am now currently experimenting with some other manipulations including spirals, alpha gradient overlays, gradients, frequency histograms, etc. <strong>If you have any ideas, please comment them, so I can try them out!</strong></p>
<p>So what is the end result? As you read from my paragraph, I&#8217;m thinking about making this mainstream by creating a web application for tweets. Of course, now that I&#8217;m posting this as a blog, anyone can steal that idea and run with it. Maybe I should grab the domain tweettoart.com! But I&#8217;m thinking this could have bigger implications. I also mentioned that I could uniquely turn my web pages into graphics, or even bigger- I could take the entire New York Times website on a particular day and turn it into some sort of graphic! If you have ideas for applications of this, please comment below and let me know!</p>
<p>Also, I&#8217;m hoping that using these methods, we could find interesting images, where text can be written specifically to produce an image. Then both the image and the text would have meaning! Imagine creating poetry that designed an image (hint, hint, Devi and Bethany!) That would be really cool.</p>
<p>If you want a copy of the program in its current format to install on your computer (It&#8217;s Adobe AIR), so that you can play around&#8230; email me or comment below. I&#8217;d be happy to share, just keep in mind that it is experimental, so you might be able to break it.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Techy+Art%3A+Algorithmic+Imagery+http%3A%2F%2Fbit.ly%2Fglykwh" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;title=Techy+Art%3A+Algorithmic+Imagery" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;title=Techy+Art%3A+Algorithmic+Imagery" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;t=Techy+Art%3A+Algorithmic+Imagery" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;t=Techy+Art%3A+Algorithmic+Imagery" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Techy+Art%3A+Algorithmic+Imagery&amp;link=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Techy+Art%3A+Algorithmic+Imagery&amp;link=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Techy+Art%3A+Algorithmic+Imagery&amp;body=Link:+http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/%0D%0A%0D%0A----%0D%0A+I%27m+working+on+an+interesting+project--+I%27m+writing+programs+that+convert+text+to+images+based+on+the+key+strokes.+It%27s+turning+up+some+unusual+res..." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Techy+Art%3A+Algorithmic+Imagery&amp;body=Link:+http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/%0D%0A%0D%0A----%0D%0A+I%27m+working+on+an+interesting+project--+I%27m+writing+programs+that+convert+text+to+images+based+on+the+key+strokes.+It%27s+turning+up+some+unusual+res..." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;title=Techy+Art%3A+Algorithmic+Imagery" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/&amp;title=Techy+Art%3A+Algorithmic+Imagery" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/techy-art-algorithmic-imagery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Keywords Visualization Part 2</title>
		<link>http://www.bengfort.com/benjamin/keywords-visualization-part-2/</link>
		<comments>http://www.bengfort.com/benjamin/keywords-visualization-part-2/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 00:21:36 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[The Cyber Realm]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=605</guid>
		<description><![CDATA[See the live visualization at: http://www.bengfort.com/keywords/ Version 2 of the Bengfort.com Keywords Visualization is now complete. This new update includes tool tips (hover the mouse over a node and the tool tip appears) that describe the data in plain language- in this case, how many times the keyword appears in Bengfort.com (note that multiple appearances in a [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_606" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bengfort.com/keywords/"><img class="size-medium wp-image-606" title="Keywords Visualization v2" src="http://www.bengfort.com/wordpress/wp-content/uploads/2009/12/bengfortdotcomkeywords-2-300x197.jpg" alt="Keywords Visualization v2" width="300" height="197" /></a><p class="wp-caption-text">Keywords Visualization v2</p></div>
<p style="text-align: center;">See the live visualization at: <a title="Keywords Visualization part 2" href="http://www.bengfort.com/keywords/" target="_self">http://www.bengfort.com/keywords/</a></p>
<p style="text-align: left;">Version 2 of the Bengfort.com Keywords Visualization is now complete. This new update includes tool tips (hover the mouse over a node and the tool tip appears) that describe the data in plain language- in this case, how many times the keyword appears in Bengfort.com (note that multiple appearances in a single post are all counted, as opposed to the number of posts that include the keyword, I hope my grammar was clear enough to explicate this). In addition, now the strength of the links is now visually shown via color and thickness. This actually expanded the graph, so I may have to refactor so it all fits on the screen. Finally, if you click on a node, it searches Bengfort.com for the last 7 posts that include the keyword and present those posts to you!</p>
<p style="text-align: left;">Additionally, the graph has now been made clearer. Link strength is identified on a 5 point scale, however I have excluded strengths of 1 or 2, this immensely cleans up the graph and only shows the most relevant links. While this means some links no longer appear, other connections have suddenly become more apparent. (I&#8217;m especially fond of the link between our disciplines and technology!)</p>
<p style="text-align: left;">This version finalizes the tutorial on <a title="SitePoint" href="http://www.sitepoint.com" target="_blank">SitePoint.com</a> with modifications made to make it work for Bengfort.com. I know this graph is still far from perfect, and I intend to continue to explore making this application more usable. To that end, any feedback from you guys would be much appreciated! For instance, tell me what you see, and if there is anything I could do to make it better. (Remember, I don&#8217;t know what you see, I only see what is on my browser). If there is any functionality you think should be included, if there are any keywords you want added, please let me know! I know that it is easy to read the post and to forget about it, but the more you think about it, the better I can make it!</p>
<p style="text-align: left;">Once again, the link to the visualization is: <a title="Keywords Visualziation " href="http://www.bengfort.com/keywords/" target="_self">http://www.bengfort.com/keywords/ </a> check it out!</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Keywords+Visualization+Part+2+http%3A%2F%2Fbengfort.com%2F%3Fp%3D605" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;title=Keywords+Visualization+Part+2" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;title=Keywords+Visualization+Part+2" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;t=Keywords+Visualization+Part+2" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;t=Keywords+Visualization+Part+2" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Keywords+Visualization+Part+2&amp;link=http://www.bengfort.com/benjamin/keywords-visualization-part-2/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Keywords+Visualization+Part+2&amp;link=http://www.bengfort.com/benjamin/keywords-visualization-part-2/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Keywords+Visualization+Part+2&amp;body=Link:+http://www.bengfort.com/benjamin/keywords-visualization-part-2/%0D%0A%0D%0A----%0D%0A+%0D%0ASee+the+live+visualization+at%3A+http%3A%2F%2Fwww.bengfort.com%2Fkeywords%2F%0D%0AVersion+2+of+the+Bengfort.com+Keywords+Visualization+is+now+complete.+This+new+..." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Keywords+Visualization+Part+2&amp;body=Link:+http://www.bengfort.com/benjamin/keywords-visualization-part-2/%0D%0A%0D%0A----%0D%0A+%0D%0ASee+the+live+visualization+at%3A+http%3A%2F%2Fwww.bengfort.com%2Fkeywords%2F%0D%0AVersion+2+of+the+Bengfort.com+Keywords+Visualization+is+now+complete.+This+new+..." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;title=Keywords+Visualization+Part+2" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/keywords-visualization-part-2/&amp;title=Keywords+Visualization+Part+2" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/keywords-visualization-part-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Data Visualization of Bengfort.com Keywords</title>
		<link>http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/</link>
		<comments>http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 04:52:47 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[The Cyber Realm]]></category>
		<category><![CDATA[Adobe Flex]]></category>
		<category><![CDATA[Data Visualization]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=596</guid>
		<description><![CDATA[The science (and art) of data visualization so appeals to me. We have learned bar graphs, line graphs, and pie charts since we were in elementary school, but these are the tools that are so often used to mislead us: simply because they are too simple to hold the complex data that we are now used to analyzing on a daily basis. Data visualization attempts to take complex data sets and graphically represent them in a way that humans can instantly comprehend their meaning. Visual cues including size, color, shape, and difference are all used to represent some form of data. With the growth of web technologies and web databases, an ever increasing number of amazing and interesting data visualizations has appeared, and soon I believe that elementary school kids will be taught even more complex data structures. ]]></description>
			<content:encoded><![CDATA[<div id="attachment_597" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2009/12/bengfortdotcomkeywords.jpg"><img class="size-medium wp-image-597" title="Bengfort.com Keywords" src="http://www.bengfort.com/wordpress/wp-content/uploads/2009/12/bengfortdotcomkeywords-300x267.jpg" alt="Data visualization of frequence of Bengfort.com keywords" width="300" height="267" /></a><p class="wp-caption-text">Data visualization of frequence of Bengfort.com keywords</p></div>
<p style="text-align: center;">See the live visualization and play with the Spring-Graph structure at: <a title="Bengfort.com Keywords Visualization" href="http://www.bengfort.com/keywords/" target="_blank">http://www.bengfort.com/keywords/</a></p>
<p>I&#8217;m constantly amazed about how people can manipulate data and statistics any way they see fit to make their own point. I don&#8217;t know about you, but whenever someone gives me the &#8220;numbers&#8221; I&#8217;m very skeptical of where they came from. Just consider the fodder from our so called major news networks that John Stewart has to make fun of! I think I&#8217;m right in saying that people are all too willing to believe &#8220;numbers&#8221; just because they look science-y or there is a pretty bar graph. Even simple inspection will reveal flaws- percentages that don&#8217;t add up to 100 or whose summation far exceeds 100. Graphs that use highlighting and weighted fonts that don&#8217;t necessarily apply to a distribution, or the simple omission of keys (legends) that would prove an opposite point.</p>
<p>That&#8217;s why the science (and art) of data visualization so appeals to me. We have learned bar graphs, line graphs, and pie charts since we were in elementary school, but these are the tools that are so often used to mislead us: simply because they are too simple to hold the complex data that we are now used to analyzing on a daily basis. Data visualization attempts to take complex data sets and graphically represent them in a way that humans can instantly comprehend their meaning. Visual cues including size, color, shape, and difference are all used to represent some form of data. With the growth of web technologies and web databases, an ever increasing number of amazing and interesting data visualizations has appeared, and soon I believe that elementary school kids will be taught even more complex data structures.</p>
<p>So, when I got a tweet from Sitepoint.com concerning <a title="Flex Data Visualization part 1- Sitepoint" href="http://articles.sitepoint.com/article/flex-data-visualization-part-1" target="_blank">building a keyword visualizer</a> with Flex- I knew that this would be perfect for our website. So I read the article and built a version of what they used for our website! (Note that at this point, I&#8217;m still awaiting the third part of this three part series, and then I will continue to make my own customizations, so stay tuned for more updates with the visualization!) Essentially what is happening is that a script goes through our blog database and picks out keywords in all the posts. Keywords that appear in the same post are considered linked. For instance, by writing science and technology in this post together, those two words will now have a link between them. In addition the script counts the occurrences of the keyword as well as the occurrences of the links. (If you&#8217;re keeping score- this is a server side PHP script that outputs the results in a JSON file format).</p>
<p>The visualization is handled by Adobe&#8217;s Flex framework combined with the SpringGraph API. The more a keyword appears, the larger its nodes will be- in addition, the higher the count of links between keywords, the larger the link will be. Distance is also a factor- the larger keywords are on the outside, with the lesser keywords on the inside- they &#8220;repulse&#8221; each other by the strength of their links. Now, by simple inspection we can see that Guyana linked with Recipes and Cookbook- is by far the largest part of our website. Benjamin is connected to China and Ballet (don&#8217;t know why) while cat and dog are so closely connected that they are almost touching! You can see how this provides basically a topical analysis of our blog!</p>
<p>I know you guys may not find this particularly interesting, but I hope you can grasp how much data has been distilled into an easily viewable graph- we have over 600 posts in our blog, each with about 700 words in them- all distilled into an easily comprehensible visual medium. As our blog changes, so will the graph. I think that in all our fields- International Relations, Political Science, Anthropology, Business, International Education, and Computer Science- this is extremely relevant, and I hope that you guys will make use of the tools that I have shown you. (speaking of those fields, I should probably add them as key words!). If you are interested in doing any sort of complex visualization- trust me, I&#8217;m your guy to develop an application for you that will do it!</p>
<p>See the live visualization and play with the Spring-Graph structure at: <a title="Bengfort.com Keywords Visualization" href="http://www.bengfort.com/keywords/" target="_blank">http://www.bengfort.com/keywords/</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Data+Visualization+of+Bengfort.com+Keywords+http%3A%2F%2Fbit.ly%2FetwSZv" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;title=Data+Visualization+of+Bengfort.com+Keywords" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;title=Data+Visualization+of+Bengfort.com+Keywords" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;t=Data+Visualization+of+Bengfort.com+Keywords" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;t=Data+Visualization+of+Bengfort.com+Keywords" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Data+Visualization+of+Bengfort.com+Keywords&amp;link=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Data+Visualization+of+Bengfort.com+Keywords&amp;link=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Data+Visualization+of+Bengfort.com+Keywords&amp;body=Link:+http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/%0D%0A%0D%0A----%0D%0A+The+science+%28and+art%29+of+data+visualization+so+appeals+to+me.+We+have+learned+bar+graphs%2C+line+graphs%2C+and+pie+charts+since+we+were+in+elementary+s..." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Data+Visualization+of+Bengfort.com+Keywords&amp;body=Link:+http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/%0D%0A%0D%0A----%0D%0A+The+science+%28and+art%29+of+data+visualization+so+appeals+to+me.+We+have+learned+bar+graphs%2C+line+graphs%2C+and+pie+charts+since+we+were+in+elementary+s..." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;title=Data+Visualization+of+Bengfort.com+Keywords" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/&amp;title=Data+Visualization+of+Bengfort.com+Keywords" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/data-visualization-of-bengfort-com-keywords/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Picasa vs. Flickr</title>
		<link>http://www.bengfort.com/benjamin/picasa-vs-flickr/</link>
		<comments>http://www.bengfort.com/benjamin/picasa-vs-flickr/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 17:39:48 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[The Cyber Realm]]></category>
		<category><![CDATA[Beginners on the Web]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Photo Management]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=548</guid>
		<description><![CDATA[A review of the two photo social network sites from Google and Yahoo.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2009/07/Picasa-v-Flickr.png"><img class="aligncenter size-full wp-image-549" title="Picasa v Flickr" src="http://www.bengfort.com/wordpress/wp-content/uploads/2009/07/Picasa-v-Flickr.png" alt="Picasa v Flickr" width="366" height="271" /></a></p>
<p>I have been a Flickr user for some time now, but a couple months ago I finally ran up against Flickr&#8217;s photo limits (200 pictures) and had to decide whether or not to upgrade to a Flickr Pro account for $24,99 a year. I had initially decided to use Flickr to share family photos and use plug-ins from our blog to manage them- rather than its more common usage as a photo sharing social networking site. Unfortunately, the regular account&#8217;s restrictions- only 2 sets (albums) and 200 photos was not substantial enough for our website. I was still planning on sticking with Flickr, however, because the Flickr API was easy and Flickr&#8217;s batch photo management system was superb and I had also built up a pretty good network of contacts on Flickr.</p>
<p>Meanwhile, I had been receiving shared album links from other friends and family via Picasa. At first (and with previous versions of Picasa), I was not impressed. I had other software that did what the desktop version of Picasa did, and it was nothing exciting. The web albums side was also just a means to share pictures privately, there was no social networking aspect, so generally I just downloaded the pictures from Picasa or embedded a slide show in another page I was working. However, I could not ignore the fact that most of my friends and family have GMail accounts (including me), so I decided to check it out.</p>
<p>Picasa 3 (the desktop software) is much improved from older versions, and has a connection with the web albums side of Picasa that is much better and cleaner than the batch photo organization tools from Yahoo. Plus, because I already had a GMail account- the social network on Picasa was already developed, and with a few minor tweaks I managed to build a network that rivaled my Flickr account. Picasa is now my default photo viewer and has some awesome details that improve web photo orgnaization, including watermarking and copyright management- as well as a desktop organization system that ties in with Windows Explorer. I still use Adobe CS4 to do all my photo editing and image work, but Picasa is a great image manager because it organizes both web and desktop (and external harddrive) images.</p>
<p>Google does not limit you on the number of photos you post, but rather on the amount of disk space- for free you get 1GB. However, upgraded storage is offered at very reasonable prices (comparative to Flickr), but here is the gravy- with Google, your upgraded storage goes across all your accounts- Gmail, Picasa, etc. So I purchased 10GB for $20 and vastly improved my Google experience. Photo management also has tie-ins with other Google applications- including geotagging from Google Earth. The public photos page also now rivals Flickr&#8217;s photostream as a place to put up your public albums.</p>
<p>I guess the bottom line is this: if you are a Google user (and most of my family is) then you should be using Picasa- you&#8217;ll find that your Google expereience improved dramatically. However, if you are a Yahoo user, then Flickr is still a very good web application, and you probably don&#8217;t care about all the tie ins that I mentioned above.</p>
<p>Just as a note- you will now see that the pictures on this blog (in the sidebar) are now from Picasa and not the Flickr photostream. If you would like to see my public photos page it is here: <a href="http://picasaweb.google.com/bbengfort">http://picasaweb.google.com/bbengfort</a>.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Picasa+vs.+Flickr+http%3A%2F%2Fbit.ly%2Ffa9ru9" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;title=Picasa+vs.+Flickr" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;title=Picasa+vs.+Flickr" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;t=Picasa+vs.+Flickr" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;t=Picasa+vs.+Flickr" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Picasa+vs.+Flickr&amp;link=http://www.bengfort.com/benjamin/picasa-vs-flickr/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Picasa+vs.+Flickr&amp;link=http://www.bengfort.com/benjamin/picasa-vs-flickr/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Picasa+vs.+Flickr&amp;body=Link:+http://www.bengfort.com/benjamin/picasa-vs-flickr/%0D%0A%0D%0A----%0D%0A+A+review+of+the+two+photo+social+network+sites+from+Google+and+Yahoo." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Picasa+vs.+Flickr&amp;body=Link:+http://www.bengfort.com/benjamin/picasa-vs-flickr/%0D%0A%0D%0A----%0D%0A+A+review+of+the+two+photo+social+network+sites+from+Google+and+Yahoo." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;title=Picasa+vs.+Flickr" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/picasa-vs-flickr/&amp;title=Picasa+vs.+Flickr" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/picasa-vs-flickr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Classic Facebook Ad!</title>
		<link>http://www.bengfort.com/benjamin/a-classic-facebook-ad/</link>
		<comments>http://www.bengfort.com/benjamin/a-classic-facebook-ad/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:49:32 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[The Cyber Realm]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Winston]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=466</guid>
		<description><![CDATA[Facebook is monetizing &#8220;web 2.0&#8243; by selling targeted ads- i.e. ads that use the data on Facebook to create custom tailored ads for each person. Google does similar things with Adwords and even the ads they place in Gmail. This kind of advertising has the potential to be extremely rotten (i.e. previous Facebook scandels where [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_467" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.bengfort.com/wordpress/wp-content/uploads/2009/04/winston-iq-ad.jpg"><img class="size-medium wp-image-467" title="Facebook IQ App Ad" src="http://www.bengfort.com/wordpress/wp-content/uploads/2009/04/winston-iq-ad-300x67.jpg" alt="Winston is the smartest person in our family! " width="300" height="67" /></a><p class="wp-caption-text">Winston is the smartest person in our family! </p></div>
<p>Facebook is monetizing &#8220;web 2.0&#8243; by selling targeted ads- i.e. ads that use the data on Facebook to create custom tailored ads for each person. Google does similar things with Adwords and even the ads they place in Gmail. This kind of advertising has the potential to be extremely rotten (i.e. previous Facebook scandels where your friend&#8217;s Amazon purchases might be shared with you), or they can be an effective and lightweight way to advertise (no more annoying pop-ups).</p>
<p>In typical Facebook tradition, for my Birthday my wall was plastered with best wishes from friends and family- and I can only assume this is why I received the banner ad that was at the top of the facebook page. The ad features my family members- and lists their IQs (which I&#8217;m 100% sure are fake), then ranks them accordingly. The target of the ad is at the end where my name and picture are listed with question marks for my IQ- obviously trying to get me to install the Facebook app and do better than my family (impossible).</p>
<p>What really made this a flop, and quite amusing, is that they ranked Winston, my pet dog, number 1, above Bethany, who is finishing a Master&#8217;s degree at the University of Maryland in the time it takes most people to get an Undergraduate degree, Devi who is fluent in Chinese, and my mother who is CEO/President of a company! Now, I realize that Winston went to Oxford, and has a snooty English accent, but he is only 3!</p>
<p>Nice work Facebook- a classic Facebook ad for my birthday!</p>
<p>Note: Click on the picture to see it in it&#8217;s orginal size in a lightbox!</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=A+Classic+Facebook+Ad%21+http%3A%2F%2Fbit.ly%2FhmNo7x" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;title=A+Classic+Facebook+Ad%21" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;title=A+Classic+Facebook+Ad%21" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;t=A+Classic+Facebook+Ad%21" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;t=A+Classic+Facebook+Ad%21" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=A+Classic+Facebook+Ad%21&amp;link=http://www.bengfort.com/benjamin/a-classic-facebook-ad/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=A+Classic+Facebook+Ad%21&amp;link=http://www.bengfort.com/benjamin/a-classic-facebook-ad/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=A+Classic+Facebook+Ad%21&amp;body=Link:+http://www.bengfort.com/benjamin/a-classic-facebook-ad/%0D%0A%0D%0A----%0D%0A+%0D%0A%0D%0AFacebook+is+monetizing+%22web+2.0%22+by+selling+targeted+ads-+i.e.+ads+that+use+the+data+on+Facebook+to+create+custom+tailored+ads+for+each+person...." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=A+Classic+Facebook+Ad%21&amp;body=Link:+http://www.bengfort.com/benjamin/a-classic-facebook-ad/%0D%0A%0D%0A----%0D%0A+%0D%0A%0D%0AFacebook+is+monetizing+%22web+2.0%22+by+selling+targeted+ads-+i.e.+ads+that+use+the+data+on+Facebook+to+create+custom+tailored+ads+for+each+person...." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;title=A+Classic+Facebook+Ad%21" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/a-classic-facebook-ad/&amp;title=A+Classic+Facebook+Ad%21" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/a-classic-facebook-ad/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Audible and iTunes University</title>
		<link>http://www.bengfort.com/benjamin/audible-and-itunes-university/</link>
		<comments>http://www.bengfort.com/benjamin/audible-and-itunes-university/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 01:39:23 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology Reviews]]></category>
		<category><![CDATA[Audible]]></category>
		<category><![CDATA[Driving]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=77</guid>
		<description><![CDATA[I need to exercise my mind while I'm driving- especially because I have a three hour drive a day. NPR can keep you engaged while you are driving, but reporting on current events can become repetitive. I have found that downloading lectures and Audiobooks from Audible.com keeps me engaged, and iTunes U has free lectures from professors all around the country. In addition, there is a lot of great content via podcasts!]]></description>
			<content:encoded><![CDATA[<p>I drive about three hours a day- a potential hole in my day that could suck the life out of me and any productivity I have along with it. It seems like a waste- just sitting behind the wheel doing nothing, staring endlessly into space. Probably the rest of my family would agree that when you leave time for your mind to wander like that you can very easily become stressful. I need my mind to be engaged especially during drives so that I can stay focused and so that when I do get to school I&#8217;m ready for the day. Usually this means a healthy dose of NPR, especially <em>Morning Edition</em>, and <em>All Things Considered</em>.  (By the way, if you don&#8217;t already, please support public radio- <a href="http://www.npr.org/stations/donate/index.php?ps=st10">support your local station</a>.) But the news can often become repetitive, and I need breaks from it, but I have found a solution.</p>
<p>Now basically all digital content has been made available on demand via the Internet. You can get streaming radio- or podcasts downloaded to your iPod (or other mobile audio player) and listen to them when you want to. For instance, I listen to <em>Wait, Wait, Don&#8217;t Tell Me</em>- an NPR news quiz that is hilarious and informative during the week. Unfortunately it comes on during the weekend when I&#8217;m not available to listen live, so I download it as a podcast. My Chumby streams live internet radio and podcasts from my iTunes, so I can listen while I work. If you are not doing this already, I highly encourage it- there is a lot of great content out there that can really add a lot to your daily routine.</p>
<p>To carry this forward, I want to talk about two services that allow me to get varied intellectual content that I couldn&#8217;t get elsewhere- <a title="Auidble.com" href="http://www.audible.com" target="_blank">Audible.com</a> and iTunes university. <a title="Audible.com" href="http://www.audible.com" target="_blank">Audilble.com</a> is a repository of all sorts of audio files from audio books to speeches, to the daily newspaper read out loud to you. But more on this in a second. iTunes university is a download service from Apple that allows you to download lectures and other academic audio recordings from professors from schools all over the United States. Talk about ways to keep your mind engaged while you&#8217;re driving!</p>
<p>While iTunes University is mostly free lectures- Audible.com is a paid for service. You can either purchase audio content individually for a premium price, or pay a subscription fee (of varying levels) that give you monthly credits to purchase audio works. Personally, I am on the subscription plan, and I have already &#8220;read&#8217; (heard) many great audio books as a result. Each reading is a performance, and they have some really excellent authors and narrators. I highly recommend it. Don&#8217;t have an iPod? Don&#8217;t worry- Audible has 5 different formats that you can download to- so you won&#8217;t be stranded just because you went with the Zune.</p>
<p>My father-in-law has just got a new job driving a tanker out here- and we are already getting him set up with these services. They keep you sharp and engage you, all while allowing you to do other things. People have been predicting the demise of radio- but audio content is still very accessible and very important- certainly it is much better than TV and much more engaging! Stay tuned for some podcast and Audible recommendations!</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Audible+and+iTunes+University+http%3A%2F%2Fbengfort.com%2F%3Fp%3D77" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;title=Audible+and+iTunes+University" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;title=Audible+and+iTunes+University" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;t=Audible+and+iTunes+University" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;t=Audible+and+iTunes+University" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Audible+and+iTunes+University&amp;link=http://www.bengfort.com/benjamin/audible-and-itunes-university/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Audible+and+iTunes+University&amp;link=http://www.bengfort.com/benjamin/audible-and-itunes-university/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Audible+and+iTunes+University&amp;body=Link:+http://www.bengfort.com/benjamin/audible-and-itunes-university/%0D%0A%0D%0A----%0D%0A+I+need+to+exercise+my+mind+while+I%27m+driving-+especially+because+I+have+a+three+hour+drive+a+day.+NPR+can+keep+you+engaged+while+you+are+driving%2C+b..." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Audible+and+iTunes+University&amp;body=Link:+http://www.bengfort.com/benjamin/audible-and-itunes-university/%0D%0A%0D%0A----%0D%0A+I+need+to+exercise+my+mind+while+I%27m+driving-+especially+because+I+have+a+three+hour+drive+a+day.+NPR+can+keep+you+engaged+while+you+are+driving%2C+b..." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;title=Audible+and+iTunes+University" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/audible-and-itunes-university/&amp;title=Audible+and+iTunes+University" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/audible-and-itunes-university/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nike + my Run</title>
		<link>http://www.bengfort.com/benjamin/nike-my-run/</link>
		<comments>http://www.bengfort.com/benjamin/nike-my-run/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 15:42:50 +0000</pubDate>
		<dc:creator>Benjamin</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology Reviews]]></category>
		<category><![CDATA[Fitness]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.bengfort.com/?p=14</guid>
		<description><![CDATA[Some of you may know this, but I am in preparations to run the Fargo half marathon in May. I figure that I need to do something to prove to myself that my back can get better- and I figured a half marathon was a much better idea than a whole one! So I have strapped on my running shoes and gone out to the (indoor) track at the campus gym and have been running laps for the past three weeks. In the ends, its either going to kill me or make me stronger, and I figured either of those options would be better for my back than nothing! Training has been going well so far, but I haven't been running too far, or too fast for that matter, and I have been in a lot of pain while running, so I decided it was time to buy a new pair of shoes, and in the process I discovered an amazing new toy! ]]></description>
			<content:encoded><![CDATA[<p>Some of you may know this, but I am in preparations to run the Fargo half marathon in May. I figure that I need to do something to prove to myself that my back can get better- and I figured a half marathon was a much better idea than a whole one! So I have strapped on my running shoes and gone out to the (indoor) track at the campus gym and have been running laps for the past three weeks. In the end, its either going to kill me or make me stronger, and I figured either of those options would be better for my back than nothing! Training has been going well so far, but I haven&#8217;t been running too far, or too fast for that matter, and I have been in a lot of pain while running, so I decided it was time to buy a new pair of shoes, and in the process I discovered an amazing new toy!</p>
<p>When I started looking for running shoes I thought my main concern would be things like comfort, stability, shoe size, running appropriateness, etc. How little did I realize that the main motivating factor would be technology! After comparing several brands- Adidas, Under Armour, New Balance, and Nike, I realized that they all had pretty much the same thing going, and I could get whatever I needed. The deciding factor was Nike&#8217;s relationship with Apple. Nike and Apple have teamed up to create Nike + runs, a gadget that I would highly recommend to any serious runner.</p>
<p>So here is how it works. You put a little chip into your left shoe, under the insole. The chip is activated when you step on it, so you can only wear these shoes for running- don&#8217;t take them out to the mall or battery life will plummet. Next, you plug in a tiny data chip into your iPod- don&#8217;t worry it looks exactly like the charger and isn&#8217;t too big, it fits in most arm bands. Once plugged in, the iPod (if you have the right version of the iPod software, which you should if you bought your iPod in the past two years) you have access to Nike runs on your iPod.</p>
<p>Nike Runs basically plays a music track of your choice while you are running. But on top of the music track a little voice lets you know how far you have gone, what your pace and time is, and even gives you little coaching tips. You can do distance, time, or pace workouts and customize each one so the little voice tells you what you want to hear. In addition you can select a &#8220;Power Song&#8221; that when you need a little boost, you hit the button and the power song immediately comes on to pump you up!</p>
<p>The chip in your shoe tracks distance and time (and therefore also pace) very accurately. In fact, with no configuration at all, it was only a half lap off of 2 miles (my first run with it). If you know a distance, you can then configure it so you don&#8217;t have to run that extra half lap.</p>
<p>But that&#8217;s not the end- plug the iPod into your computer, and it uploads the data to Nikeruns.com. And here is where things really get interesting. At Nike Runs you can compete against your friends (around the world), you can track your workouts, you can create customized workout plans that download to your iPod, you can set goals and milestones and have them tracked- all without having to input any data, it all comes from the iPod. Also, Apple and Nike have commissioned original music tracks specifically devoted to running so that you have the right music to keep you on tempo or pace. They even have celebrity coaches that help you learn to run better, faster, or stronger.</p>
<p>The experience was easy- easy setup, easy tracking, easy use. And the design and interface are beautiful. Combine that with the precision, and I think I have myself a very handy tool that might get me 13.1 miles yet! I highly recommend this to anyone that is planning on getting new shoes soon.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" class="tt" href="http://twitter.com/intent/tweet?text=Nike+%2B+my+Run+http%3A%2F%2Fbit.ly%2FeUw0kH" title="Post to Twitter"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;title=Nike+%2B+my+Run" title="Post to Digg"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a target="_blank" class="tt" href="http://digg.com/submit?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;title=Nike+%2B+my+Run" title="Post to Digg"> </a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/nike-my-run/&amp;t=Nike+%2B+my+Run" title="Post to Facebook"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a target="_blank" class="tt" href="http://www.facebook.com/share.php?u=http://www.bengfort.com/benjamin/nike-my-run/&amp;t=Nike+%2B+my+Run" title="Post to Facebook"> </a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Nike+%2B+my+Run&amp;link=http://www.bengfort.com/benjamin/nike-my-run/" title="Post to FriendFeed"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/ff/tt-ff.png" alt="Post to FriendFeed" /></a> <a target="_blank" class="tt" href="http://www.friendfeed.com/share?title=Nike+%2B+my+Run&amp;link=http://www.bengfort.com/benjamin/nike-my-run/" title="Post to FriendFeed"> </a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;imageurl=" title="Post to Google Buzz"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gbuzz/tt-gbuzz.png" alt="Post to Google Buzz" /></a> <a target="_blank" class="tt" href="http://www.google.com/buzz/post?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;imageurl=" title="Post to Google Buzz"> </a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Nike+%2B+my+Run&amp;body=Link:+http://www.bengfort.com/benjamin/nike-my-run/%0D%0A%0D%0A----%0D%0A+Some+of+you+may+know+this%2C+but+I+am+in+preparations+to+run+the+Fargo+half+marathon+in+May.+I+figure+that+I+need+to+do+something+to+prove+to+myself+..." title="Send Gmail"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/gmail/tt-gmail.png" alt="Send Gmail" /></a> <a target="_blank" class="tt" href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Nike+%2B+my+Run&amp;body=Link:+http://www.bengfort.com/benjamin/nike-my-run/%0D%0A%0D%0A----%0D%0A+Some+of+you+may+know+this%2C+but+I+am+in+preparations+to+run+the+Fargo+half+marathon+in+May.+I+figure+that+I+need+to+do+something+to+prove+to+myself+..." title="Send Gmail"> </a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;title=Nike+%2B+my+Run" title="Post to StumbleUpon"><img class="nothumb" src="http://www.bengfort.com/wordpress/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a target="_blank" class="tt" href="http://stumbleupon.com/submit?url=http://www.bengfort.com/benjamin/nike-my-run/&amp;title=Nike+%2B+my+Run" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.bengfort.com/benjamin/nike-my-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

