<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>experiments and essays</title>
	
	<link>http://labs.kortina.net</link>
	<description>by andrew kortina</description>
	<lastBuildDate>Tue, 10 Nov 2009 04:20:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/kortina-essays" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">kortina-essays</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Locking a Reference to a Fixed Row or Column in Google Spreadsheets</title>
		<link>http://labs.kortina.net/2009/11/10/locking-a-reference-to-a-fixed-row-or-column-in-google-spreadsheets/</link>
		<comments>http://labs.kortina.net/2009/11/10/locking-a-reference-to-a-fixed-row-or-column-in-google-spreadsheets/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 04:17:31 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=415</guid>
		<description><![CDATA[When you use Copy Down/Right, AutoFill or Copy &#38; Paste in Google Spreadsheets, cell references automatically change: eg, if you have a formula in C2 that references A2 and you copy down the formula to C3, the formula will automatically reference A3 instead of A2.
It is possible to &#8220;fix&#8221; or &#8220;lock&#8221; references to a single cell, row, or [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/' rel='bookmark' title='Permanent Link: Google Dashboard Just Showed Me How Much Stored Value I Have with Google'>Google Dashboard Just Showed Me How Much Stored Value I Have with Google</a></li><li><a href='http://labs.kortina.net/2008/05/02/vim-tips-via-cheat-gem/' rel='bookmark' title='Permanent Link: vim tips ( via cheat gem )'>vim tips ( via cheat gem )</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">When you use <em>Copy Down/Right</em>, <em>AutoFill</em> or <em>Copy &amp; Paste</em> in Google Spreadsheets, cell references automatically change: eg, if you have a formula in C2 that references A2 and you copy down the formula to C3, the formula will automatically reference A3 instead of A2.</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">It is possible to &#8220;fix&#8221; or &#8220;lock&#8221; references to a single cell, row, or column. I always forget how to do this, and frequently need to look this up when I use a row at the top of a spreadsheet for holding static configuration values, such as an api login / key. So, I wanted to blog this both for my own future reference and for the benefit of anyone else who encounters the same problem.</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial"><strong>Lock a Reference to a Column</strong></p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">Suppose you have a formula in D4 that references D1, and you want to lock the reference so that when you copy down from D4 the reference does not change to D2..Dn, but stays fixed to D1. Use the &#8220;$&#8221; character before the row number:</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">=D$1</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px"><strong>Lock a Reference to a Row</strong></p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px">Suppose you have a formula in D4 that references A4, and you want to lock the reference so that when you copy right from D4 the reference does not change to B4..n4, but stays fixed to A4. Use the &#8220;$&#8221; character before the column letter:</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px">=$A4</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px"><strong>Lock a Reference to a Single Cell</strong></p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px">Suppose you have a formula in D4 that references A1, and you want to lock the reference so that when you copy down or right from D4 the reference always stays fixed to A1. Use the &#8220;$&#8221; character before the column letter and row number:</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px">=$A$1</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">Here are a bunch of more tips and function reference materials for Google Spreadsheets: <a href="http://bit.ly/3ExvOx">http://bit.ly/3ExvOx</a> &#8211; not much on the locking cell references here, but some other killer stuff like &#8220;GoogleLookup.&#8221;</p>
<p style="padding-top: 0px;padding-right: 0px;padding-bottom: 1em;padding-left: 0px;margin: 0px;border: 0px initial initial">Back to hacking Google Spreadsheets&#8230;</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=415&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/' rel='bookmark' title='Permanent Link: Google Dashboard Just Showed Me How Much Stored Value I Have with Google'>Google Dashboard Just Showed Me How Much Stored Value I Have with Google</a></li><li><a href='http://labs.kortina.net/2008/05/02/vim-tips-via-cheat-gem/' rel='bookmark' title='Permanent Link: vim tips ( via cheat gem )'>vim tips ( via cheat gem )</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=TBgL_pb798Y:Li-P5VLUQ0E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=TBgL_pb798Y:Li-P5VLUQ0E:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=TBgL_pb798Y:Li-P5VLUQ0E:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/11/10/locking-a-reference-to-a-fixed-row-or-column-in-google-spreadsheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Dashboard Just Showed Me How Much Stored Value I Have with Google</title>
		<link>http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/</link>
		<comments>http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 22:17:40 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[data]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=408</guid>
		<description><![CDATA[Google just launched a dashboard that summarizes all of the data you have stored across various Google services.  Looking at the number of messages and documents I&#8217;ve stored with them over the years makes me realize how hard it would be to switch to something else.
Tangent: has anyone noticed how killer the Google &#8220;Preview&#8221; app is? [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/07/26/i-want-read-flare-plugins-for-sharing-in-google-reader/' rel='bookmark' title='Permanent Link: I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader'>I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Google <a href="http://googleblog.blogspot.com/2009/11/transparency-choice-and-control-now.html">just launched a dashboard</a> that summarizes all of the data you have stored across various Google services.  Looking at the number of messages and documents I&#8217;ve stored with them over the years makes me realize how hard it would be to switch to something else.</p>
<p>Tangent: has anyone noticed how killer the Google &#8220;Preview&#8221; app is? You can view PDFs and PSDs right in the browser, copy and paste text from them&#8211;very slick.  Just more evidence that Google is my new OS.</p>
<p>Here are some highlights from my dashboard that I found interesting:</p>
<p>Account</p>
<p>Name: Andrew Kortina</p>
<p>Alerts<br />
My alerts 7 active alerts</p>
<p>Calendar<br />
My calendars 5 calendars &#8211; 1 public</p>
<p>Contacts<br />
Contacts 1359 entries</p>
<p>Docs<br />
Owned by me 301 documents<br />
Shared with me 157 documents<br />
Opened by me 348 documents<br />
Trashed 51 documents<br />
Starred 9 documents</p>
<p>Gmail<br />
Inbox 6 conversations<br />
All mail 39286 conversations<br />
Sent mail 11698 conversations<br />
Saved drafts 4 conversations<br />
Chat history 4388 conversations<br />
Spam 18 conversations<br />
Trash 541 conversations</p>
<p>Google Sync<br />
Google Sync 1 device configured</p>
<p>Profile<br />
About me 4 entries<br />
Profile URL: http://www.google.com/profiles/kortina<br />
Links: 7 sites</p>
<p>Reader<br />
Subscriptions 68 total<br />
Starred 92 items<br />
Shared 65 items<br />
Following 20 people<br />
Followed by 20 people</p>
<p>Talk<br />
Contacts 51 contacts</p>
<p>Tasks<br />
Task lists 1 item<br />
Completed tasks 130 items</p>
<p>Voice<br />
History 192 calls<br />
Voice mails 8 voice mails<br />
SMS 118 messages<br />
Placed calls 4 calls<br />
Trash 19 items</p>
<p>YouTube<br />
Uploaded videos 34 public<br />
Viewing history<br />
Favorites 68 favorites<br />
Playlists 4 public<br />
Subscriptions 3 public</p>
<p>Other products<br />
22 additional products are not yet available in this dashboard</p>
<p>What are your stats?</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=408&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/07/26/i-want-read-flare-plugins-for-sharing-in-google-reader/' rel='bookmark' title='Permanent Link: I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader'>I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=eMTgnYdZZZQ:9I7AvMNw9_s:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=eMTgnYdZZZQ:9I7AvMNw9_s:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=eMTgnYdZZZQ:9I7AvMNw9_s:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Temporally and Spatially Aware Google</title>
		<link>http://labs.kortina.net/2009/11/01/a-temporally-and-spatially-aware-google/</link>
		<comments>http://labs.kortina.net/2009/11/01/a-temporally-and-spatially-aware-google/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 01:41:57 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[data]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=403</guid>
		<description><![CDATA[Google Search has been temporally and spatially aware for quite some time now, but today was the first day I took this for granted.  I wanted to know the score of the Eagles game before I got home from brunch, and I do not have a goto sports scores app on my Blackberry. So I [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/' rel='bookmark' title='Permanent Link: Google Dashboard Just Showed Me How Much Stored Value I Have with Google'>Google Dashboard Just Showed Me How Much Stored Value I Have with Google</a></li><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/08/05/business-cards-have-google-maps-now/' rel='bookmark' title='Permanent Link: Business Cards Have Google Maps Now'>Business Cards Have Google Maps Now</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Google Search has been temporally and spatially aware for quite some time now, but today was the first day I took this for granted.  I wanted to know the score of the Eagles game before I got home from brunch, and I do not have a goto sports scores app on my Blackberry. So I just Googled &#8220;<a href="http://www.google.com/search?rls=ig&amp;hl=en&amp;source=hp&amp;q=philadelphia+eagles&amp;aq=0p&amp;oq=philadelphi&amp;aqi=g-p3g7">philadelphia eagles</a>,&#8221; because I remembered seeing either through a blog post or a previous search I had done the score to a sports game on the Google one box search results page.</p>
<p><a href="http://labs.kortina.net/files/2009/11/2009-11-01_2019.png"><img class="alignnone size-medium wp-image-404" src="http://labs.kortina.net/files/2009/11/2009-11-01_2019-300x232.png" alt="2009-11-01_2019" width="300" height="232" /></a></p>
<p>It seems like Google has been doing more to make search temporally aware. More importantly, they have been doing a better job of educating me about this new dimension of search, driving me back to the one box with queries I may have previously performed via a more verticalized channel ( like the Eagles website or an app like Sports Tap).</p>
<p>I&#8217;ve also noticed spatially aware search results making their way higher up the one box results. Although the verticalized search I default to for this is also a Google product, Google Maps, knowing that I don&#8217;t need to go to a separate service to get results specific to my geographic location is an important and subtle behavior Google is training me to have.  Check out my Google results for &#8220;<a href="http://www.google.com/search?hl=en&amp;source=hp&amp;q=whole+foods&amp;aq=f&amp;oq=&amp;aqi=g10">whole foods</a>:&#8221;</p>
<div id="attachment_405" class="wp-caption alignnone" style="width: 310px"><a href="http://labs.kortina.net/files/2009/11/2009-11-01_2020.png"><img class="size-medium wp-image-405" src="http://labs.kortina.net/files/2009/11/2009-11-01_2020-300x241.png" alt="localized Google search results for whole foods in nyc" width="300" height="241" /></a><p class="wp-caption-text">localized Google search results for whole foods in nyc</p></div>
<p>Adding this kind of personalization is a constant reminder to me how good Google is at organizing the world&#8217;s information: in this case, they are organizing and making useful my personal spatial/temporal data. By constantly demonstrating the added value of personal data, Google just makes me want to give them more and more data.</p>
<p>On the one hand, it&#8217;s kind of scary how much Google knows about me. On the other hand, I see how much time Google saves me and I still want to keep exchanging data exhaust for time saved.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=403&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/11/05/google-dashboard-just-showed-me-how-much-stored-value-i-have-with-google/' rel='bookmark' title='Permanent Link: Google Dashboard Just Showed Me How Much Stored Value I Have with Google'>Google Dashboard Just Showed Me How Much Stored Value I Have with Google</a></li><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/08/05/business-cards-have-google-maps-now/' rel='bookmark' title='Permanent Link: Business Cards Have Google Maps Now'>Business Cards Have Google Maps Now</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=4qihJPSkmhw:PCXmXaWDW1Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=4qihJPSkmhw:PCXmXaWDW1Q:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=4qihJPSkmhw:PCXmXaWDW1Q:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/11/01/a-temporally-and-spatially-aware-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Liberal Arts Education Teaches Students to Analyze and Express Ideas Efficiently</title>
		<link>http://labs.kortina.net/2009/10/25/a-liberal-arts-education-teaches-students-to-analyze-and-express-ideas-efficiently/</link>
		<comments>http://labs.kortina.net/2009/10/25/a-liberal-arts-education-teaches-students-to-analyze-and-express-ideas-efficiently/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 16:40:33 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[business]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=396</guid>
		<description><![CDATA[I was trying to write a 140 character a response to this twitter thread on the cost/value of education in the US, but (ironically, given my liberal arts education and the thesis of this post), failed. So here&#8217;s the thread and a few thoughts that were too long for a tweet.
@arctictony : @aweissman @ewiesen. Have to [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I was trying to write a 140 character a response to this twitter thread on the cost/value of education in the US, but (ironically, given my liberal arts education and the thesis of this post), failed. So here&#8217;s the thread and a few thoughts that were too long for a tweet.</p>
<blockquote><p>@<strong><a title="Tony Haile" href="http://twitter.com/arctictony">arctictony</a></strong> : <span style="padding: 0px;margin: 0px">@<a href="http://twitter.com/aweissman">aweissman</a> @<a href="http://twitter.com/ewiesen">ewiesen</a>. Have to disagree. Liberal arts may not work for a salary man, but it sure helps develop the innovation muscle.</span></p>
<p><span style="padding: 0px;margin: 0px">@aweissman: @<a href="http://twitter.com/ewiesen">ewiesen</a> depends how you define &#8220;education&#8221; &#8211; if by that you mean liberal arts education, I see low and declining ROI. Skillz pay the billz</span></p>
<p><span style="padding: 0px;margin: 0px">@ewiesen: @<a href="http://twitter.com/aweissman">aweissman</a> I like Mish but I think that article is crap. Education might have poor ROI during an economic crisis, but pays in the long term.</span></p>
<p><span style="padding: 0px;margin: 0px">@aweissman: &#8220;The cost of a US education seems enormously out of whack for what it provides.&#8221; Mike &#8220;Mish&#8221; Shedlock <a rel="nofollow" href="http://bit.ly/twOmf" target="_blank">http://bit.ly/twOmf</a></span></p></blockquote>
<p>Probably the greatest asset of the liberal arts education is an exposure to all sorts ideas and arguments across all sorts of domains. Your assignment, in general, no matter what your field of study, is to fully understand the author&#8217;s argument and then either express in your own words why the argument either holds true or is faulty.</p>
<p>Often, in a single class, you&#8217;ll read 4 or 5 different authors who answer the same question with a different answer. One author will build upon another&#8217;s body of work, but refute a key, perhaps subtle, point, in his predecessor&#8217;s argument, and then diverge into a new solution.  The trick for the student is to recognize the essence of the arguments, highlight the differences, and either argue for one side or propose a new argument and refute both.</p>
<p>Honestly, I believe that the liberal arts education is by far the most valuable of any you could choose as an undergraduate. Undergraduate study is very much about learning how to learn, preparing yourself to quickly absorb domain specific knowledge you&#8217;ll need for whatever job you find. I will always hire a sharp mind and a fast learner over a candidate who happens to have experience with a software suite or programming language we happen to be using.</p>
<p>The &#8220;learning how to learn&#8221; approach to undergraduate is not specific to studying the arts&#8211;you can come out of engineering school a fast learner, but something about the &#8220;use method X to produce result Y&#8221; rigidness of engineering always made this track more game-able to me. What I mean is that it was easier to slack on creativity in engineering coursework, to just go on autopilot, follow the rules, and arrive at the answer. The program was a system or game, and the rules were simple.</p>
<p>In the arts, to craft an excellent essay in response to a novel or treatise, you want to say something original&#8211;this takes creativity. And, the prerequisite is a deep, deep understanding of the body of work you are studying, which itself is not straightforward. You might have two experts on Aristotle with starkly different interpretations. When even the experts disagree, it&#8217;s difficult to just set your mind on autopilot cruising towards the solution, because there&#8217;s no one path to the answer and not just one answer.</p>
<p>Another, more clearly practical result of the liberal arts education is training in efficient communication. Since graduation, the biggest bottleneck I&#8217;ve seen in the business world is communication.  Often, you&#8217;ll read productivity essayists argue for writing shorter emails, reducing time spent on phone calls, running standing meetings. They only address half of the communication problem: clear, concise expression of ideas.  A liberal arts degree is probably the best way to train this sort of expression, especially when you have great teachers who force you to distill massive treatises into arguments of only a few type written pages of your own.</p>
<p>The less frequently discussed communication bottleneck is on the interpretation or absorption side.  Not everyone is an excellent communicator, and inefficiency on the side of the speaker / emailer translates to wasted time for the listener.  Hence, being able to instantly recognize where a slow discussion is driving, identifying the thesis early, is massively beneficial because it allows a sharp listener to interject and drive discussion towards the goal more efficiently by steering away from tangents or deep diversions into non-essential information.</p>
<p>I do not think I can express enough the value I get out of working with people who are great communicators&#8211;both on the expression and understanding ends. When you know you are working with a keen mind who will grasp not only your words but the goal you are driving towards, the purpose and intent driving your words, a sentence will suffice where a page would be required for a colleague not as adept at understanding motives.</p>
<p>I love working with expert communicators, and I think the liberal arts breeds them well.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=396&type=feed" alt="" />

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=80M8nr91xzo:7gbus11Gi28:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=80M8nr91xzo:7gbus11Gi28:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=80M8nr91xzo:7gbus11Gi28:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/10/25/a-liberal-arts-education-teaches-students-to-analyze-and-express-ideas-efficiently/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Community and Camaraderie are the Foundations of 21st Century Business</title>
		<link>http://labs.kortina.net/2009/10/10/community-and-camaraderie-are-the-foundations-of-21st-century-business/</link>
		<comments>http://labs.kortina.net/2009/10/10/community-and-camaraderie-are-the-foundations-of-21st-century-business/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 20:59:09 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[fitness]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=391</guid>
		<description><![CDATA[This morning I had the privilege of meeting Greg Glassman after a Crossfit Q&#38;A session at Brooklyn Barbell Club.  The thing I admire most about Glassman and the Crossfit organization is a set of strong first principles combined backed by empirical arguments.  Today, Glassman laid a few core Crossfit tenets:
Crossfit is constantly varied high intensity [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/28/so-much-of-repugnant-behavior-is-about-getting-something-for-nothing/' rel='bookmark' title='Permanent Link: So much of repugnant behavior is about getting something for nothing'>So much of repugnant behavior is about getting something for nothing</a></li><li><a href='http://labs.kortina.net/2009/08/13/running-barefoot-first-thoughts/' rel='bookmark' title='Permanent Link: Running Barefoot First Thoughts'>Running Barefoot First Thoughts</a></li><li><a href='http://labs.kortina.net/2009/08/04/health-long-lasting-functional-ability-the-evolving-crossfit-philosophy/' rel='bookmark' title='Permanent Link: Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy'>Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>This morning I had the privilege of meeting <a href="http://journal.crossfit.com/2007/04/understanding-crossfit-by-greg.tpl">Greg Glassman</a> after a Crossfit Q&amp;A session at <a href="http://www.crossfitvirtuosity.com/">Brooklyn Barbell Club</a>.  The thing I admire most about Glassman and the Crossfit organization is a set of strong first principles combined backed by empirical arguments.  Today, Glassman laid a few core Crossfit tenets:</p>
<blockquote><p>Crossfit is constantly varied high intensity functional movement.</p>
<p>Functional movements are categorically unique in their ability to express power.</p>
<p>Power across broad time and modal domains is fitness.</p>
<p>Fitness measured across lifespan is health.</p>
<p>Affiliates are a distribution system for the above.</p></blockquote>
<p>All of these are simple but broad declarations, but instead of relying on dogma, age, experience, or any sort of certificate as a reason Crossfitters should accept these tenets, Glassman always points to results and data derived from experimentation as the grounds for these core principles. &#8220;Study data, pay close attention to method, and ignore narrative&#8221; when reporting back new findings, he instructs affiliates.</p>
<p>The strength of the Crossfit way is that it is based on the scientific method: we recognize phenomena (elite fitness), form a hypothesis about why / how it happened ( training constantly varied high intensity movements ), and seek to duplicate the results through experimentation ( everyone does the same workouts in Crossfit and witnesses huge increases in functional strength, range of motion, endurance, etc ).</p>
<p>When I spoke with Glassman after the lecture, I thanked him not for Crossfit training program, but for his execution and for building such a strong community around the Crossfit organization. Crossfit for me is the quintessential 21st century org, something between business, government, and church, that exists only because it creates authentic value for participants and encourages lateral connections instead of a top down hierarchy. The affiliate model, group workouts, and competitive/game aspects of Crossfit do not simply motivate everyone to work harder and become friends with everyone involved: all of these things are the bedrock of a scalable business/organization/community.  The training method breeds new leaders and more members gain enough experience to teach newcomers, the capacity to handle accelerating growth keeps up with new demand.</p>
<p>Requiring participants to give back to the community (in this case via support and instruction) is what I think makes camaraderie so strong in organizations like Crossfit.  It is because you give back that you become vested, you care more deeply for those you help because they are realizing the fruits of your contribution.</p>
<p>I felt a strong void after leaving school and team sports; finding a place to give and receive help, to compete or work towards a common end, is how we fill this void. Others find a substitute in dogmatic groups (religious ones) or cultural communities (national pride/sports team based groups), but as science makes dogma more unacceptable and as global connectedness continues to erase national boundaries, the importance of lifestyle communities grounded in hard science is greater than ever.</p>
<p>This has been a bit desultory, but the community and methodology of Crossfit are truly inspirational to me. I look to this organization with gratitude for providing examples that help me make business decisions every day. Business in this century cannot afford to operate by dictating &#8220;needs&#8221; to consumers. The new foundation for scaling a large org is providing authentic value that inspires your community (formerly known as customers) so much that they cannot help but become vested in your cause and become your ambassadors, your teachers, and your leaders.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=391&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/28/so-much-of-repugnant-behavior-is-about-getting-something-for-nothing/' rel='bookmark' title='Permanent Link: So much of repugnant behavior is about getting something for nothing'>So much of repugnant behavior is about getting something for nothing</a></li><li><a href='http://labs.kortina.net/2009/08/13/running-barefoot-first-thoughts/' rel='bookmark' title='Permanent Link: Running Barefoot First Thoughts'>Running Barefoot First Thoughts</a></li><li><a href='http://labs.kortina.net/2009/08/04/health-long-lasting-functional-ability-the-evolving-crossfit-philosophy/' rel='bookmark' title='Permanent Link: Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy'>Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=BiqrCIE2Q4k:KZpf2VpeDbE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=BiqrCIE2Q4k:KZpf2VpeDbE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=BiqrCIE2Q4k:KZpf2VpeDbE:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/10/10/community-and-camaraderie-are-the-foundations-of-21st-century-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Type Letters for a Dial by Name Directory on Blackberry</title>
		<link>http://labs.kortina.net/2009/09/02/how-to-type-letters-for-a-dial-by-name-directory-on-blackberry/</link>
		<comments>http://labs.kortina.net/2009/09/02/how-to-type-letters-for-a-dial-by-name-directory-on-blackberry/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:02:49 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=388</guid>
		<description><![CDATA[I used to look for a screenshot of the keypad of a phone every time I had to navigate a phone system that required me to type letters as input or tried to type a phone number that contained letters.  (On Blackberry, the number keys don&#8217;t have letters on them, so I could never figure [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<div id="attachment_389" class="wp-caption alignnone" style="width: 307px"><a href="http://labs.kortina.net/files/2009/09/2009-09-01_2348-numeric-keypad-letters-for-each-number.png"><img class="size-full wp-image-389" src="http://labs.kortina.net/files/2009/09/2009-09-01_2348-numeric-keypad-letters-for-each-number.png" alt="Numeric Keypad Letters for Each Number" width="297" height="272" /></a><p class="wp-caption-text">Numeric Keypad Letters for Each Number</p></div>
<p>I used to look for a screenshot of the keypad of a phone every time I had to navigate a phone system that required me to type letters as input or tried to type a phone number that contained letters.  (On Blackberry, the number keys don&#8217;t have letters on them, so I could never figure out how you were supposed to navigate these alphanumeric menus and dial by name directories).</p>
<p>Today, I was without my screenshot, so I called @iqram and asked him to screenshot the Skype keypad and send it to me.  He asked me why, and when I told him he taught me a cool trick for blackberry. To mimic the tone correct numeric tone for a letter on Blackberry, just hit Alt and then the letter. Eg, typing Alt then A will sound the tone for the 2 key.</p>
<p>Worst case scenario: here is the complete mapping of letters to number tones for mimicking a touchtone phone in case this trick does not work for you:</p>
<p>ABC: 2<br />
DEF: 3<br />
GHI: 4<br />
JKL: 5<br />
MNO: 6<br />
PQRS: 7<br />
TUV: 8<br />
WXYZ: 9</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=388&type=feed" alt="" />

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=9dSTqq8SW_M:kbiedpLxf-I:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=9dSTqq8SW_M:kbiedpLxf-I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=9dSTqq8SW_M:kbiedpLxf-I:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/09/02/how-to-type-letters-for-a-dial-by-name-directory-on-blackberry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>So much of repugnant behavior is about getting something for nothing</title>
		<link>http://labs.kortina.net/2009/08/28/so-much-of-repugnant-behavior-is-about-getting-something-for-nothing/</link>
		<comments>http://labs.kortina.net/2009/08/28/so-much-of-repugnant-behavior-is-about-getting-something-for-nothing/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 17:19:39 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[fitness]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=384</guid>
		<description><![CDATA[We are co-selecting for a whole bunch of admirable quality traits. Once you get rid of the people in your life, in your community, your gym, your neighborhood, who want something for nothing, who don&#8217;t understand that it&#8217;s through sacrifice and commitment and rigor, ardor, sweat, that good things come, things like thieves disappear. So [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/10/10/community-and-camaraderie-are-the-foundations-of-21st-century-business/' rel='bookmark' title='Permanent Link: Community and Camaraderie are the Foundations of 21st Century Business'>Community and Camaraderie are the Foundations of 21st Century Business</a></li><li><a href='http://labs.kortina.net/2009/08/04/health-long-lasting-functional-ability-the-evolving-crossfit-philosophy/' rel='bookmark' title='Permanent Link: Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy'>Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy</a></li></ol>]]></description>
			<content:encoded><![CDATA[<blockquote><p>We are co-selecting for a whole bunch of admirable quality traits. Once you get rid of the people in your life, in your community, your gym, your neighborhood, who want something for nothing, who don&#8217;t understand that it&#8217;s through sacrifice and commitment and rigor, ardor, sweat, that good things come, things like thieves disappear. So much of repugnant behavior is about getting something for nothing. Crossfitters don&#8217;t believe that it is possible.</p></blockquote>
<p>&#8211;Greg Glassman, excerpted from this recent <a href="http://bit.ly/3t1QSL">Crossfit Journal Inteview on Primal Fitness</a>. You really should watch this.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=384&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/10/10/community-and-camaraderie-are-the-foundations-of-21st-century-business/' rel='bookmark' title='Permanent Link: Community and Camaraderie are the Foundations of 21st Century Business'>Community and Camaraderie are the Foundations of 21st Century Business</a></li><li><a href='http://labs.kortina.net/2009/08/04/health-long-lasting-functional-ability-the-evolving-crossfit-philosophy/' rel='bookmark' title='Permanent Link: Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy'>Health = Long Lasting Functional Ability: The Evolving Crossfit Philosophy</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=zIypgPErLgk:6nZzqT9ei3Y:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=zIypgPErLgk:6nZzqT9ei3Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=zIypgPErLgk:6nZzqT9ei3Y:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/08/28/so-much-of-repugnant-behavior-is-about-getting-something-for-nothing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sometimes User Feedback Results in Smiles instead of Patches</title>
		<link>http://labs.kortina.net/2009/08/27/sometimes-user-feedback-results-in-smiles-instead-of-patches/</link>
		<comments>http://labs.kortina.net/2009/08/27/sometimes-user-feedback-results-in-smiles-instead-of-patches/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 21:03:01 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[apps]]></category>
		<category><![CDATA[fitness]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=382</guid>
		<description><![CDATA[We received one of the best feedback notes from a Workout of the Day iPhone App user the other day. Lisa wrote:
Amazing app! I&#8217;ve been with my husband in Kansas from NJ while he&#8217;s military training and was stressed out about not being able to do some of the Crossfit workouts. I have 2 small [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2008/05/06/on-power-and-finals-email-to-penn-kempo/' rel='bookmark' title='Permanent Link: On Power and Finals: Email to Penn Kempo'>On Power and Finals: Email to Penn Kempo</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>We received one of the best feedback notes from a <a href="http://workout-of-the-day.com/">Workout of the Day iPhone App</a> user the other day. Lisa wrote:</p>
<blockquote><p>Amazing app! I&#8217;ve been with my husband in Kansas from NJ while he&#8217;s military training and was stressed out about not being able to do some of the Crossfit workouts. I have 2 small children so I was totally missing our home gym until your app came along. The best $ I&#8217;ve spent at the store for sure. Would you be able to incorporate walking lunges into some of the WODs? They are a great alternative to regular lunges and definitely easy to incorporate into 4-5 rounds of a set. Thank you so much and keep up the great work! Lisa</p></blockquote>
<p>Getting feedback like this can really brighten your day when you take a break from a morning of coding and see this in your inbox.  Something about the personal details about her family and children conveyed that there was a real person using and enjoying using this software&#8211;a bit different than watching Google Analytics numbers.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=382&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2008/05/06/on-power-and-finals-email-to-penn-kempo/' rel='bookmark' title='Permanent Link: On Power and Finals: Email to Penn Kempo'>On Power and Finals: Email to Penn Kempo</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=OtKpnxZf-HA:KX5eE_KqTR8:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=OtKpnxZf-HA:KX5eE_KqTR8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=OtKpnxZf-HA:KX5eE_KqTR8:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/08/27/sometimes-user-feedback-results-in-smiles-instead-of-patches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The grain dilemma</title>
		<link>http://labs.kortina.net/2009/08/25/the-grain-dilemma/</link>
		<comments>http://labs.kortina.net/2009/08/25/the-grain-dilemma/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 14:35:45 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[nutrition]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=379</guid>
		<description><![CDATA[Vishal has just published a great post on grains and the merits/shortcomings of eliminating grains as Paleo diet suggests:
Since I read some articles on the deleterious effects of grains on http://wholehealthsource.blogspot.com/, I’ve been wandering around in a daze, feeling like my dietary world has been turned upside down. I became so confused about what was [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/01/enjoy-salsa-and-avoid-chips/' rel='bookmark' title='Permanent Link: Enjoy Salsa And Avoid Chips'>Enjoy Salsa And Avoid Chips</a></li><li><a href='http://labs.kortina.net/2009/07/19/kiss-recipe-sauteed-broccoli/' rel='bookmark' title='Permanent Link: KISS Recipe: Sauteed Broccoli'>KISS Recipe: Sauteed Broccoli</a></li><li><a href='http://labs.kortina.net/2008/05/16/must-watch-nutrition-vid/' rel='bookmark' title='Permanent Link: Must Watch Nutrition Vid'>Must Watch Nutrition Vid</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Vishal has just published a great post on grains and the merits/shortcomings of eliminating grains as Paleo diet suggests:</p>
<blockquote><p>Since I read some articles on the deleterious effects of grains on http://wholehealthsource.blogspot.com/, I’ve been wandering around in a daze, feeling like my dietary world has been turned upside down. I became so confused about what was good for me and what was not that I ate less and less and felt more and more guilty.</p>
<p>It sucked. I lost weight.</p>
<p>But I’m recentered now. As I was trying to explain my confusion with grains, a friend reminded me, “Well, every food is going to be unhealthy by someone’s standards.” Oh yea. I had completely forgotten that.</p>
<p>&#8230;.</p>
<p>Part of the problem I see with the paleo-type diet is that it seems to limit you to a “meat and 2 veggies” kind of meal. All the time. If I try to cut out all the sources of phytic acid from my diet, then I end up relying solely upon meat for protein, which – with all the fat and cholesterol – calls for a phenomenal amount of exercise… which is more than I do, more than I care to do, and more than I think is necessary.</p>
<p>If you look at a typical American meal (which I do every day in the cafeteria), the problem is that the bread or wheat product plays a central role. Pizza, pasta, sandwiches – typical lunch fare, all heavy on the bread. But if you think about what bread provides you – just look at the nutritional info on the package – it’s close to zilch. A bunch of starch, a bit of fiber, and cavities. In fact, it just looks like a filler. And maybe that’s how bread evolved anyway: to fill our bellies with cheap grains so we wouldn’t eat so much costly meat and vegetables.</p>
<p>&#8230;.</p></blockquote>
<p>You should read the full post here: <a href="http://alimentary.tumblr.com/post/170968214/the-grain-dilemma">Digestion &#8211; The grain dilemma</a>.</p>
<p>I think Vishal is spot on with his recommendation to remove grain from the central role of a meal, reducing consumption rather than eliminating it. I personally, however, have trended towards Paleo and pretty much eliminated grains from my diet a few months ago.</p>
<p>I find that I have more energy, less after lunch lethargy, and I eat way more vegetables and fruits now. I also don&#8217;t feel super full and bloated after meals. One of the arguments Vishal seems to suppose that cutting grains means eating more meats, and he argues that he doesn&#8217;t exercise enough to burn these extra calories. I would argue this premise is bad: we shouldn&#8217;t be replacing grains with meats, but with veggies.  This will actually result in fewer calories in total and require less exercise for weight maintenance/loss.   I try to eat a small amount of meat at lunch and dinner, and cutting grains has not left me feeling deficient in protein at all, even though I have not been eating extra meat to compensate as Vishal suggests he thinks is necessary.</p>
<p>Though I feel much healthier having cut grains, I certainly feel a bit limited as Vishal says by the &#8220;meat and 2 veggies&#8221; meal plan. It gets kind of boring, and I think in the winter time especially I&#8217;ll miss things like lentil or black bean soup&#8211;delicious (and super cheap!) meals.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=379&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/01/enjoy-salsa-and-avoid-chips/' rel='bookmark' title='Permanent Link: Enjoy Salsa And Avoid Chips'>Enjoy Salsa And Avoid Chips</a></li><li><a href='http://labs.kortina.net/2009/07/19/kiss-recipe-sauteed-broccoli/' rel='bookmark' title='Permanent Link: KISS Recipe: Sauteed Broccoli'>KISS Recipe: Sauteed Broccoli</a></li><li><a href='http://labs.kortina.net/2008/05/16/must-watch-nutrition-vid/' rel='bookmark' title='Permanent Link: Must Watch Nutrition Vid'>Must Watch Nutrition Vid</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=UO06MNSi6Xk:ufo39EexE9o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=UO06MNSi6Xk:ufo39EexE9o:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=UO06MNSi6Xk:ufo39EexE9o:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/08/25/the-grain-dilemma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Effectively Use Sharing Links in Automated Emails to Customers</title>
		<link>http://labs.kortina.net/2009/08/19/how-to-effectively-use-sharing-links-in-automated-emails-to-customers/</link>
		<comments>http://labs.kortina.net/2009/08/19/how-to-effectively-use-sharing-links-in-automated-emails-to-customers/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 20:14:32 +0000</pubDate>
		<dc:creator>kortina</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[product]]></category>

		<guid isPermaLink="false">http://labs.kortina.net/?p=368</guid>
		<description><![CDATA[Toms Shoes uses share links in receipt emails: Facebook and Twitter links should be in EVERY receipt for EVERYTHING you buy:
The call to share the deal with &#8220;your family and friends&#8221; is also deft.


Possibly related posts:Send To Tumblr And Track With Bitly Google Reader Custom LinkI Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google [...]


Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/07/26/i-want-read-flare-plugins-for-sharing-in-google-reader/' rel='bookmark' title='Permanent Link: I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader'>I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader</a></li><li><a href='http://labs.kortina.net/2009/07/11/understanding-direct-traffic-as-traffic-from-shared-links/' rel='bookmark' title='Permanent Link: Understanding Direct Traffic as Traffic from Shared Links'>Understanding Direct Traffic as Traffic from Shared Links</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Toms Shoes uses share links in receipt emails: Facebook and Twitter links should be in EVERY receipt for EVERYTHING you buy:</p>
<div id="attachment_369" class="wp-caption alignnone" style="width: 310px"><a href="http://labs.kortina.net/files/2009/08/2009-08-17_2055-1.png"><img class="size-medium wp-image-369" src="http://labs.kortina.net/files/2009/08/2009-08-17_2055-1-300x234.png" alt="Placement and Language Tips for Share Links in Receipts" width="300" height="234" /></a><p class="wp-caption-text">Placement and Language Tips for Share Links in Receipts</p></div>
<p>The call to share the deal with &#8220;your family and friends&#8221; is also deft.</p>
<img src="http://labs.kortina.net/?ak_action=api_record_view&id=368&type=feed" alt="" />

<p>Possibly related posts:<ol><li><a href='http://labs.kortina.net/2009/08/13/send-to-tumblr-and-track-with-bitly-google-reader-custom-link/' rel='bookmark' title='Permanent Link: Send To Tumblr And Track With Bitly Google Reader Custom Link'>Send To Tumblr And Track With Bitly Google Reader Custom Link</a></li><li><a href='http://labs.kortina.net/2009/07/26/i-want-read-flare-plugins-for-sharing-in-google-reader/' rel='bookmark' title='Permanent Link: I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader'>I Want &#8220;Read Flare&#8221; &#8212; Plugins for Sharing in Google Reader</a></li><li><a href='http://labs.kortina.net/2009/07/11/understanding-direct-traffic-as-traffic-from-shared-links/' rel='bookmark' title='Permanent Link: Understanding Direct Traffic as Traffic from Shared Links'>Understanding Direct Traffic as Traffic from Shared Links</a></li></ol></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=PrQpljBPpBc:7KiuMLq6488:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/kortina-essays?i=PrQpljBPpBc:7KiuMLq6488:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/kortina-essays?a=PrQpljBPpBc:7KiuMLq6488:c-S6u7MTCTE"><img src="http://feeds.feedburner.com/~ff/kortina-essays?d=c-S6u7MTCTE" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://labs.kortina.net/2009/08/19/how-to-effectively-use-sharing-links-in-automated-emails-to-customers/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
