<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Skippy Records</title>
	<atom:link href="http://skippyrecords.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://skippyrecords.wordpress.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 22:41:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='skippyrecords.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Skippy Records</title>
		<link>http://skippyrecords.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://skippyrecords.wordpress.com/osd.xml" title="Skippy Records" />
	<atom:link rel='hub' href='http://skippyrecords.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Text-formatted tables of numbers</title>
		<link>http://skippyrecords.wordpress.com/2011/11/02/text-formatted-tables-of-numbers/</link>
		<comments>http://skippyrecords.wordpress.com/2011/11/02/text-formatted-tables-of-numbers/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 20:05:36 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Programming Projects]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=685</guid>
		<description><![CDATA[This is a simple Python text formatting project.  After searching for this capability for a little while, I decided to write my own as the following requirements seemed to be unique: Create a table of numbers from a CSV file Control the number of significant figures (significant digits) displayed Format numbers with &#8220;,&#8221; and &#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=685&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a simple Python text formatting project.  After searching for this capability for a little while, I decided to write my own as the following requirements seemed to be unique:</p>
<ul>
<li>Create a table of numbers from a CSV file</li>
<li>Control the number of significant figures (significant digits) displayed</li>
<li>Format numbers with &#8220;,&#8221; and &#8221; &#8221; like this 123,456.789 123</li>
<li>Align columns on decimal points&#8211;this is best for readability</li>
<li>Fit the columns automatically based on data and formatting</li>
</ul>
<div>There are many code snippets that do one part or another of this, but I didn&#8217;t find anything that fulfilled all the requirements.   So I created  couple of simple classes to accomplish the task.  One caveat is that the output needs to be displayed in a constant-space font.  Some example output:</div>
<div>
<pre>      483,000. |       471.7 |     0.460 6 | 0.000 449 8
      966,000. |       943.4 |     0.921 3 | 0.000 899 7
    1,449,000. |     1,415.  |     1.382   | 0.001 349
    1,932,000. |     1,887.  |     1.843   | 0.001 799
    2,415,000. |     2,358.  |     2.303   | 0.002 249
    2,898,000. |     2,830.  |     2.764   | 0.002 699
    3,381,000. |     3,302.  |     3.224   | 0.003 149
    3,864,000. |     3,773.  |     3.685   | 0.003 599
    5,796,000. |     5,660.  |     5.528   | 0.005 398
    7,728,000. |     7,547.  |     7.370   | 0.007 197
    9,660,000. |     9,434.  |     9.213   | 0.008 997
   19,320,000. |    18,870.  |    18.43    | 0.017 99
   38,640,000. |    37,730.  |    36.85    | 0.035 99
   57,960,000. |    56,600.  |    55.28    | 0.053 98
   77,280,000. |    75,470.  |    73.70    | 0.071 97
   96,600,000. |    94,340.  |    92.13    | 0.089 97
  144,900,000. |   141,500.  |   138.2     | 0.134 9
  193,200,000. |   188,700.  |   184.3     | 0.179 9
  289,800,000. |   283,000.  |   276.4     | 0.269 9
  386,400,000. |   377,300.  |   368.5     | 0.359 9
  579,600,000. |   566,000.  |   552.8     | 0.539 8
  772,800,000. |   754,700.  |   737.0     | 0.719 7
  966,000,000. |   943,400.  |   921.3     | 0.899 7
1,159,000,000. | 1,132,000.  | 1,106.      | 1.080      
</pre>
</div>
<div>You can download the code at GitHub: <a href="https://github.com/DrSkippy27/Text-Format-Table">https://github.com/DrSkippy27/Text-Format-Table</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/685/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/685/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/685/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=685&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/11/02/text-formatted-tables-of-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>Investment lifetime&#8230;Three follow-up thoughts</title>
		<link>http://skippyrecords.wordpress.com/2011/10/01/investment-lifetime-three-follow-up-thoughts/</link>
		<comments>http://skippyrecords.wordpress.com/2011/10/01/investment-lifetime-three-follow-up-thoughts/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 01:50:24 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=682</guid>
		<description><![CDATA[(1) I think on the whole my life has been much easier than either of my parent&#8217;s lives.  At least easier in the sense that the context of stability, motivation, rich experiences and economic support they provided was at a higher level than their parents provided them.   One of the points of my post [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=682&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>(1) I think on the whole my life has been much easier than either of my parent&#8217;s lives.  At least easier in the sense that the context of stability, motivation, rich experiences and economic support they provided was at a higher level than their parents provided them.   One of the points of my post was to illustrate how there may be some differences in how I think of luck vs. direct outcomes of my actions.  My parents don&#8217;t acknowledge luck much while I identify it as key to most of what I have accomplished.  Luck as to where I was born, that I was born to my parents, that I didn&#8217;t die of cholera as an infant, &#8230;</p>
<p>(2) This one seemed obvious, but in case it didn&#8217;t quite come out:  The charts shown are of much of the same data&#8211;it is the window on the data that may be an explanation for the difference in perceptions.</p>
<p>(3) Something I did not point out, but also probably contributes to a difference in perceptions is that, during the time period represented in my window of investing, the very wealthy got decidedly wealthier.  Clearly, we can be sure that the wealthy were not relying on the stock market to grow their wealth in the way that I was to grow my investments.</p>
<p>Where were the very wealthy investing? I don&#8217;t know.</p>
<p>But many of my contemporaries have been encouraged to and have practiced investing their new-style pensions (401Ks) in the stock market, which isn&#8217;t likely to go anywhere for at least a few more years.  Among other things, this makes Bush&#8217;s proposal to privatize Social Security by &#8220;letting&#8221; us invest in the public markets seem rather cynical.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/682/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=682&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/10/01/investment-lifetime-three-follow-up-thoughts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>Investment-lifetime comparison: me vs. my father</title>
		<link>http://skippyrecords.wordpress.com/2011/09/11/investment-lifetime-comparison-me-vs-my-father/</link>
		<comments>http://skippyrecords.wordpress.com/2011/09/11/investment-lifetime-comparison-me-vs-my-father/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 19:55:51 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=669</guid>
		<description><![CDATA[Like many of my contemporaries, I often find myself at political odds with my parents. I always find this strange, because I don&#8217;t feel that I rejected the values of my parents. My concerns for the workings of the economy and the country, my concerns that we practice responsible stewardship of the Earth, my feelings [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=669&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Like many of my contemporaries, I often find myself at political odds with my parents. I always find this strange, because I don&#8217;t feel that I rejected the values of my parents. My concerns for the workings of the economy and the country, my concerns that we practice responsible stewardship of the Earth, my feelings of what kinds of business behavior is moral and good for society and what isn&#8217;t, my concerns for security and what we trade for it, etc. came fairly directly from my parents. I learned my ethical patterns and moral sensitivities from Mom and Dad. However, I am pretty sure we reliably vote for different politicians (and a different set of ideas!). I have only anecdotes, but this pattern seems to be repeated with many of my contemporaries.</p>
<p>What experiences were different for my parent&#8217;s generation and mine? Can any of these differences help account for similar values leading to opposing politics? I am not sure this explains much, but below is a pair of charts that illustrate one way in which my parent&#8217;s experience and my experience lead us to see things differently. I did the analysis below out of curiosity, but I decided to write it up after I realized a similar analysis could be done with health care costs or income gains, neither of which have evolved in our favor in the last 15 years. (For broader perspective and context on where the S&amp;P is now relative to the past, check out <a title="Advisor Perspectives - S&amp;P secular bear and bull markets" href="http://advisorperspectives.com/dshort/updates/Secular-Bull-and-Bear-Markets.php">advisorperspectives</a>.)</p>
<p>The scenario I modeled was investing for retirement: Imagine that at 30 years old, both my father and I have resources and get serious about investing. We invest the same amount of money every year until age 65, for my father, this is the period from 1966-2001, for me, the period from 1996-2031.</p>
<p>During the 30 years my father invested, the stock market did this:</p>
<p><img class="alignnone" title="1966-2001" src="http://drskippy.net/img/DadInvest2011-09-11.PNG" alt="" width="528" height="346" /></p>
<p>He ends up with 7.23 times the money he put into the market. (Simple model: invest and compound gains (losses) on the first day of each year.)</p>
<p>During my investment lifetime, the stock market has done this:</p>
<p><img class="alignnone" title="1996-2011" src="http://drskippy.net/img/ScottInvest2011-09-11.PNG" alt="" width="528" height="343" /></p>
<p>And I am faced with the realisation that I currently have 1.18 times what I have put into the market&#8211;I have gained 18% in the last 15 years.</p>
<p>One clear perspective difference is that my father is looking back on the last 20 years of gains as the model for what his and his peer&#8217;s individual investments got him. I, on the other had am looking forward to 20 years of investments with uncertainty. My 15% gains are more appropriately compared to my father&#8217;s 41% during his first 15 years of investing. Clearly, the bulk of my father&#8217;s gains come in the second half of the cycle, the last 20 years. But at the point I am in my life, he was well ahead.</p>
<p>I doubt the important difference is so much how things happened in the past as how things appear to be going forward. What sort of action do I believe will significantly and positively influence the outcome of prosperity for myself and my family and my community? Is this very different from the sorts of actions my father believed were effective at the same point in his life?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/669/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/669/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/669/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=669&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/09/11/investment-lifetime-comparison-me-vs-my-father/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>

		<media:content url="http://drskippy.net/img/DadInvest2011-09-11.PNG" medium="image">
			<media:title type="html">1966-2001</media:title>
		</media:content>

		<media:content url="http://drskippy.net/img/ScottInvest2011-09-11.PNG" medium="image">
			<media:title type="html">1996-2011</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s coming around again?</title>
		<link>http://skippyrecords.wordpress.com/2011/08/21/its-coming-around-again/</link>
		<comments>http://skippyrecords.wordpress.com/2011/08/21/its-coming-around-again/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 02:11:45 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Search and Information Retrieval]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=661</guid>
		<description><![CDATA[I worked at a company called me.dium a few years ago. They have since turned into OneRiot and gone on to another target market and business model.  Recently, some me.dium alums circulated an email noting a new company with a very similar idea to the old me.dium.  The new company, Whoislive, is jumping in with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=661&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I worked at a company called me.dium a few years ago. They have since turned into <a title="OneRiot" href="http://www.oneriot.com">OneRiot</a> and gone on to another target market and business model.  Recently, some me.dium alums circulated an email noting a new company with a very similar idea to the old me.dium.  The new company, <a title="WhoIsLive" href="http://whoislive.com/">Whoislive</a>, is jumping in with a web browser sidebar that you install when you start using their service to surf with your friends  (&#8220;Surf with Friends&#8221;(TM) me.dium?).</p>
<p>From their website:</p>
<blockquote><p>For the first time ever, see who is browsing on any Web page. Chat, get tips, share links, and meet new people with similar interests. Use the Web like you always do, only now, see what happens when you can see Who is Live!</p></blockquote>
<p>Well&#8230;sort of.</p>
<p>One major difference between Whoislive and me.dium, again, from their website:</p>
<blockquote>
<h3>Can I also see people who are browsing on other pages of the same website?</h3>
<p>No. You can only see who is live with you on one page at a time.</p></blockquote>
<p>Me.dium had a map of the local neighborhood of sites your friends were surfing. More or less creepy?  You decide.</p>
<p>Anyway, this reminded me that, while the business model of me.dium didn&#8217;t get anywhere, there was some interesting technology under the covers. It was just getting off the ground, but there were hints at some possibly fertile directions for research and development.  It also reminded me that I started to write this up a few years ago and still had a draft around.  Most of the ideas are covered under patent applications made by me.dium (and so are public information already, but nearly unreadable) and some are fairly &#8220;obvious&#8221; (though that seems to be mostly neglected as criteria for patentability (see, e.g. <a title="Patent a Stick" href="http://www.google.com/patents?id=hhYJAAAAEBAJ">this patent for a wooden dog toy you throw</a>)). The explorations of how the system might work and attempts to create some toy examples to assist with explanations, as well as, the section on proposed new signals is my work. If you are at all interested in the details of how we were trying to create surf-with-friends, <a title="Implicit Cluster Exploration" href="http://drskippy.net/essays/ICE_2011-08-21.pdf">take a peak</a>. (Fair warning, this draft hasn&#8217;t been edited much, so some of it might be a little cumbersome.)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/661/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/661/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/661/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=661&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/08/21/its-coming-around-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>Smart tear-down and build-up of trust from Sinek</title>
		<link>http://skippyrecords.wordpress.com/2011/07/26/smart-tear-down-and-build-up-of-trust-from-sinek/</link>
		<comments>http://skippyrecords.wordpress.com/2011/07/26/smart-tear-down-and-build-up-of-trust-from-sinek/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 16:45:18 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=651</guid>
		<description><![CDATA[Sinek talks about what is common in us and how it affects social interactions&#8211;and business speak.  Is trust simply pattern recognition? I think this is an interesting evolutionary and social question. I hope it is no more cynical than necessary.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=651&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sinek talks about what is common in us and how it affects social interactions&#8211;and business speak.  Is trust simply pattern recognition? I think this is an interesting evolutionary and social question. I hope it is no more cynical than necessary.</p>
<p style="text-align:center;"><div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/26774102' width='400' height='300' frameborder='0'></iframe></div></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/651/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/651/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/651/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=651&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/07/26/smart-tear-down-and-build-up-of-trust-from-sinek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>Certainty and possibilities</title>
		<link>http://skippyrecords.wordpress.com/2011/02/27/certainty-and-possibilities/</link>
		<comments>http://skippyrecords.wordpress.com/2011/02/27/certainty-and-possibilities/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 19:49:06 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=639</guid>
		<description><![CDATA[certainty<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=639&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know that I love the name&#8211;&#8221;possibilians&#8221; seems a bit clumsy to me&#8211;but I value the idea.</p>
<p>I find too many skeptics who assume that we know a lot more about what isn&#8217;t than it seems possible to know.  Vigilant skepticism adds to the quality of conversation.  As a vehicle for combating dangerous silliness like parents not vaccinating children against smallpox or polio, sorting through the facts carefully and re-evaluating the explanation, insisting on coherent, repeatable experiments makes sense. But knowing what isn&#8217;t is much more difficult. Certainty on the right and the left has left us less able to solve difficult problems.</p>
<p>Neuroscientist David Eagleman&#8217;s Pop Tech! presentation is worth a watch.</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/16177455' width='400' height='225' frameborder='0'></iframe></div>
<p><a href="http://vimeo.com/16177455">David Eagleman on Possibilianism</a> from <a href="http://vimeo.com/poptech">PopTech</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>(<a href="http://www.kk.org/thetechnium/archives/2011/02/possibilians_vs.php">Reposted from KK</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/639/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=639&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2011/02/27/certainty-and-possibilities/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>BBC&#8217;s &#8220;Joy of Stats&#8221;</title>
		<link>http://skippyrecords.wordpress.com/2010/12/31/bbcs-joy-of-stats/</link>
		<comments>http://skippyrecords.wordpress.com/2010/12/31/bbcs-joy-of-stats/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 21:42:55 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Physics and Mathematics]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=622</guid>
		<description><![CDATA[Awhile back, I argued here that we should be teaching more statistics in high school and college, especially over Calculus.  When I wrote before, I was thinking of skills and knowledge that includes: Ability to choose what statistical tools to use.  For example, it would be great to have students who could apply significance measures, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=622&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Awhile back, I argued here that we should be teaching more statistics in high school and college, especially over Calculus.  When I wrote before, I was thinking of skills and knowledge that includes:</p>
<ol>
<li>Ability to choose what statistical tools to use.  For example, it would be great to have students who could apply significance measures, evaluate probability and its relationship to risk and know when the average is meaningful (Normal Distribution) or nearly useless (Power Laws).</li>
<li>Practical skills with data collection and manipulation tools such as text editors and spreadsheets, statistics packages (maybe something like R?) and moving data around. Because bigger data sets are so common and rich, it is not enough to know how to calculate the average of a few numbers with a calculator.</li>
<li>Experience and confidence with quantitative analysis as a basis for consistent qualitative reasoning and decision making.</li>
</ol>
<p>I was delighted to see that the BBC production &#8220;The Joy of Stats&#8221; with Hans Rosling is now available on YouTube.  This piece does a great job of showing why and what to explore with statistics.  And Hans is entertaining.</p>
<!--YouTube Error: bad URL entered-->
<br /> Tagged: <a href='http://skippyrecords.wordpress.com/tag/statistics/'>statistics</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/622/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/622/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/622/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=622&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2010/12/31/bbcs-joy-of-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>My personal information system</title>
		<link>http://skippyrecords.wordpress.com/2010/11/13/my-personal-information-system/</link>
		<comments>http://skippyrecords.wordpress.com/2010/11/13/my-personal-information-system/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 00:54:52 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[notebooks]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=610</guid>
		<description><![CDATA[After my last post, I started thinking about all of the pieces of my personal information system.  It turns out that it is surprisingly complicated.  I have tried many social media services, online information services and quite a few desktop personal information products.  I have abandoned a lot of them because they take more time and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=610&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption aligncenter" style="width: 298px"><img title="Notebooks so far" src="http://drskippy.net/img/notebooks_2010-11-13.jpg" alt="Notebooks" width="288" height="161" /><p class="wp-caption-text">Shelf of my notebooks (1/2 dozen more somewhere)</p></div>
<p>After my last post, I started thinking about all of the pieces of my personal information system.  It turns out that it is surprisingly complicated.  I have tried many social media services, online information services and quite a few desktop personal information products.  I have abandoned a lot of them because they take more time and energy than they are worth.  Some I have abandoned include StumbledUpon.com, digg.com, delicious.com (imported to Evernote), filtrbox.com (now owned by Jive), Jigsaw.com, sparknotes.com,  pluck.com, me.dium ( I was an employee at the time), plaxo&#8230;</p>
<p>When I thought about how many I have quit using, I started thinking about how much was left. And of course, I made some notes (yes, in the margin of a notebook).  After a couple of minutes, I decided I needed to start over with two full pages. Below is a scan of the map of my Personal Information System&#8211;click on it to <a title="My personal information map" href="http://drskippy.net/img/personal_information_diagram_2010-11-13_1024x811.png" target="_blank">embiggen</a>. I use RSS feeds (Google Reader) daily and LinkedIn, but they don&#8217;t seem to fit because nothing I use integrates well with LinkedIn and articles in my RSS feed that I want to keep become Evernote notes.  It is still pretty complicated but (I think) I currently value all of the pieces.</p>
<div class="wp-caption aligncenter" style="width: 352px"><a href="http://drskippy.net/img/personal_information_diagram_2010-11-13_1024x811.png"><img class=" " title="My personal information system" src="http://drskippy.net/img/personal_information_diagram_2010-11-13_5inch.png" alt="My personal information system" width="342" height="271" /></a><p class="wp-caption-text">Dr. Skippy&#039;s personal information system</p></div>
<br /> Tagged: <a href='http://skippyrecords.wordpress.com/tag/books/'>Books</a>, <a href='http://skippyrecords.wordpress.com/tag/evernote/'>Evernote</a>, <a href='http://skippyrecords.wordpress.com/tag/notebooks/'>notebooks</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/610/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=610&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2010/11/13/my-personal-information-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>

		<media:content url="http://drskippy.net/img/notebooks_2010-11-13.jpg" medium="image">
			<media:title type="html">Notebooks so far</media:title>
		</media:content>

		<media:content url="http://drskippy.net/img/personal_information_diagram_2010-11-13_5inch.png" medium="image">
			<media:title type="html">My personal information system</media:title>
		</media:content>
	</item>
		<item>
		<title>Evernote, abundance and the value of forgetting</title>
		<link>http://skippyrecords.wordpress.com/2010/11/07/evernote-abundance-and-the-value-of-forgetting/</link>
		<comments>http://skippyrecords.wordpress.com/2010/11/07/evernote-abundance-and-the-value-of-forgetting/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 16:57:32 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[moleskine]]></category>
		<category><![CDATA[notebooks]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=607</guid>
		<description><![CDATA[I have used notebooks for recording ideas, notes and tasks since college and I have shelves full of them. One of my first blog posts was about Moleskine notebooks.  Over the years, I have developed a system for managing topics, tasks, meeting notes etc. in these notebooks. I have journals from work, from vacations and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=607&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have used notebooks for recording ideas, notes and tasks since college and I have shelves full of them. One of my first blog posts was about Moleskine notebooks.  Over the years, I have developed a system for managing topics, tasks, meeting notes etc. in these notebooks. I have journals from work, from vacations and even a few pages of daily journals from more introspective times in my life. And in nearly every notebook, I have used a boring meeting to create a quick index of things I might want to find again.</p>
<p>Recently, I have jumped into using <a title="Evernote.com" href="http://www.evernote.com" target="_blank">Evernote</a> for nearly everything I want to remember.  I currently use it on the Web, on the Windows desktop at work and at home, on my Android phone and on my iPad.  I have consolidated all my links from <a title="delicious.com" href="http://www.delicious.com" target="_blank">Delicious</a> and abandoned that.  I had a library of PDF&#8217;s I have downloaded, read and valued on a local hard drive.  I uploaded those to Evernote and deleted the originals.  I dropped all of my writings from work, my dissertation, etc. into Evernote and deleted most of those.  I scanned some receipts and other paper documents into Evernote and shredded those.</p>
<p>I now capture any notes I might need from a whiteboard with my phone and import those.  Evernote is pretty good at recognising hand-written notes and making them searchable. I still like writing with a real pen in paper journals.  But now, when I record something I think I might want to find later, I take a picture with my phone and load into Evernote.</p>
<p>This changed prompted some observations:</p>
<p>Abundance.  Disk space is cheap and loading things into Evernote is available everywhere I am.  It is cheap and easy.  This means that I can upload more than I previously could file, draw, record, etc. and easily find it.  Because of tagging and search, having recorded all of this stuff gets in the way of finding what I want less and less.  In the past, digging through a file cabinet for that one receipt or paper your wrote 10 years ago when 99% of the stuff isn&#8217;t what you are looking for was very time-consuming.  Now it doesn&#8217;t matter if 99.999% of your notes aren&#8217;t relevant to a search&#8211;you never see them.  This brings me to another point&#8230;</p>
<p>Letting go.  There may be a temptation to manage your Evernote repository to make sure there isn&#8217;t redundancy, out of date stuff, or stuff you no longer care about.  Doing this with a file cabinet is probably not too bad an idea if you want to be able to find something fast.  In Evernote, unless you can do this with the original tags or notebooks you created, be sceptical of the value of doing it at all.  Abundance of space and the ease of storing and retrieving notes means &#8220;managing&#8221; as an activity isn&#8217;t worth your time.  Tag as best you can when you put the note into Evernote.  Write a few words that will remind you why this item was important to you and move on.  If you run across a note you want to fix, edit or delete it.  But don&#8217;t go looking for them.</p>
<p>The value of forgetting.  One of the best things about paper notebooks is that when you revisit them, you realise how much you forgot that never needs to be relived.  I often highlight or strike out old notes when I am looking for something in an old notebook, noting that something is forgettable (and good riddance!). The value of forgetting is immense for cognition, synthesis and creativity. I have a few details we need to remember very specifically (addresses, passwords, etc.). I have a few creative ideas that I will want to use as a launching pad for a future project.  Occasionally, I may have created a clever poem, story, essay or picture.  But everything else is in the way.</p>
<p>Evernote promises a simple and more effective way of remembering, and, hopefully, of forgetting. I doubt that I will search for Everything I have put into Evernote.  Some things will be forgotten, as they should be.</p>
<br /> Tagged: <a href='http://skippyrecords.wordpress.com/tag/evernote/'>Evernote</a>, <a href='http://skippyrecords.wordpress.com/tag/moleskine/'>moleskine</a>, <a href='http://skippyrecords.wordpress.com/tag/notebooks/'>notebooks</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/607/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/607/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/607/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=607&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2010/11/07/evernote-abundance-and-the-value-of-forgetting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
		<item>
		<title>Drawing lusona</title>
		<link>http://skippyrecords.wordpress.com/2010/09/05/drawing-lusona/</link>
		<comments>http://skippyrecords.wordpress.com/2010/09/05/drawing-lusona/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 17:28:15 +0000</pubDate>
		<dc:creator>Dr. Skippy</dc:creator>
				<category><![CDATA[Everything Else]]></category>
		<category><![CDATA[Physics and Mathematics]]></category>
		<category><![CDATA[lusona]]></category>
		<category><![CDATA[mandala]]></category>
		<category><![CDATA[traditional art]]></category>

		<guid isPermaLink="false">http://skippyrecords.wordpress.com/?p=601</guid>
		<description><![CDATA[A Lusona is a Eulerian Path mandala that shows up in the traditions of African and Indian cultures.  I made a short demonstration video this morning showing the drawing of one traditional path.  Ron Eglash has a nice write-up and gives some additional references in his great book African Fractals. Tagged: lusona, mandala, traditional art<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=601&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A <a title="Mandala Symmetries - Dartmouth Math" href="http://www.math.dartmouth.edu/~matc/math5.pattern/lesson2math.html" target="_blank">Lusona</a> is a <a title="Wikipedia Eulerian Path" href="http://en.wikipedia.org/wiki/Eulerian_path" target="_blank">Eulerian Path</a> mandala that shows up in the traditions of African and Indian cultures.  I made a short demonstration video this morning showing the drawing of one traditional path.  Ron Eglash has a nice write-up and gives some additional references in his great book <a title="African Fractals at Amazon.com" href="http://www.amazon.com/African-Fractals-Modern-Computing-Indigenous/dp/0813526140">African Fractals</a>.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/pIurbbmJv6Y?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br /> Tagged: <a href='http://skippyrecords.wordpress.com/tag/lusona/'>lusona</a>, <a href='http://skippyrecords.wordpress.com/tag/mandala/'>mandala</a>, <a href='http://skippyrecords.wordpress.com/tag/traditional-art/'>traditional art</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skippyrecords.wordpress.com/601/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skippyrecords.wordpress.com/601/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skippyrecords.wordpress.com/601/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skippyrecords.wordpress.com&amp;blog=13069636&amp;post=601&amp;subd=skippyrecords&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skippyrecords.wordpress.com/2010/09/05/drawing-lusona/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fd95bd67cd406fcb27a627a44570f2a2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">drskippy27</media:title>
		</media:content>
	</item>
	</channel>
</rss>
