<?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>Eric Blue's Blog &#187; Visualization</title>
	<atom:link href="http://eric-blue.com/category/visualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://eric-blue.com</link>
	<description>Technology, Philosophy, and Personal Development</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:30:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Neurosky Brainwave Visualizer</title>
		<link>http://eric-blue.com/2011/07/13/neurosky-brainwave-visualizer/</link>
		<comments>http://eric-blue.com/2011/07/13/neurosky-brainwave-visualizer/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 15:36:03 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Mind Hacks]]></category>
		<category><![CDATA[Personal Informatics]]></category>
		<category><![CDATA[Quantified Self]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/?p=1509</guid>
		<description><![CDATA[I recently purchased a Neurosky Windwave EEG device ($100 model).  The Mindwave measures your brain&#8217;s electrical activity, and can detect your level of focus (attention vs. mediation) and measure typical brainwave patterns (beta, alpha, theta, ...]]></description>
			<content:encoded><![CDATA[<p>I recently purchased a <a href="http://neurosky.com/">Neurosky</a> Windwave EEG device ($100 model).  The Mindwave measures your brain&#8217;s electrical activity, and can detect your level of focus (attention vs. mediation) and measure typical brainwave patterns (beta, alpha, theta, and delta).  There are a number games included, and a wide range of ones to download from their appstore.  I was surprised to see no immediate way to visualize or record the data coming from the device.  There is a project for Linux called <a href="http://brainstorms.puzzlebox.info/index.php?entry=entry100802-202304">Puzzlebox</a> that emulates the Thinkgear connection protocol, however it seems to only support the Mindset (a more expensive Neurosky device that communicates over Bluetooth rather than RF).  There&#8217;s also a project called <a href="http://openvibe.inria.fr/?q=bci">OpenVibe </a>that let&#8217;s you visualize brainwave data (among other things), supports a number of other devices including Emotiv, however again only supports the MindSet.</p>
<p><a href="http://eric-blue.com/wp-content/uploads/2011/07/neurosky-mindwave-bci-headset.jpg"><img class="aligncenter size-medium wp-image-1513" title="neurosky-mindwave-bci-headset" src="http://eric-blue.com/wp-content/uploads/2011/07/neurosky-mindwave-bci-headset-300x208.jpg" alt="" width="300" height="208" /></a></p>
<p>I stumbled across a VERY cool hack &#8216;<a href="http://frontiernerds.com/brain-hack">How to Hack Toy EEGs</a>&#8216;. As much as I eventually want to tinker around with some soldering and Arduindo hacking, this was a little more in depth with time permitting.  The key takeaway from this article was a very impressive <a href="http://processing.org/">Processing</a>-based visualizer to grab data from the custom serial interface and display in real-time.  With relatively little work I was able to fork the version of code and interface with the Mindwave using the official ThinkGear Socket Protocol.  I also generated builds for Windows, Linux, and Mac so anybody can download and install. You can check this out at <a href="https://github.com/ericblue/Processing-Brain-Grapher">https://github.com/ericblue/Processing-Brain-Grapher</a>.</p>
<p><a href="http://eric-blue.com/wp-content/uploads/2011/07/Screenshot-brain_grapher-2.png"><img class="aligncenter size-medium wp-image-1510" title="Screenshot-brain_grapher-2" src="http://eric-blue.com/wp-content/uploads/2011/07/Screenshot-brain_grapher-2-300x224.png" alt="" width="352" height="262" /></a></p>
<p>Here&#8217;s the README with some more in depth info:</p>
<blockquote>
<pre>[Overview]

After purchasing a Neurosky Mindwave EEG device, I was surprised to see limited apps for
viewing and visualizing EEG output (brainwave activity for delta, theta, alpha,
and beta waves). Upon discovering 'How to Hack Toy EEGs'
(<a href="http://frontiernerds.com/brain-hack">http://frontiernerds.com/brain-hack</a>), I was
inspired by the Processing visualization of the Arduino-based serial output.
I wanted to visualize the same set of data, however decided to obtain it using
Neurosky's published ThinkGear Socket Protocol
(<a href="http://developer.neurosky.com/docs/doku.php?id=thinkgear_connector_tgc">http://developer.neurosky.com/docs/doku.php?id=thinkgear_connector_tgc</a>).

This fork of kitschpatrol's original code differs in that it doesn't use the
Serial interface to obtain brainwave data.  Rather, it communicates via the ThinkGear
connector using the ThinkGear Socket Protocol and requests data in JSON format.

[MindWave/MindSet Communication]

By default the ThinkGear Connector allows applications to connect over TCP
(default 127.0.0.1:13854) and request data in either binary or JSON format.
This application will connect to the ThinkGear socket,
and read the streaming real-time data.  Format:

	{
	"eSense":
		{"attention":91,"meditation":41},
	 "eegPower":
	 	{"delta":1105014,"theta":211310,
	 	"lowAlpha":7730,"highAlpha":68568,
	 	"lowBeta":12949,"highBeta":47455,
	 	"lowGamma":55770,"highGamma":28247},
	 "poorSignalLevel":0
	 }

The default IP and port will be used, unless alternatives are specified as
environment variables (THINKGEAR_HOST and THINKGEAR_PORT).  Port forwarding can
be used on the host Windows or Mac computer to allow remote servers to connect.
To allow other hosts to connect and run Processing, run ReplayTCP
(<a href="http://www.dlcsistemas.com/html/relay_tcp.html">http://www.dlcsistemas.com/html/relay_tcp.html</a>) OR, use netcat (windows or mac)
to port forward (clients can now connect to port 13855).
Ex:  nc -l -p 13855 -c ' nc localhost 13854'

[Required Libaries]

The following required libraries are included:

- ControlP5
- JSON (See <a href="http://www.blprnt.com/processing/json.zip">http://www.blprnt.com/processing/json.zip</a>)

[Binaries]

Binaries were creating using Processing's app builder
(platforms = windows, mac &amp; linux)

[Todo]
- Re-visit previous todo from original code
- Add ability to record data (CSV, etc.)
</pre>
</blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Neurosky+Brainwave+Visualizer+http://eric-blue.com/?p=1509+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2011/07/13/neurosky-brainwave-visualizer/&amp;title=Neurosky+Brainwave+Visualizer" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2011/07/13/neurosky-brainwave-visualizer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>The Visual Wiki: A New Metaphor For Knowledge Access and Management</title>
		<link>http://eric-blue.com/2009/05/12/the-visual-wiki-a-new-metaphor-for-knowledge-access-and-management/</link>
		<comments>http://eric-blue.com/2009/05/12/the-visual-wiki-a-new-metaphor-for-knowledge-access-and-management/#comments</comments>
		<pubDate>Wed, 13 May 2009 05:32:13 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Visualization]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://eric-blue.com/?p=831</guid>
		<description><![CDATA[Truly fascinating work!  This is next on my list for my Personal Memex.




And, the original paper on Scribd:

The Visual Wiki: A New Metaphor for Knowledge Access and Management 
    Publish at ...]]></description>
			<content:encoded><![CDATA[<p>Truly fascinating work!  This is next on my list for my <a href="http://eric-blue.com/projects/personal-memex/">Personal Memex</a>.</p>
<p><center><br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/yZ52ORG89Yg&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/yZ52ORG89Yg&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
</center><br />
</p>
<p>And, the original paper on Scribd:</p>
<p><center><br />
<a title="View The Visual Wiki: A New Metaphor for Knowledge Access and Management on Scribd" href="http://www.scribd.com/doc/15304419/The-Visual-Wiki-A-New-Metaphor-for-Knowledge-Access-and-Management" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">The Visual Wiki: A New Metaphor for Knowledge Access and Management</a> <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="doc_903037423934002" name="doc_903037423934002" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle"	height="500" width="450" ><param name="movie"	value="http://d.scribd.com/ScribdViewer.swf?document_id=15304419&#038;access_key=key-ov7njr7xbbwmz55ozbq&#038;page=1&#038;version=1&#038;viewMode=list"><param name="quality" value="high"><param name="play" value="true"><param name="loop" value="true"><param name="scale" value="showall"><param name="wmode" value="opaque"><param name="devicefont" value="false"><param name="bgcolor" value="#ffffff"><param name="menu" value="true"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="salign" value=""><param name="mode" value="list"><embed src="http://d.scribd.com/ScribdViewer.swf?document_id=15304419&#038;access_key=key-ov7njr7xbbwmz55ozbq&#038;page=1&#038;version=1&#038;viewMode=list" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_903037423934002_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" mode="list" height="500" width="450"></embed></object>
<div style="margin: 6px auto 3px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 12px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block;">    <a href="http://www.scribd.com/upload" style="text-decoration: underline;">Publish at Scribd</a> or <a href="http://www.scribd.com/browse" style="text-decoration: underline;">explore</a> others:            <a href="http://www.scribd.com/explore/School-Work/" style="text-decoration: underline;">School Work</a>              <a href="http://www.scribd.com/explore/School-Work/Essays-Theses" style="text-decoration: underline;">Essays &#038; Theses</a>              <a href="http://www.scribd.com/explore/Books/Nonfiction" style="text-decoration: underline;">Non-fiction</a>                  <a href="http://www.scribd.com/tag/web" style="text-decoration: underline;">web</a>              <a href="http://www.scribd.com/tag/2.0" style="text-decoration: underline;">2.0</a>      	</div>
<p></center></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=The+Visual+Wiki%3A+A+New+Metaphor+For+Knowledge+Access+and+Management+http://eric-blue.com/?p=831+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2009/05/12/the-visual-wiki-a-new-metaphor-for-knowledge-access-and-management/&amp;title=The+Visual+Wiki%3A+A+New+Metaphor+For+Knowledge+Access+and+Management" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2009/05/12/the-visual-wiki-a-new-metaphor-for-knowledge-access-and-management/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>15 Effective Tools for Visual Knowledge Management</title>
		<link>http://eric-blue.com/2009/05/10/15-effective-tools-for-visual-knowledge-management/</link>
		<comments>http://eric-blue.com/2009/05/10/15-effective-tools-for-visual-knowledge-management/#comments</comments>
		<pubDate>Sun, 10 May 2009 21:13:08 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[InfoViz]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Mind Mapping]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Semantic Web]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/?p=785</guid>
		<description><![CDATA[I've discovered a number of interesting applications that help people efficiently organize information. There certainly is no shortage of solutions for this problem domain.  Many tools exist that offer the ability to discover, save, organize, search, and retrieve information.  ]]></description>
			<content:encoded><![CDATA[<p>Since I started my quest a few years ago searching for the ultimate knowledge management tool, I&#8217;ve discovered a number of interesting applications that help people efficiently organize information. There certainly is no shortage of solutions for this problem domain.  Many tools exist that offer the ability to discover, save, organize, search, and retrieve information.  However, I&#8217;ve noticed a trend in recent years, and some newer applications are focusing more on the visual representation and relationship of knowledge.  I believe this is in part due to the wider adoption of mind mapping (and concept mapping), and leveraging concepts and advances in the semantic web community.</p>
<p>Most traditional <a href="http://en.wikipedia.org/wiki/Personal_knowledge_management">personal knowledge management</a> (PKM) or <a href="http://en.wikipedia.org/wiki/Personal_information_manager">personal information management</a> (PIM) applications offer the same basic set of features:</p>
<p>* Storage of notes and documents<br />
* Search functionality and keyword/tagging capability<br />
* Outline view in a traditional hierarchy, or user-defined views<br />
* Task management, calendar, and contact management (mainly PIM, not KM)</p>
<p>These are essential features, however don&#8217;t offer too much to the more visually-inclined knowledge junkies.  For visual learners and <a href="http://en.wikipedia.org/wiki/Information_visualization">information visualization</a> fans, having a graphical representation of knowledge and seeing how things relate is a must have feature.  Luckily, in the past few years there has been a rise in the number of knowledge management applications that offer this capability.  The following is a list of interesting /unique / effective tools for knowledge management and information visualization (not listed in any particular order):</p>
<h3>15. DeepaMehta</h3>
<p><a href="http://eric-blue.com/wp-content/uploads/2009/05/deepamehta.jpg"><img class="aligncenter size-full wp-image-789" title="deepamehta" src="http://eric-blue.com/wp-content/uploads/2009/05/deepamehta.jpg" alt="" width="500" height="327" /></a></p>
<p>Link: <a href="http://www.deepamehta.de/">http://www.deepamehta.de/</a><br />
Platforms: Win, Mac, Linux<br />
Cost: Free (Open Source)</p>
<blockquote><p>DeepaMehta is a &#8220;networked semantic desktop&#8221; that replaces the traditional computer desktop. DeepaMehta rids the user from dealing with applications, files and directories. Instead, the DeepaMehta user arranges information of any kind and origin into supportive topic maps. Topics may be e.g. projects, emails, webpages, notes, articles, contacts, or meetings. Users define their own topic types. Old-fashioned applications, windows and files are no longer in the sight of the user, but the meaningful relationships between real world topics.</p></blockquote>
<h3>14. Tinderbox</h3>
<p><a href="http://eric-blue.com/wp-content/uploads/2009/05/tinderbox.jpg"><img class="aligncenter size-full wp-image-793" title="tinderbox" src="http://eric-blue.com/wp-content/uploads/2009/05/tinderbox.jpg" alt="" width="500" height="327" /></a></p>
<p>Link: <a href="http://www.eastgate.com/Tinderbox/">http://www.eastgate.com/Tinderbox/</a><br />
Platforms: Mac<br />
Cost: $179</p>
<blockquote><p>Tinderbox stores and organizes your notes, plans, and ideas. It can help you analyze and understand them. And Tinderbox helps you share ideas through Web journals and web logs.  Tinderbox maps your notes as you make them. Build relationships by arranging notes, organizing  them with shape and color, linking them. Tinderbox lets you record ideas quickly and keep them where you&#8217;ll find them again when you need them.</p></blockquote>
<h3>13. Vue</h3>
<p><a href="http://eric-blue.com/wp-content/uploads/2009/05/vue.jpg"><img class="aligncenter size-full wp-image-795" title="vue" src="http://eric-blue.com/wp-content/uploads/2009/05/vue.jpg" alt="" width="500" height="327" /></a></p>
<p>Link: <a href="http://vue.tufts.edu/">http://vue.tufts.edu/</a><br />
Platforms: Win, Mac, Linux<br />
Cost: Free (Open Source)</p>
<blockquote><p>At its core, the Visual Understanding Environment (VUE) is a concept and content mapping application, developed to support teaching, learning and research and for anyone who needs to organize, contextualize, and access digital information. Using a simple set of tools and a basic visual grammar consisting of nodes and links, faculty and students can map relationships between concepts, ideas and digital content.</p></blockquote>
<h3>12. eyePlorer</h3>
<p><a href="http://eric-blue.com/wp-content/uploads/2009/05/eyeplorer.jpg"><img class="aligncenter size-full wp-image-799" title="eyeplorer" src="http://eric-blue.com/wp-content/uploads/2009/05/eyeplorer.jpg" alt="" width="500" height="327" /></a></p>
<p>Link: http://www.eyeplorer.com/eyePlorer/<br />
Platforms: Web<br />
Cost: Free</p>
<blockquote><p>EyePlorer allows you to explore and process knowledge.  Search engines help you find links and documents – they require you to follow these links and open the respective document in order to access information. eyePlorer.com, powered by vionto, provides immediate access to facts. It visualizes facts as well as relationships between facts. Furthermore, eyePlorer.com allows you to collect, process and publish interesting bits of information. eyePlorer.com is a visual knowledge workbench.</p></blockquote>
<h3>11. BeeDocs Timeline</h3>
<p><a href="http://eric-blue.com/wp-content/uploads/2009/05/beedocstimeline.jpg"><img class="alignnone size-full wp-image-802" title="beedocstimeline" src="http://eric-blue.com/wp-content/uploads/2009/05/beedocstimeline.jpg" alt="" width="500" height="327" /></a></p>
<p>Link: <a href="http://www.beedocs.com">http://www.beedocs.com</a><br />
Platforms: Mac<br />
Cost: $65</p>
<blockquote><p>Bee Docs Timeline is software for Mac OS X that makes it easy for you to present historical events in a way that reveals connections and clarifies relationships.</p>
<p>Make timeline charts of world history, family trees, fictional events or business deadlines. Timelines can help you understand and present history with new perspective!</p>
<p>See: <a href="http://eric-blue.com/2009/04/14/how-to-create-stunning-3d-timelines/">http://eric-blue.com/2009/04/14/how-to-create-stunning-3d-timelines/</a></p></blockquote>
<h3>Post continued, click below to navigate to the next page&#8230;.</h3>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=15+Effective+Tools+for+Visual+Knowledge+Management+http://eric-blue.com/?p=785+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2009/05/10/15-effective-tools-for-visual-knowledge-management/&amp;title=15+Effective+Tools+for+Visual+Knowledge+Management" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2009/05/10/15-effective-tools-for-visual-knowledge-management/feed/</wfw:commentRss>
		<slash:comments>56</slash:comments>
		</item>
		<item>
		<title>Building the Memex Sixty Years Later: Trends and Directions in Personal Knowledge Bases</title>
		<link>http://eric-blue.com/2008/06/10/building-the-memex-sixty-years-later-trends-and-directions-in-personal-knowledge-bases/</link>
		<comments>http://eric-blue.com/2008/06/10/building-the-memex-sixty-years-later-trends-and-directions-in-personal-knowledge-bases/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 00:53:35 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2008/06/10/building-the-memex-sixty-years-later-trends-and-directions-in-personal-knowledge-bases/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>By shear serendipity (ala Google), I stumbled across a truly great paper on Personal Knowledge Management.  The paper, titled <em>Building the Memex Sixty Years Later:<br />
Trends and Directions in Personal Knowledge Bases</em>, is undoubtedly one of the most comprehensive pieces of literature that I&#8217;ve read on PKM (Personal Knowledge Management).  This paper was written by 3 students at the University of Colorado (Stephen Davies, Javier Velez-Morales, and Roger King) in Aug 2005.</p>
<p>Two key things from this paper really stood out to me:</p>
<ol>
<li>The distinction between the role of objective and subjective realms when it comes to PKM.  For example:<br />
<blockquote><p>
&#8220;&#8230; the objective realm – the set of electronic documents and other information that are<br />
available to a group at large. This is often the entire public domain, as with the World<br />
Wide Web, but sometimes it may be communicated only internally with an organization.<br />
The key factor is that it consists of materials everyone within a large group has access to,<br />
and views identically (ie., a given text appears the same to everyone.)<br />
a subjective realm – the viewpoints, interpretations, classifications, and relationships<br />
that an individual perceives when examining the objective realm. This set of elements is<br />
unique to each observer. It represents the ongoing accumulation of knowledge each<br />
person builds as they browse and learn from objective sources. It need not consist solely<br />
of elements from the objective realm, as the observer will also bring in their own<br />
background knowledge and biases, but it is most often primarily comprised of such<br />
objective elements.&#8221;
</p></blockquote>
</li>
<li>The depth and range of coverage of the existing PKM solutions (mindmaps, outliners, wikis, semantic web technologies, and numerous references to historical PKM products)</li>
</ol>
<p>If you&#8217;re interested in Personal Knowledge Management, I would *highly* recommend checking out this paper.  My curiosity about the <a href="http://eric-blue.com/blog/2008/05/as_we_may_think_memex.html">Memex</a> has been peeked recently, and this paper definitely re-enforces the notion that others are interested in also achieving this vision.</p>
<p>I was able to find this pretty easily (by luck) via Google, however there is a limited distribution notice in the paper itself.  So, i&#8217;m not certain if I can or should provide a direct link.  However, you can check out the link to the ACM Portal (ACM subscription required).  It seems the link on ACM is referencing a new paper published in 2006, which I have not yet reviewed:</p>
<p><a href="http://portal.acm.org/citation.cfm?id=1142431">http://portal.acm.org/citation.cfm?id=1142431</a></p>
<p>And, of course, you can simply Google the paper title in quotes and you should be able to find the .pdf pretty easily:</p>
<p>Google &#8220;Building the Memex Sixty Years Later: Trends and Directions in Personal Knowledge Bases&#8221;</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Building+the+Memex+Sixty+Years+Later%3A+Trends+and+Directions+in+Personal+Knowledge+Bases+http://eric-blue.com/?p=419+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2008/06/10/building-the-memex-sixty-years-later-trends-and-directions-in-personal-knowledge-bases/&amp;title=Building+the+Memex+Sixty+Years+Later%3A+Trends+and+Directions+in+Personal+Knowledge+Bases" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2008/06/10/building-the-memex-sixty-years-later-trends-and-directions-in-personal-knowledge-bases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ThinkBase: Visual Semantic Wiki</title>
		<link>http://eric-blue.com/2008/06/05/thinkbase-visual-semantic-wiki/</link>
		<comments>http://eric-blue.com/2008/06/05/thinkbase-visual-semantic-wiki/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 03:02:25 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Knowledge Management]]></category>
		<category><![CDATA[Learning]]></category>
		<category><![CDATA[Mind Mapping]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2008/06/05/thinkbase-visual-semantic-wiki/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Thanks again to <a href="http://del.icio.us">del.icio.us</a>, I discovered an amazing site today called <a href="http://thinkbase.cs.auckland.ac.nz/">Thinkbase.</a></p>
<blockquote>
<p>&#8220;Thinkbase is a new way to navigate and explore information on the web. It is what we call a &#8216;Visual Wiki&#8217;. It is based on Freebase, an open, shared database of the world&#8217;s knowledge &#8211; in other words a Semantic Wiki. Thinkbase uses a visualization tool (Thinkmap) to create an interactive visual representation of the semantic relationships in Freebase.&#8221;</p>
</blockquote>
<p><center><img style="border: 1px solid #c0c0c0;" src="http://eric-blue.com/blog/images/thinkbase.jpg"></center></p>
<p>This is actually something I&#8217;ve been wanting to do with my own Personal Knowledge Manager(a.k.a. <a href="http://eric-blue.com/blog/2008/02/semantic_wikis_review.html">Semantic Wiki </a>or <a href="http://eric-blue.com/blog/2008/05/as_we_may_think_memex.html">Memex</a>).  I&#8217;m a huge fan of visualization, and <a href="http://www.thinkmap.com/">ThinkMap</a> (The software used to power ThinkBase) is a pretty comprehensive toolkit.  I&#8217;ve looked at quite a few different visualization solutions over the last few years, and ThinkBase is one of the most impressive ones.  Recently I came across a stunning Flash-based project by <a href="http://www.rubenswieringa.com/">Ruben Swieringa</a><br />
called the interactive mindmap (<a href="http://www.rubenswieringa.com/blog/interactive-mindmap">http://www.rubenswieringa.com/blog/interactive-mindmap</a>).  It would be interesting to leverage some sort of open source solution like this to accomplish what the guys at ThinkBase have done.  Overall, ThinkBase is a step in the right direction and I&#8217;m hoping it gets some well-deserved attention.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=ThinkBase%3A+Visual+Semantic+Wiki+http://eric-blue.com/?p=418+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2008/06/05/thinkbase-visual-semantic-wiki/&amp;title=ThinkBase%3A+Visual+Semantic+Wiki" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2008/06/05/thinkbase-visual-semantic-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Information Visualization Toolkit (JIT)</title>
		<link>http://eric-blue.com/2008/05/22/javascript-information-visualization-toolkit-jit/</link>
		<comments>http://eric-blue.com/2008/05/22/javascript-information-visualization-toolkit-jit/#comments</comments>
		<pubDate>Thu, 22 May 2008 13:35:00 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2008/05/22/javascript-information-visualization-toolkit-jit/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been personally waiting for something like this for a while&#8230;.</p>
<p>What is JIT?</p>
<blockquote>
<p>The JIT is an advanced JavaScript infovis toolkit based on 5 papers about different information visualization techniques.<br />
The JIT implements advanced features of information visualization like Treemaps (with the slice and dice and squarified methods), an adapted visualization of trees based on the Spacetree, a focus+context technique to plot Hyperbolic Trees, and a radial layout of trees with advanced animations (RGraph).</p>
</blockquote>
<p>Read more at <a href="http://blog.thejit.org/javascript-information-visualization-toolkit-jit/">http://blog.thejit.org/javascript-information-visualization-toolkit-jit/</a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=JavaScript+Information+Visualization+Toolkit+%28JIT%29+http://eric-blue.com/?p=414+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2008/05/22/javascript-information-visualization-toolkit-jit/&amp;title=JavaScript+Information+Visualization+Toolkit+%28JIT%29" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2008/05/22/javascript-information-visualization-toolkit-jit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Tools for Visualization</title>
		<link>http://eric-blue.com/2008/03/13/the-best-tools-for-visualization/</link>
		<comments>http://eric-blue.com/2008/03/13/the-best-tools-for-visualization/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 02:21:44 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2008/03/13/the-best-tools-for-visualization/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.readwriteweb.com/">ReadWriteWeb</a> has posted a fantastic (and detailed) list of tools for information visualization:</p>
<blockquote><p>
&#8220;Visualization is a technique to graphically represent sets of data. When data is large or abstract, visualization can help make the data easier to read or understand. There are visualization tools for search, music, networks, online communities, and almost anything else you can think of. Whether you want a desktop application or a web-based tool, there are many specific tools are available on the web that let you visualize all kinds of data.&#8221;
</p></blockquote>
<p>Source: <a href="http://www.readwriteweb.com/archives/the_best_tools_for_visualization.php">http://www.readwriteweb.com/archives/the_best_tools_for_visualization.php</a></p>
<p>Related Post:<br />
<a href="http://eric-blue.com/blog/2006/10/dataesthetics_the_power_and_be.html">http://eric-blue.com/blog/2006/10/dataesthetics_the_power_and_be.html</a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=The+Best+Tools+for+Visualization+http://eric-blue.com/?p=405+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2008/03/13/the-best-tools-for-visualization/&amp;title=The+Best+Tools+for+Visualization" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2008/03/13/the-best-tools-for-visualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Information Flow &#8211; The Complexity of the Web 2.0 World</title>
		<link>http://eric-blue.com/2008/02/10/social-media-information-flow-the-complexity-of-the-web-20-world/</link>
		<comments>http://eric-blue.com/2008/02/10/social-media-information-flow-the-complexity-of-the-web-20-world/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 18:14:01 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Mind Mapping]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2008/02/10/social-media-information-flow-the-complexity-of-the-web-20-world/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>The other day, ReadWriteWeb posted an interesting article on <a href="http://www.readwriteweb.com/archives/visualizing_social_media_fatigue.php">Visualizing Social Media Fatigue</a>.</p>
<blockquote><p>
&#8220;Our attention is stretched so thin these days that there are times when I have actually tried to register for what I thought was a new service only to realize later that I already had an account &#8212; it just got lost in the shuffle. With so many new web sites and services vying for our attention it is easy to feel the effects of social media fatigue. Andrew Shuttleworth, a social media junky living in Japan, thought it might be helpful to try to map his social media usage. The result is a staggering view of how information we put on the web flows.&#8221;
</p></blockquote>
<p><center><br />
<image src="http://eric-blue.com/blog/images/online-info-flow-small.jpg"><br />
</center></p>
<p>You can check out Andrew&#8217;s original post here:<br />
<a href="http://hq.andrewshuttleworth.com/hq/2008/02/social-media-on.html">http://hq.andrewshuttleworth.com/hq/2008/02/social-media-on.html</a></p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Social+Media+Information+Flow+%E2%80%93+The+Complexity+of+the+Web+2.0+World+http://eric-blue.com/?p=395+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2008/02/10/social-media-information-flow-the-complexity-of-the-web-20-world/&amp;title=Social+Media+Information+Flow+%E2%80%93+The+Complexity+of+the+Web+2.0+World" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2008/02/10/social-media-information-flow-the-complexity-of-the-web-20-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burst &#8211; Visual Music Search Interface</title>
		<link>http://eric-blue.com/2007/06/24/burst-visual-music-search-interface/</link>
		<comments>http://eric-blue.com/2007/06/24/burst-visual-music-search-interface/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 03:09:32 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2007/06/24/burst-visual-music-search-interface/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://infosthetics.com/archives/2007/06/burstlabs_visual_music_search_interface.html">Information Aesthetics</a> recently posted about a new music visualization interface from <a href="http://burstlabs.com/">Burst Labs</a>.</p>
<p>And, here&#8217;s a quick summary from <a href="http://www.notcot.com/archives/2007/06/burst_labs.php">NotCot</a>:</p>
<blockquote><p>
&#8220;The Discover interface of Burst Labs is mesmerizingly brilliant ~ and there’s a melody for every mood you could possibly feel or imagine, and truly one of the most refreshing flashy user experiences i’ve encountered recently. Burst Labs is the latest brainchild of The Burst Collective: which Compose + Produces Music, Licenses Music, Records Music, and now gives you an incredible multi sensory experience to browse this ambient digital music space. Odds are you’ve already heard their music and didn’t even realize it… &#8221;
</p></blockquote>
<p><center><br />
<a href="http://www.burstlabs.com"><img src="http://eric-blue.com/blog/images/burst.jpg"></a><br />
</center></p>
<p>I compiled a list of compelling <a href="http://eric-blue.com/blog/2006/11/how_to_discover_music_you_like.html">music visualization resources</a> last November.  I&#8217;ll be sure to include the Burst interface in my next major update.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Burst+%E2%80%93+Visual+Music+Search+Interface+http://eric-blue.com/?p=359+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2007/06/24/burst-visual-music-search-interface/&amp;title=Burst+%E2%80%93+Visual+Music+Search+Interface" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2007/06/24/burst-visual-music-search-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speedlinks Using Del.icio.us and Yahoo Pipes</title>
		<link>http://eric-blue.com/2007/06/23/speedlinks-using-delicious-and-yahoo-pipes/</link>
		<comments>http://eric-blue.com/2007/06/23/speedlinks-using-delicious-and-yahoo-pipes/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 20:31:39 +0000</pubDate>
		<dc:creator>ericblue76</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Speedlink]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Visualization]]></category>

		<guid isPermaLink="false">http://eric-blue.com/blog2/2007/06/23/speedlinks-using-delicious-and-yahoo-pipes/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Last week I <a href="http://eric-blue.com/blog/2007/06/recent_blog_updates_captcha_and_speedlinking.html" target="newwin">started adding SpeedLinks</a> to this blog.  I&#8217;ve been looking for a good excuse to experiment with <a href="http://pipes.yahoo.com" target="newwin">Yahoo Pipes</a> for some time now.  So, I wanted to find out if I could take the concept of the original <a href="http://www.veen.com/jeff/archives/000424.html">Perl script</a> I found, and create a pipe to do all the work (with little, to no programming).  This original script basically does the following:</p>
<p>1) Allows you to store your Speedlinks with <a href="http://del.icio.us/">del.icio.us</a> using a common tag like &#8217;speedlink&#8217;.</p>
<p>2) Fetches Speedlinks using the <a href="http://del.icio.us/help/api/">Del.icio.us API</a> on a daily basis (tag=&#8217;speedlink&#8217;, date=&#8217;YYYY-MM-DD)</p>
<p>3) Parses the XML output using XPath, creates an HTML summary of the speedlinks, and automatically posts a blog entry.</p>
<p>For those of you that haven&#8217;t yet heard about Yahoo Pipes (from their website):</p>
<blockquote><p>Pipes is an interactive data aggregator and manipulator that lets you mashup your favorite online data sources.<br />Like Unix pipes, simple commands can be combined together to create output that meets your needs:<br /> * combine many feeds into one, then sort, filter and translate to create your ultimate custom feed.<br /> * geocode your favorite feeds and browse the items on an interactive map.<br /> * remix your favorite data sources and use the Pipe to power a new application.<br /> * build custom vertical search pages that are impossible with ordinary search engines.<br /> * power badges on your web site.<br /> * extend your web site by accessing the JSON or RSS output from Pipes.</p></blockquote>
<p>Pipes uses a slick visual editor that allows you to fetch and manipulate data sources (JSON and RSS), add user-defined inputs (dates, strings, numbers, urls), and filter the content as you wish (foreach w/ regex, sorting, content analysis, etc).   </p>
<p>My first task in fetching my links from del.icio.us was figuring the best way to query.  There were some small challenges:</p>
<p>1) The del.icio.us API requires basic authentication, and outputs in XML.  <br />2) Even if I could parse the XML with pipes, you can query posts by date, but it is in UTC format (conversion is simple, but I don&#8217;t want to bother).  And, there is no way to supply a date range (other than 24 hours from the date you provided).<br />3) The del.icio.us RSS feed (http://del.icio.us/rss/ericblue76/speedlink) doesn&#8217;t allow you to specifiy a date range.</p>
<p>Out of these limitations, my first Pipe was created &#8211; <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=SJDIxkAa3BG7s6ZYmLokhQ">RSS Filter By Date</a>.  As you can see below, I defined 3 inputes (the RSS url, start date, and end date).  Pipes has a nifty date format, so you can supply in a variety of syntaxes: simple english (today, yesterday), multiple formats (DD/MM/YY, YYYY-MM-DD), and also includes timezone (PST, PDT, UTC).  The feed is fetched, and the date inputs are normalized  to utime (which is UNIX epoch seconds), and each feed entry is parsed to see if the post is within the specified range.</p>
<p align="left"><img border="1" style="border: 1px solid rgb(192, 192, 192)" class="" alt="" src="http://eric-blue.com/blog/images/pipes_rss_filter.jpg" title="" /></p>
<p>The following screenshot illustrates what the pipe looks like after you run it.  You can choose to download the query results in RSS or JSON format:</p>
<p><img border="1" style="margin: 5px" class="" alt="" src="http://eric-blue.com/blog/images/pipes_run_rss_filter.jpg" title="" /></p>
<p>Now that the &#8216;RSS Filter By Date&#8217; pipe was created, I proceeded to create a new pipe &#8216;<a href="http://pipes.yahoo.com/pipes/pipe.info?_id=tuSIXX0Z3BGuDMlTE5PZnA">Del.icio.us Speedlink Filter</a>&#8216; that accepts your del.icio.us username, speedlink tag, and date range (default is UTC today, but can be converted to any date range) and linked to the RSS filter pipe.</p>
<p><img border="1" style="margin: 5px" class="" alt="" src="http://eric-blue.com/blog/images/pipes_delicious_speedlink.jpg" title="" /></p>
<p>Unfortunately, one major limitation I found with Pipe&#8217;s RSS output is that it strips a good bit of the original metadata associated with the original feed.  This is <a href="http://discuss.pipes.yahoo.com/Message_Boards_for_Pipes/threadview?m=tm&amp;bn=pip-DeveloperHelp&amp;tid=126&amp;mid=126&amp;tof=12&amp;rt=2&amp;frt=2&amp;off=1">discussed in the following post</a>.  Although you do get the original link, name, and description, the tag info is lost.  If you want to include tag info in the speedlink results, you&#8217;ll have to download as JSON and parse/format to HTML.</p>
<p>Although using Yahoo Pipes to parse and fetch my del.icio.us links definitely works and is nifty, it doesn&#8217;t really simplify the original approach.  But, this experiment was certainly fun, and it definitely shows the potential of Pipes to allow users to easily create, and manipulate data with little to no programming required.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Speedlinks+Using+Del.icio.us+and+Yahoo+Pipes+http://eric-blue.com/?p=358+via+@ericblue" title="Post to Twitter"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-twitter-big3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://eric-blue.com/2007/06/23/speedlinks-using-delicious-and-yahoo-pipes/&amp;title=Speedlinks+Using+Del.icio.us+and+Yahoo+Pipes" title="Post to Delicious"><img class="nothumb" src="http://eric-blue.com/wp-content/plugins/tweet-this/icons/tt-delicious-big3.png" alt="Post to Delicious" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://eric-blue.com/2007/06/23/speedlinks-using-delicious-and-yahoo-pipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

