<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Greaterscope Blog</title>
	<atom:link href="http://www.greaterscope.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greaterscope.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 24 Jul 2010 17:10:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Quick and Dirty ORM by John David Eriksen</title>
		<link>http://www.greaterscope.com/blog/2010/07/24/quick-and-dirty-orm/comment-page-1/#comment-4480</link>
		<dc:creator>John David Eriksen</dc:creator>
		<pubDate>Sat, 24 Jul 2010 17:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=182#comment-4480</guid>
		<description>Cool. Sounds like you are building a key-value store. Maybe you could restructure your tables as follows to reduce the number of tables involved in fetching a record?

Instead of one table for each of the three data types you described, build one &quot;denormalized&quot; table as follows:

DATA
id
type (of text, integer, float, etc.)
text
integer
float

The &quot;type&quot; describes what data type is expected. But maybe a field for each kind of data is not necessary? Maybe you could use a BLOB field (and appropriate validation/truncation for numeric fields) instead?

DATA
id
data (of type BLOB)

Additional points:

* Does your revision tracking system incorporate soft deletes in any way? In my experience, this is the most useful kind of revision tracking when it comes to working with real users.

* Maybe you could include a little bit of documentation in your github project to show the exact db structure that results from setting up the project? I&#039;m having trouble picking that out just reading your python sources.</description>
		<content:encoded><![CDATA[<p>Cool. Sounds like you are building a key-value store. Maybe you could restructure your tables as follows to reduce the number of tables involved in fetching a record?</p>
<p>Instead of one table for each of the three data types you described, build one &#8220;denormalized&#8221; table as follows:</p>
<p>DATA<br />
id<br />
type (of text, integer, float, etc.)<br />
text<br />
integer<br />
float</p>
<p>The &#8220;type&#8221; describes what data type is expected. But maybe a field for each kind of data is not necessary? Maybe you could use a BLOB field (and appropriate validation/truncation for numeric fields) instead?</p>
<p>DATA<br />
id<br />
data (of type BLOB)</p>
<p>Additional points:</p>
<p>* Does your revision tracking system incorporate soft deletes in any way? In my experience, this is the most useful kind of revision tracking when it comes to working with real users.</p>
<p>* Maybe you could include a little bit of documentation in your github project to show the exact db structure that results from setting up the project? I&#8217;m having trouble picking that out just reading your python sources.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Never Again by Alan</title>
		<link>http://www.greaterscope.com/blog/2010/03/30/never-again/comment-page-1/#comment-4443</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Wed, 21 Jul 2010 00:48:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=166#comment-4443</guid>
		<description>If I had a product idea that was less destined to fail, I&#039;d probably do it again. But I also need to do a better job of assessing my own enthusiasm next time. With the shopping cart software, much of my drive came from thinking &quot;there isn&#039;t a package that has these special features, and none are designed in this special way, so I should totally create one and try to make money from it&quot;. That&#039;s much less effective than &quot;I love this problem space and my product is something people want and/or need&quot;.

Trying to think of something I miss about the experience ... I like constantly refining something, whether it be the company website content or code, but I already get that joy from my other ventures. I did like being able to devote a whole day to whatever problems I felt like solving, but that&#039;s an unrealistic thing to hope for once customers come into the picture with needs other than what I&#039;ve planned for. That&#039;s all I&#039;ve got at the moment. Kinda sad, actually.</description>
		<content:encoded><![CDATA[<p>If I had a product idea that was less destined to fail, I&#8217;d probably do it again. But I also need to do a better job of assessing my own enthusiasm next time. With the shopping cart software, much of my drive came from thinking &#8220;there isn&#8217;t a package that has these special features, and none are designed in this special way, so I should totally create one and try to make money from it&#8221;. That&#8217;s much less effective than &#8220;I love this problem space and my product is something people want and/or need&#8221;.</p>
<p>Trying to think of something I miss about the experience &#8230; I like constantly refining something, whether it be the company website content or code, but I already get that joy from my other ventures. I did like being able to devote a whole day to whatever problems I felt like solving, but that&#8217;s an unrealistic thing to hope for once customers come into the picture with needs other than what I&#8217;ve planned for. That&#8217;s all I&#8217;ve got at the moment. Kinda sad, actually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Never Again by John David Eriksen</title>
		<link>http://www.greaterscope.com/blog/2010/03/30/never-again/comment-page-1/#comment-4303</link>
		<dc:creator>John David Eriksen</dc:creator>
		<pubDate>Sun, 04 Jul 2010 02:26:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=166#comment-4303</guid>
		<description>Whew, didn&#039;t realize that you had gone all out and struck out on your own. Was there anything you miss about the experience? Do you think you might want to start your own company again?</description>
		<content:encoded><![CDATA[<p>Whew, didn&#8217;t realize that you had gone all out and struck out on your own. Was there anything you miss about the experience? Do you think you might want to start your own company again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Ideas by chris meyers</title>
		<link>http://www.greaterscope.com/blog/2010/02/19/software-ideas/comment-page-1/#comment-3196</link>
		<dc:creator>chris meyers</dc:creator>
		<pubDate>Sun, 21 Feb 2010 22:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=157#comment-3196</guid>
		<description>It&#039;s hard for me to internalize the CSS requirements that you speak of because I am not in trenches.  I think a screenshot (photoshoped) of a final product/use case would be the best way to explain it.  From what I do understand, what you present is a perfect example of a system that could be built to showcase the usefulness of my research.

Background:
I am working on a replacing the entire data path in Linux, from filesystem to raw storage.  The idea is to create a logical system that runs orthogonal (fancy for saying it can be accessed by any layer) to the current data path.  There are two main components (1) logical relations and (2) storage and layout.  Currently, the logical relation layer is built and working on fudging the storage and layout (save/load state).  The system is similar to a database.  Only two abstractions are needed to build and understand the system: types, nodes, and edges.

How it differs from a database:
Control over how nodes are stored.  This translates to being able to control how your data is stored.  The hope here is that you match the storage pattern with your access pattern.
The storage layer has intimate knowledge of the relationships created at the logical layer.

Example:
Hopefully this picture will clear up a lot (http://i46.tinypic.com/2u9h7rl.jpg).  Imagine building a dependency graph for the CSS.  You can add arbitrary tags to other tags.

Queries such as &quot;Give me all the font css classes&quot; would be very easy to run on such a graph.  Efficiency of such queries can be increased because the user provides the code to traverse the graph (think Berkeley DB but easier).

User Interface:
It seems that what you are talking about would be best integrated into something like Eclipse or Netbeans.  I have no used these two products very much but I am sure they have a something like a drop down list for object oriented languages to suggest functions belonging to the object you are operating on.  This would be similar.

Maybe I can use this to showcase the usefulness of my research :)  The hard part of quantifying the usefulness, time to develop/change a webpage maybe?  Also, the time to build the feature itself using Nodes/Edges.</description>
		<content:encoded><![CDATA[<p>It&#8217;s hard for me to internalize the CSS requirements that you speak of because I am not in trenches.  I think a screenshot (photoshoped) of a final product/use case would be the best way to explain it.  From what I do understand, what you present is a perfect example of a system that could be built to showcase the usefulness of my research.</p>
<p>Background:<br />
I am working on a replacing the entire data path in Linux, from filesystem to raw storage.  The idea is to create a logical system that runs orthogonal (fancy for saying it can be accessed by any layer) to the current data path.  There are two main components (1) logical relations and (2) storage and layout.  Currently, the logical relation layer is built and working on fudging the storage and layout (save/load state).  The system is similar to a database.  Only two abstractions are needed to build and understand the system: types, nodes, and edges.</p>
<p>How it differs from a database:<br />
Control over how nodes are stored.  This translates to being able to control how your data is stored.  The hope here is that you match the storage pattern with your access pattern.<br />
The storage layer has intimate knowledge of the relationships created at the logical layer.</p>
<p>Example:<br />
Hopefully this picture will clear up a lot (<a href="http://i46.tinypic.com/2u9h7rl.jpg" rel="nofollow">http://i46.tinypic.com/2u9h7rl.jpg</a>).  Imagine building a dependency graph for the CSS.  You can add arbitrary tags to other tags.</p>
<p>Queries such as &#8220;Give me all the font css classes&#8221; would be very easy to run on such a graph.  Efficiency of such queries can be increased because the user provides the code to traverse the graph (think Berkeley DB but easier).</p>
<p>User Interface:<br />
It seems that what you are talking about would be best integrated into something like Eclipse or Netbeans.  I have no used these two products very much but I am sure they have a something like a drop down list for object oriented languages to suggest functions belonging to the object you are operating on.  This would be similar.</p>
<p>Maybe I can use this to showcase the usefulness of my research <img src='http://www.greaterscope.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   The hard part of quantifying the usefulness, time to develop/change a webpage maybe?  Also, the time to build the feature itself using Nodes/Edges.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Ideas by Alan</title>
		<link>http://www.greaterscope.com/blog/2010/02/19/software-ideas/comment-page-1/#comment-3194</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sun, 21 Feb 2010 21:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=157#comment-3194</guid>
		<description>Matt,

Sorry about the confusion regarding my Remote Help topic. I&#039;ve clarified now.

About decentralized social services ... one wouldn&#039;t need to spread usernames or passwords or emails. The system would involve an RSS/XML-like protocol for notifications. My server would notify your server if I &quot;liked&quot; a piece of content you wrote on X website. Similarly, if I decided to follow all of your content on X website, my server would tell yours, which would then ping mine when you publish new content.

It would definitely be open, and the beauty of it is, there could be one open social dashboard for all of this. A person doesn&#039;t need their own web server for this to work. If I wanted to provide a proof-of-concept, I could provide this notification system as a service to anyone that wanted to sign up for it, using my server as their central hub. Of course, blogs and existing content networks and websites would need to add support for this API... but hey, pingbacks and trackbacks are widely adopted now. This isn&#039;t much different.

Think I need to create a flowchart to make things more clear.</description>
		<content:encoded><![CDATA[<p>Matt,</p>
<p>Sorry about the confusion regarding my Remote Help topic. I&#8217;ve clarified now.</p>
<p>About decentralized social services &#8230; one wouldn&#8217;t need to spread usernames or passwords or emails. The system would involve an RSS/XML-like protocol for notifications. My server would notify your server if I &#8220;liked&#8221; a piece of content you wrote on X website. Similarly, if I decided to follow all of your content on X website, my server would tell yours, which would then ping mine when you publish new content.</p>
<p>It would definitely be open, and the beauty of it is, there could be one open social dashboard for all of this. A person doesn&#8217;t need their own web server for this to work. If I wanted to provide a proof-of-concept, I could provide this notification system as a service to anyone that wanted to sign up for it, using my server as their central hub. Of course, blogs and existing content networks and websites would need to add support for this API&#8230; but hey, pingbacks and trackbacks are widely adopted now. This isn&#8217;t much different.</p>
<p>Think I need to create a flowchart to make things more clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Ideas by Alan</title>
		<link>http://www.greaterscope.com/blog/2010/02/19/software-ideas/comment-page-1/#comment-3193</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Sun, 21 Feb 2010 21:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=157#comment-3193</guid>
		<description>Chris,

You&#039;re right, the help topic is misleading ... I&#039;ve now reworked some of it to make it clearer what I&#039;m getting at.

And man, linking straight into videos would be awesome! I bet most users would rather be shown something through video, rather than having to decipher a vague help doc.

Another excellent suggestion about embedding the video into the app itself so the user can follow-along. That would really be a killer feature if the help system didn&#039;t lose your place as you worked with the application.

Your feedback is making me to want to develop a working prototype ... crap, now I&#039;m going to have to find some more time, pitch to a VC, get some funding, find another programmer and a designer. Ahhhh! :-)

About the CSS editing tool ... maybe I need to explain this more. Or maybe I should bang out a prototype so I can show people what I&#039;m talking about.

It differs from Firefox&#039;s Web Developer tools because it would be smarter about CSS. I think it could go above and beyond &quot;inspect element  and show its CSS for editing&quot; by presenting you all of the classes/ids that specify font or color properties. You&#039;d be able to tell it to &quot;show me only the classes/ids and their rules that pertain to FONTS&quot; or &quot;only those that pertain to COLOR&quot;, depending upon what you need to tweak.

It could also identify classes and ids that set the same color/font property value so you could edit them all at once (you&#039;d only have to type in a new value ONCE). It would also keep FULL REVISION HISTORY of every edit you&#039;ve made, because sometimes you have to backtrack to a previous color combination that worked better than what you have now.

I&#039;ve even fancied having part of the tool assist you in simplifying your CSS by removing redundancies, making more global use of inheritance, etc. But that&#039;d just be an intellectual challenge for me. Doubt any designers would care about having condensed CSS.

Ok, that&#039;s enough for now.</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>You&#8217;re right, the help topic is misleading &#8230; I&#8217;ve now reworked some of it to make it clearer what I&#8217;m getting at.</p>
<p>And man, linking straight into videos would be awesome! I bet most users would rather be shown something through video, rather than having to decipher a vague help doc.</p>
<p>Another excellent suggestion about embedding the video into the app itself so the user can follow-along. That would really be a killer feature if the help system didn&#8217;t lose your place as you worked with the application.</p>
<p>Your feedback is making me to want to develop a working prototype &#8230; crap, now I&#8217;m going to have to find some more time, pitch to a VC, get some funding, find another programmer and a designer. Ahhhh! <img src='http://www.greaterscope.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>About the CSS editing tool &#8230; maybe I need to explain this more. Or maybe I should bang out a prototype so I can show people what I&#8217;m talking about.</p>
<p>It differs from Firefox&#8217;s Web Developer tools because it would be smarter about CSS. I think it could go above and beyond &#8220;inspect element  and show its CSS for editing&#8221; by presenting you all of the classes/ids that specify font or color properties. You&#8217;d be able to tell it to &#8220;show me only the classes/ids and their rules that pertain to FONTS&#8221; or &#8220;only those that pertain to COLOR&#8221;, depending upon what you need to tweak.</p>
<p>It could also identify classes and ids that set the same color/font property value so you could edit them all at once (you&#8217;d only have to type in a new value ONCE). It would also keep FULL REVISION HISTORY of every edit you&#8217;ve made, because sometimes you have to backtrack to a previous color combination that worked better than what you have now.</p>
<p>I&#8217;ve even fancied having part of the tool assist you in simplifying your CSS by removing redundancies, making more global use of inheritance, etc. But that&#8217;d just be an intellectual challenge for me. Doubt any designers would care about having condensed CSS.</p>
<p>Ok, that&#8217;s enough for now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Ideas by chris meyers</title>
		<link>http://www.greaterscope.com/blog/2010/02/19/software-ideas/comment-page-1/#comment-3191</link>
		<dc:creator>chris meyers</dc:creator>
		<pubDate>Sun, 21 Feb 2010 17:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=157#comment-3191</guid>
		<description>Remote Help:
Good idea!
The topics is a bit misleading.  I was looking for a call center aspect to the idea.  Never the less, a context-aware help would be awesome.  The time it takes to generate these context-aware help solutions should be kept in mind (because time is money).  I think the easiest way to provide a context-aware help would be with use-case videos.  A youtube video of a common use case that got the user to the page that he/she is on.  The particular area that is in question could have a small clickable object beside it (lets say a question mark beside a &quot;Country of origin?&quot; input box).  The box would open a youtube like video (See placement below) and automatically JUMP to the question location.  I believe the jump to feature is key here.  It will make creating the video very easy.  Simply USE the system that exists.  Then afterward, times that events take place can be noted.  Also, the user can easily search navigate through the video to verify past decisions or preview future questions.

Placement:
Placement and presentation of the video is trick too.  You want the user to be able to follow along with the video.  This rules out pop-ups and full screen overlays.


In-browser, CSS Editing Tool:
Firefox add-on
inspect element (jumps straight to the element in the HTML code) and you might be able to edit the CSS.</description>
		<content:encoded><![CDATA[<p>Remote Help:<br />
Good idea!<br />
The topics is a bit misleading.  I was looking for a call center aspect to the idea.  Never the less, a context-aware help would be awesome.  The time it takes to generate these context-aware help solutions should be kept in mind (because time is money).  I think the easiest way to provide a context-aware help would be with use-case videos.  A youtube video of a common use case that got the user to the page that he/she is on.  The particular area that is in question could have a small clickable object beside it (lets say a question mark beside a &#8220;Country of origin?&#8221; input box).  The box would open a youtube like video (See placement below) and automatically JUMP to the question location.  I believe the jump to feature is key here.  It will make creating the video very easy.  Simply USE the system that exists.  Then afterward, times that events take place can be noted.  Also, the user can easily search navigate through the video to verify past decisions or preview future questions.</p>
<p>Placement:<br />
Placement and presentation of the video is trick too.  You want the user to be able to follow along with the video.  This rules out pop-ups and full screen overlays.</p>
<p>In-browser, CSS Editing Tool:<br />
Firefox add-on<br />
inspect element (jumps straight to the element in the HTML code) and you might be able to edit the CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Software Ideas by rotten777</title>
		<link>http://www.greaterscope.com/blog/2010/02/19/software-ideas/comment-page-1/#comment-3175</link>
		<dc:creator>rotten777</dc:creator>
		<pubDate>Fri, 19 Feb 2010 22:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=157#comment-3175</guid>
		<description>Remote Help:

vnc&#039;s viewer can be run in listening mode where it&#039;s client (the viewed remote computer) actually initiates the session. there&#039;s also a java/web based interface with all of it. i&#039;m fairly certain the java and c is open source. that would be a great platform to start with. maybe an ajax/java collaboration.

as far as the decentralized social services and notifications, i&#039;d have to say the k.i.s.s. method would = e-mail. the only other way to have something decentralized will involved spreading usernames, passwords, e-mails, etc. across multiple servers or using a centralized authentication database (e.g. openid) to store stuff and letting remote servers access their information to notify them.

&quot;The intent is not to remove the need to visit facebook, but rather to serve as a funnel for some common online social interactions.&quot;

that tells me there&#039;s a dashboard to be built that is open and will pull from all associated sites with modules or plugs or something from a specific site (e.g. facebook, flickr, etc.)

i think that would be much better. an open social dashboard with open extensions and such.</description>
		<content:encoded><![CDATA[<p>Remote Help:</p>
<p>vnc&#8217;s viewer can be run in listening mode where it&#8217;s client (the viewed remote computer) actually initiates the session. there&#8217;s also a java/web based interface with all of it. i&#8217;m fairly certain the java and c is open source. that would be a great platform to start with. maybe an ajax/java collaboration.</p>
<p>as far as the decentralized social services and notifications, i&#8217;d have to say the k.i.s.s. method would = e-mail. the only other way to have something decentralized will involved spreading usernames, passwords, e-mails, etc. across multiple servers or using a centralized authentication database (e.g. openid) to store stuff and letting remote servers access their information to notify them.</p>
<p>&#8220;The intent is not to remove the need to visit facebook, but rather to serve as a funnel for some common online social interactions.&#8221;</p>
<p>that tells me there&#8217;s a dashboard to be built that is open and will pull from all associated sites with modules or plugs or something from a specific site (e.g. facebook, flickr, etc.)</p>
<p>i think that would be much better. an open social dashboard with open extensions and such.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Survey Experiments by Alan</title>
		<link>http://www.greaterscope.com/blog/2009/11/11/survey-experiments/comment-page-1/#comment-2889</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Wed, 09 Dec 2009 06:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=119#comment-2889</guid>
		<description>John David,

Using the survey questions to find out more about my audience is great advice. Because really, I don&#039;t know much about how drumlines acquire cadences these days. Not knowing who I should be targeting, plus the fact that I feel out of touch with the current state of marching percussion (and the high school drummers themselves), makes things even more difficult for me.

I&#039;m actually using a few open source tools, my own marching percussion notation (which gets converted into formats understood by those open source tools), and a soundfont of marching percussion instruments I found online. I have considered buying professionally recorded samples/soundfonts (and I actually did, but it&#039;s for non-commercial use ... more about that mixup &lt;a href=&quot;http://www.flamswiss.com/2009/07/10/soundfont-snafus/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;).

Last night I wrote in-depth about how my toolset came about. That post is &lt;a href=&quot;http://www.flamswiss.com/2009/12/07/my-tools/&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.

On November 8 I started using another tool to create wav/mp3 files from MIDI+soundfont, and it resulted in a much better sound. I imagine you heard the updated versions... the previous demos were even worse! So cold and empty. In the new ones you can tell the samples were made in a gymnasium (at least that&#039;s what it sounds like to me).</description>
		<content:encoded><![CDATA[<p>John David,</p>
<p>Using the survey questions to find out more about my audience is great advice. Because really, I don&#8217;t know much about how drumlines acquire cadences these days. Not knowing who I should be targeting, plus the fact that I feel out of touch with the current state of marching percussion (and the high school drummers themselves), makes things even more difficult for me.</p>
<p>I&#8217;m actually using a few open source tools, my own marching percussion notation (which gets converted into formats understood by those open source tools), and a soundfont of marching percussion instruments I found online. I have considered buying professionally recorded samples/soundfonts (and I actually did, but it&#8217;s for non-commercial use &#8230; more about that mixup <a href="http://www.flamswiss.com/2009/07/10/soundfont-snafus/" rel="nofollow">here</a>).</p>
<p>Last night I wrote in-depth about how my toolset came about. That post is <a href="http://www.flamswiss.com/2009/12/07/my-tools/" rel="nofollow">here</a>.</p>
<p>On November 8 I started using another tool to create wav/mp3 files from MIDI+soundfont, and it resulted in a much better sound. I imagine you heard the updated versions&#8230; the previous demos were even worse! So cold and empty. In the new ones you can tell the samples were made in a gymnasium (at least that&#8217;s what it sounds like to me).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Survey Experiments by John David Eriksen</title>
		<link>http://www.greaterscope.com/blog/2009/11/11/survey-experiments/comment-page-1/#comment-2692</link>
		<dc:creator>John David Eriksen</dc:creator>
		<pubDate>Sat, 28 Nov 2009 14:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.greaterscope.com/blog/?p=119#comment-2692</guid>
		<description>Oh, and lovers of percussion-heavy music will do well by becoming familiar with Nigerian Fuji music ;]

http://listen.grooveshark.com/#/song/Refined_Fuji_Garbage/21918785</description>
		<content:encoded><![CDATA[<p>Oh, and lovers of percussion-heavy music will do well by becoming familiar with Nigerian Fuji music ;]</p>
<p><a href="http://listen.grooveshark.com/#/song/Refined_Fuji_Garbage/21918785" rel="nofollow">http://listen.grooveshark.com/#/song/Refined_Fuji_Garbage/21918785</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
