<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>a blog by Warren C. Moore</title>
	<link>http://warren.igsig.org</link>
	<description>Broad-based and short-stacked musings</description>
	<pubDate>Tue, 01 Jul 2008 15:56:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>The Over-Under Model of Obligations</title>
		<link>http://warren.igsig.org/2008/07/01/the-over-under-model-of-obligations/</link>
		<comments>http://warren.igsig.org/2008/07/01/the-over-under-model-of-obligations/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 15:56:12 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=26</guid>
		<description><![CDATA[This is just a quick post on one way that I&#8217;ve realized I think about my commitments. This model works best with the tasks you select for yourself, but there are plenty of variations to which it also applies, including assignments from your school or place of work.
In a nutshell, the Over-Under Model states that [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick post on one way that I&#8217;ve realized I think about my commitments. This model works best with the tasks you select for yourself, but there are plenty of variations to which it also applies, including assignments from your school or place of work.</p>
<p>In a nutshell, the Over-Under Model states that <em>what you want to do</em> and <em>what you&#8217;ve committed to</em> affect you in different ways psychologically. Specifically, you place things that you <em>want to do</em> beneath (<strong>under</strong>) you, and you place what you&#8217;ve <em>committed to</em> (either to yourself or to someone else, tacitly or verbally) above (<strong>over</strong>) you. <a href="http://warren.igsig.org/2008/07/01/the-over-under-model-of-obligations/#more-26" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/07/01/the-over-under-model-of-obligations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Re-Education (Part 2): Linked Lists</title>
		<link>http://warren.igsig.org/2008/05/25/the-re-education-part-2-linked-lists/</link>
		<comments>http://warren.igsig.org/2008/05/25/the-re-education-part-2-linked-lists/#comments</comments>
		<pubDate>Sun, 25 May 2008 20:58:57 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Professional]]></category>

		<category><![CDATA[Re-education]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=23</guid>
		<description><![CDATA[Linked lists, sometimes simply called lists, are a fundamental data structure in computer science. Languages such as Java and C# do an admirable job of abstracting away the details behind lists, but understanding them is absolutely crucial when building efficient programs.
The way in which linked lists are structured varies, but we will consider a doubly-linked [...]]]></description>
			<content:encoded><![CDATA[<p>Linked lists, sometimes simply called lists, are a fundamental data structure in computer science. Languages such as Java and C# do an admirable job of abstracting away the details behind lists, but understanding them is absolutely crucial when building efficient programs.</p>
<p>The way in which linked lists are structured varies, but we will consider a doubly-linked list with external data. By that, we mean that each link in the list will refer to the previous link and the next link in the list, and that the data type that represents the list itself will not contain the data itself, but instead each link will contain a reference (pointer) to its corresponding data. In C++, a naive implementation might look like this:</p>
<p><code>struct LinkedList<br />
{<br />
</code></p>
<blockquote><p><code>     LinkedList *prev;</code><br />
<code>     LinkedList *next;</code><br />
<code>     DataType *data;</code><br />
<code></code></p></blockquote>
<p><code> };<br />
</code><br />
 <a href="http://warren.igsig.org/2008/05/25/the-re-education-part-2-linked-lists/#more-23" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/05/25/the-re-education-part-2-linked-lists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Re-Education (Part 1)</title>
		<link>http://warren.igsig.org/2008/05/22/the-re-education-part-1/</link>
		<comments>http://warren.igsig.org/2008/05/22/the-re-education-part-1/#comments</comments>
		<pubDate>Fri, 23 May 2008 00:04:03 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Professional]]></category>

		<category><![CDATA[Productivity]]></category>

		<category><![CDATA[Re-education]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=22</guid>
		<description><![CDATA[I bill myself out as a &#8220;software developer.&#8221; This is fair, I think, since I&#8217;ve written a lot of software over the past ten years, and this combined with my college education has enabled me to develop solutions to rather large and difficult problems.
Sometimes, though, we all need to reminded of the basics. It&#8217;s been [...]]]></description>
			<content:encoded><![CDATA[<p>I bill myself out as a &#8220;software developer.&#8221; This is fair, I think, since I&#8217;ve written a lot of software over the past ten years, and this combined with my college education has enabled me to develop solutions to rather large and difficult problems.</p>
<p>Sometimes, though, we all need to reminded of the basics. It&#8217;s been a couple of years since my basic data structures and algorithms class, and it&#8217;s now gotten to the point where the difference between a red-black tree and a leftist tree is pretty fuzzy.  Fuzzy to the point that I&#8217;m not sure I ever really grokked the difference.</p>
<p>So, it&#8217;s time for a refresher. I don&#8217;t have a copy of Leiserson/Rivest/Cormen handy, so I&#8217;m just going to use what&#8217;s on the shelf.  Here&#8217;s the rubric for each topic: <a href="http://warren.igsig.org/2008/05/22/the-re-education-part-1/#more-22" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/05/22/the-re-education-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grooveshark is a Pretty Horsie.</title>
		<link>http://warren.igsig.org/2008/05/16/grooveshark-is-a-ghetto/</link>
		<comments>http://warren.igsig.org/2008/05/16/grooveshark-is-a-ghetto/#comments</comments>
		<pubDate>Fri, 16 May 2008 21:23:02 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Professional]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Music Industry]]></category>

		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=20</guid>
		<description><![CDATA[This post has been redacted due to an illuminating discussion with a member of the Grooveshark team.
]]></description>
			<content:encoded><![CDATA[<p><em>This post has been redacted due to an illuminating discussion with a member of the Grooveshark team.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/05/16/grooveshark-is-a-ghetto/feed/</wfw:commentRss>
<enclosure url='http://warren.igsig.org/wp-content/uploads/hmm.wav' length='7610' type='audio/x-wav'/>
		</item>
		<item>
		<title>Valley of Broken Dreams: A YC Postmortem</title>
		<link>http://warren.igsig.org/2008/04/29/valley-of-broken-dreams-a-yc-postmortem/</link>
		<comments>http://warren.igsig.org/2008/04/29/valley-of-broken-dreams-a-yc-postmortem/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 10:53:42 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Professional]]></category>

		<category><![CDATA[YC]]></category>

		<category><![CDATA[Silicon Valley]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=19</guid>
		<description><![CDATA[So, it turns out Paul Graham was right: the problem with going through tough times is not that they directly spell failure, but that they rob the momentum you have, which in turn leads to stalls and ultimately to failure. Within minutes of hearing about our rejection, I was so turned off by our project [...]]]></description>
			<content:encoded><![CDATA[<p>So, it turns out <a href="http://www.paulgraham.com">Paul Graham</a> was right: the problem with going through tough times is not that they directly spell failure, but that <a href="http://paulgraham.com/good.html#Morale">they rob the momentum you have</a>, which in turn leads to stalls and ultimately to failure. Within minutes of hearing about our rejection, I was so turned off by our project that I just picked up <a href="http://www.sourceforge.com/projects/neptuneblog">something else</a> to work on, something I could still believe in. Call me fragile.</p>
<p>But let&#8217;s rewind a bit. <a href="http://warren.igsig.org/2008/04/29/valley-of-broken-dreams-a-yc-postmortem/#more-19" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/04/29/valley-of-broken-dreams-a-yc-postmortem/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Accelerando</title>
		<link>http://warren.igsig.org/2008/03/30/accelerando/</link>
		<comments>http://warren.igsig.org/2008/03/30/accelerando/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 03:01:21 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=18</guid>
		<description><![CDATA[The number of readers and inbound links for this blog will probably double this week (which isn&#8217;t saying much), so it&#8217;s probably time for an update.
First, though, a preface: if you&#8217;ll be in Orlando for BarCamp or Stanford for Startup School, drop me a line(direct e-mail link).
As of one week ago, I had just gathered [...]]]></description>
			<content:encoded><![CDATA[<p>The number of readers and inbound links for this blog will probably double this week (which isn&#8217;t saying much), so it&#8217;s probably time for an update.</p>
<p>First, though, a preface: if you&#8217;ll be in Orlando for <a href="http://www.barcamporlando.org/">BarCamp</a> or Stanford for Startup School, <a href="mailto:wcmiii@gmail.com">drop me a line</a>(direct e-mail link).</p>
<p>As of one week ago, I had just gathered the courage to tell my family that I&#8217;d be working freelance in Atlanta after I got <a href="http://www.ufl.edu">my degree</a> (in August). The future has been looming large for a long time, and it felt better to make an executive decision and start shopping it around than simply maintain the que-sera-sera attitude I&#8217;d been nervously holding out to everyone who asked up to that point.</p>
<p>Making one choice for independence seems to start a cascade of successively more challenging and more tempting possibilities. Knowing that I wanted to work for myself was a certainty; getting there would take a little more thought (since my freelancing so far has not been fabulously lucrative). But really, honestly starting a company, with a co-founder and all the legal shenanigans required to get legit: that was a long-shot.</p>
<p>Then I got pitched by a friend on an idea that was just too outstanding to pass up. Then, that very same night, I was notified that I was accepted to <a href="http://startupschool.org">Startup School</a>. I just booked the flight to San Jose. Come Wednesday, we&#8217;ll be in the pool with a wide range of other brilliant startups, looking for seed capital and hoping to get set up in a startup hub where we can grow this thing into something valuable and excellent.</p>
<p>What does <em>that</em> look like? I don&#8217;t know. But I do know that things are moving along fast enough at this point that I won&#8217;t have time to slow down and think about it before it&#8217;s too late.</p>
<p>And that&#8217;s an attractive prospect.</p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2008/03/30/accelerando/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Saving Africa and Building a Business</title>
		<link>http://warren.igsig.org/2007/10/08/saving-africa-and-building-a-business/</link>
		<comments>http://warren.igsig.org/2007/10/08/saving-africa-and-building-a-business/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 17:48:16 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Professional]]></category>

		<category><![CDATA[Global-reach]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=17</guid>
		<description><![CDATA[If you haven&#8217;t seen it, this might be the best use of statistics to give a persuasive presentation I&#8217;ve ever seen: Hans Rosling on the democratization and analysis of world statistics on health and wealth.
This talk is good throughout, but what strikes me most is the inhomogeneity in homogeneity in each cluster of countries.  [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t seen it, this might be the best use of statistics to give a persuasive presentation I&#8217;ve ever seen: <a href="http://www.ted.com/index.php/talks/view/id/92" title="Link">Hans Rosling on the democratization and analysis of world statistics on health and wealth.</a></p>
<p>This talk is good throughout, but what strikes me most is the <em>inhomogeneity in homogeneity</em> in each cluster of countries.  By that, I really mean the <em>spread</em> in the economic strength among these groups, specifically the continent of Africa. Considered as a continent, Africa is in poverty, but contrary to the opinion of the average American, there is much wealth in Africa as well, and <em>not</em> just in the form of blood money for diamonds.</p>
<p>Wealth that comes from trade, that comes from countries exchanging on even parity in the global market with every other nation.<br />
 <a href="http://warren.igsig.org/2007/10/08/saving-africa-and-building-a-business/#more-17" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2007/10/08/saving-africa-and-building-a-business/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Changing the World on Four Hours a Week?</title>
		<link>http://warren.igsig.org/2007/07/07/changing-the-world-on-four-hours-a-week/</link>
		<comments>http://warren.igsig.org/2007/07/07/changing-the-world-on-four-hours-a-week/#comments</comments>
		<pubDate>Sun, 08 Jul 2007 02:38:03 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Productivity]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=15</guid>
		<description><![CDATA[Productivity expert and jet-setter extraordinaire Tim Ferriss has a proposition for you.  Work four hours a week, he says, and you&#8217;ll find that you can become wealthy while still having time to do all the things you want to do.
Ferriss emphasizes the idea that (i) reducing information overload and (ii) outsourcing tasks, combined with [...]]]></description>
			<content:encoded><![CDATA[<p>Productivity expert and jet-setter extraordinaire <a href="http://fourhourworkweek.com/blog/">Tim Ferriss</a> has a proposition for you.  <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2F4-Hour-Workweek-Escape-Live-Anywhere%2Fdp%2F0307353133&amp;tag=outwardnotupw-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">Work four hours a week, he says</a>, and you&#8217;ll find that you can become wealthy while still having time to do all the things you want to do.</p>
<p>Ferriss emphasizes the idea that (i) reducing information overload and (ii) outsourcing tasks, combined with (iii) remaining-results oriented will result in a tremendously liberating situation where the practicing individual has copious free time on a weekly basis in which they are free to travel the world, or even have multiple, parallel mini-careers. This sounds excellent, and I was enraptured by the notion at first (as were, seemingly, the millions who have firmly planted FHWW on the New York Times best-sellers list).  I was especially turned on by the <a href="http://www.youtube.com/watch?v=UcqcWVZJPb0">inspiring presentation Ferriss gave with Marci Alboher</a> for Authors@Google.</p>
<p>Shortly, though, I became aware of an insidious side-effect of this kind of workload reduction, which was initially veiled by my selfishness and my entrepreneurial sympathies.<br />
 <a href="http://warren.igsig.org/2007/07/07/changing-the-world-on-four-hours-a-week/#more-15" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2007/07/07/changing-the-world-on-four-hours-a-week/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Standard Model = Dead in the Water?</title>
		<link>http://warren.igsig.org/2007/05/21/standard-model-dead-in-the-water/</link>
		<comments>http://warren.igsig.org/2007/05/21/standard-model-dead-in-the-water/#comments</comments>
		<pubDate>Mon, 21 May 2007 17:04:22 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=14</guid>
		<description><![CDATA[A very noteworthy shift occurred in the world of physics in the early part of the 20th century, and I&#8217;m not talking about Einstein&#8217;s Annus Mirabilis.  In fact, much of Einstein&#8217;s work was diametrically opposite what I&#8217;m talking about: use of statistics as a foundation for physics.
I have to note a quotation from Niels [...]]]></description>
			<content:encoded><![CDATA[<p>A very noteworthy shift occurred in the world of physics in the early part of the 20th century, and I&#8217;m not talking about Einstein&#8217;s <a href="http://en.wikipedia.org/wiki/Annus_Mirabilis_Papers" title="1905 ftw!">Annus Mirabilis</a>.  In fact, much of Einstein&#8217;s work was diametrically opposite what I&#8217;m talking about: use of statistics as a foundation for physics.</p>
<p>I have to note a quotation from Niels Bohr, which shines with uncommon insight:</p>
<blockquote><p>It is wrong to think that the task of physics is to find out how nature is. Physics concerns what we can say about nature.</p></blockquote>
<p>I think many scientists before the Modern era would have disagreed with this.  Einstein would almost certainly have disagreed, because of his unusual obsession (shared with Newton) with mathematical beauty. It is explicit throughout his work that Einstein believed (and this rings out in Hawking, too) that the &#8220;mind of God,&#8221; or absolute reality, must be able to be inferred from physical observation.</p>
<p>After 1905, though, things turned ugly. <a href="http://warren.igsig.org/2007/05/21/standard-model-dead-in-the-water/#more-14" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2007/05/21/standard-model-dead-in-the-water/feed/</wfw:commentRss>
		</item>
		<item>
		<title>RabidRead - A Speed-Reading Utility</title>
		<link>http://warren.igsig.org/2007/05/06/rabidread-a-speed-reading-utility/</link>
		<comments>http://warren.igsig.org/2007/05/06/rabidread-a-speed-reading-utility/#comments</comments>
		<pubDate>Mon, 07 May 2007 04:44:17 +0000</pubDate>
		<dc:creator>Warren</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Professional]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://warren.igsig.org/?p=13</guid>
		<description><![CDATA[Over the last couple of days, I’ve put together a little program I’m calling RabidRead*.  RabidRead was conceived when I read a forum post by someone about how he was able to achieve very high comprehension at very high speeds by using a piece of software he wrote.
Programs of this sort are called “serial [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last couple of days, I’ve put together a little program I’m calling <em>RabidRead</em>*.  RabidRead was conceived when I read <a href="http://www.sciforums.com/lawnmower-man-t-21840.html" nicetitle="Inspirational post">a forum post by someone</a> about how he was able to achieve very high comprehension at very high speeds by using a piece of software he wrote.</p>
<p>Programs of this sort are called “serial readers,”and they work by presenting a single word (from a long text) at a time, in rapid succession (say, between 200 and 1000 words per minute).</p>
<p><a href="http://warren.igsig.org/?page_id=9"> Read more here!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://warren.igsig.org/2007/05/06/rabidread-a-speed-reading-utility/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
