<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Standard Deviations</title>
	<atom:link href="http://parand.com/say/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://parand.com/say</link>
	<description>Parand Tony Darugar: A Cruel and Petty Dictator</description>
	<lastBuildDate>Wed, 11 Jan 2012 20:33:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Dynamically Import Python Modules</title>
		<link>http://parand.com/say/index.php/2012/01/11/how-to-dynamically-import-python-modules/</link>
		<comments>http://parand.com/say/index.php/2012/01/11/how-to-dynamically-import-python-modules/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 20:33:20 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1165</guid>
		<description><![CDATA[Here&#8217;s how you import a python module dynamically: say your module is called &#8220;mysettings&#8221; and it&#8217;s in the directory &#8220;config&#8221;. Make sure you have a __init__.py in your &#8220;config&#8221; directory and use:

mysettings = __import__("config.mysettings", fromlist=["config"])



This is equivalent to

from config import mysetings

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how you import a python module dynamically: say your module is called &#8220;mysettings&#8221; and it&#8217;s in the directory &#8220;config&#8221;. Make sure you have a <code>__init__.py</code> in your &#8220;config&#8221; directory and use:</p>
<pre><code lang="python">
mysettings = __import__("config.mysettings", fromlist=["config"])

</code></pre>
<p>
This is equivalent to</p>
<pre><code lang="python">
from config import mysetings
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2012/01/11/how-to-dynamically-import-python-modules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Scan Multiple Pages Into a Single PDF on OS X</title>
		<link>http://parand.com/say/index.php/2011/11/15/how-to-scan-multiple-pages-into-a-single-pdf-on-os-x/</link>
		<comments>http://parand.com/say/index.php/2011/11/15/how-to-scan-multiple-pages-into-a-single-pdf-on-os-x/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 00:26:38 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1161</guid>
		<description><![CDATA[My new printer has a document feeder which makes scanning of multiple pages easy, but I didn&#8217;t know how to kick off the scan on OS X. Turns out it&#8217;s quite easy:

Open the OS X Preview app
Go to the File menu and select Import From Scanner
Select your printer
Look for the &#8220;Format&#8221; option on the right [...]]]></description>
			<content:encoded><![CDATA[<p>My new printer has a document feeder which makes scanning of multiple pages easy, but I didn&#8217;t know how to kick off the scan on OS X. Turns out it&#8217;s quite easy:</p>
<ul>
<li>Open the OS X Preview app</li>
<li>Go to the File menu and select Import From Scanner</li>
<li>Select your printer</li>
<li>Look for the &#8220;Format&#8221; option on the right hand page and set it to PDF</li>
<li>Select the &#8220;Create single document&#8221; option</li>
<li>Hit the Scan button</li>
</ul>
<p>This will produce a single PDF file with all of the pages of your document, scanned into the location of your choice.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2011/11/15/how-to-scan-multiple-pages-into-a-single-pdf-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titanium Studio: How To View Android Log Messages</title>
		<link>http://parand.com/say/index.php/2011/08/15/titanium-studio-how-to-view-android-log-messages/</link>
		<comments>http://parand.com/say/index.php/2011/08/15/titanium-studio-how-to-view-android-log-messages/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 22:35:10 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1154</guid>
		<description><![CDATA[Apparently with Titanium Studio it&#8217;s not possible to see log messages in the Titanium console.
Here&#8217;s how you see your log messages:
adb logcat &#124; grep "TiAPI"

adb is in the tools directory of your Android sdk.
]]></description>
			<content:encoded><![CDATA[<p>Apparently with Titanium Studio it&#8217;s not possible to see log messages in the Titanium console.</p>
<p>Here&#8217;s how you see your log messages:</p>
<pre><code>adb logcat | grep "TiAPI"
</code></pre>
<p>adb is in the tools directory of your Android sdk.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2011/08/15/titanium-studio-how-to-view-android-log-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to view cookies in Chrome</title>
		<link>http://parand.com/say/index.php/2011/07/27/easy-way-to-view-cookies-in-chrome/</link>
		<comments>http://parand.com/say/index.php/2011/07/27/easy-way-to-view-cookies-in-chrome/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 21:32:31 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1152</guid>
		<description><![CDATA[Here&#8217;s an easy way to see the cookies for the current site in Chrome:

javascript:void(document.cookie=prompt(document.cookie,document.cookie));

Via stackoveflow.
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an easy way to see the cookies for the current site in Chrome:</p>
<pre><code>
javascript:void(document.cookie=prompt(document.cookie,document.cookie));
</code></pre>
<p>Via <a href="http://stackoverflow.com/questions/913296/how-to-see-cookie-information-of-chrome-browser" target="_blank">stackoveflow</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2011/07/27/easy-way-to-view-cookies-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django: Checking If A User Is In A Group</title>
		<link>http://parand.com/say/index.php/2011/06/16/django-checking-if-a-user-is-in-a-group/</link>
		<comments>http://parand.com/say/index.php/2011/06/16/django-checking-if-a-user-is-in-a-group/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 17:59:11 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1148</guid>
		<description><![CDATA[Adding to my earlier post on the django permission system:
You can check if a user is part of a group using this simple snippet. It will allow you to check if a user is in a group with the following template syntax:

{% if user&#124;in_group:"Friends,Enemies" %}

]]></description>
			<content:encoded><![CDATA[<p>Adding to my earlier post on the <a href="http://parand.com/say/index.php/2010/02/19/django-using-the-permission-system/">django permission system</a>:</p>
<p>You can check if a user is part of a group using <a href="http://djangosnippets.org/snippets/847/">this simple snippet</a>. It will allow you to check if a user is in a group with the following template syntax:</p>
<pre><code>
{% if user|in_group:"Friends,Enemies" %}
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2011/06/16/django-checking-if-a-user-is-in-a-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uniforms</title>
		<link>http://parand.com/say/index.php/2011/03/04/uniforms/</link>
		<comments>http://parand.com/say/index.php/2011/03/04/uniforms/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 00:18:09 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Etc]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1138</guid>
		<description><![CDATA[I went to a school that required uniforms (private school in England). We were forced to be uniform.
This afternoon driving by the high school near my house I was amused to see uniforms everywhere &#8211; here a patch of girls all wearing the same types of shorts, with hair pulled back, there a group of [...]]]></description>
			<content:encoded><![CDATA[<p>I went to a school that required uniforms (private school in England). We were forced to be uniform.</p>
<p>This afternoon driving by the high school near my house I was amused to see uniforms everywhere &#8211; here a patch of girls all wearing the same types of shorts, with hair pulled back, there a group of emo kids all wearing shades of near identical clothes.</p>
<p>It&#8217;s lovely. We all need to be different in our uniform ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2011/03/04/uniforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future of Work and New Dial Tones</title>
		<link>http://parand.com/say/index.php/2010/12/08/future-of-work-and-new-dialtones/</link>
		<comments>http://parand.com/say/index.php/2010/12/08/future-of-work-and-new-dialtones/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 19:27:56 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Startup]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1105</guid>
		<description><![CDATA[My friend Paul Kedrosky&#8217;s post on one of his main investment theses, the application of currently consumer oriented technologies to business (DropBox, Twitter, FaceBook, Yelp, &#8230;), got me thinking about how the future of work will look.

I&#8217;ve made a career of working far from where I live. I&#8217;ve generally considered this a significant pain &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://paul.kedrosky.com/archives/2010/12/the_future_of_w.html">Paul Kedrosky&#8217;s post on one of his main investment theses</a>, the application of currently consumer oriented technologies to business (DropBox, Twitter, FaceBook, Yelp, &#8230;), got me thinking about how the future of work will look.</p>
<p><a href="http://www.darkroastedblend.com/2008/02/coolest-retro-devices.html"><img style="margin: 0px; border: 5px solid black;align:left" title="Future of communication" src="http://parand.com/say/misc/retro-phone.jpg" alt="" width="171" height="171" /></a></p>
<p>I&#8217;ve made a career of working far from where I live. I&#8217;ve generally considered this a significant pain &#8211; there are disadvantages and inefficiencies in being geographically separated from coworkers. Hence I&#8217;ve endured horrible commutes and frequent travel.</p>
<p>Lately, however, I&#8217;ve been reconsidering. My office is about 30 minutes from my house, but I end up not going in more and more these days. The 1 hour roundtrip is simply wasted time, and the traditional 9-5 is an artificial constraint on both work and non-work activities.</p>
<p>The turning point, not surprisingly, was technology driven &#8211; earlier this year I was working on a shared presentation and document with 2 colleagues. We met in person twice, and the third time we used Google Wave (rip) for shared document editing and iChat for voice and video communication.</p>
<p>I was shocked at how much more efficient the third session was. I despise video calls, but in this case it was background, mainly to see who was paying attention and who was tuned out. The shared document with real-time edits worked fabulously well &#8211; one could write stream of consciousness thoughts, and before finishing the paragraph have his work edited and polished by the other two.</p>
<p>These days I find my most efficient working relationships require little in-person interaction. What they do require is a host of enabling technologies we take for granted.</p>
<p>I&#8217;m still a huge believer in the value of in-person interactions &#8211; the best ideas generally pop up over lunch or other informal settings. But in-person interaction doesn&#8217;t require the traditional office setting and trappings.</p>
<p>The work style adopted by startups today will make its way to large business, and the services that are the lifeline of that style will become the dial-tone of business. As Paul points out this will drive the creation of a number of significant companies to provide those dial-tones. And with any luck I&#8217;ll have an opportunity to invest if a few of them <img src='http://parand.com/say/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2010/12/08/future-of-work-and-new-dialtones/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Generating static html from markdown in python</title>
		<link>http://parand.com/say/index.php/2010/11/29/generating-static-html-from-markdown-in-python/</link>
		<comments>http://parand.com/say/index.php/2010/11/29/generating-static-html-from-markdown-in-python/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 22:02:35 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1102</guid>
		<description><![CDATA[Note to self, for future reference.

Markdown reference

Generating static html:

import markdown2
file('classification.html','w').write( markdown2.markdown_path('classification.md', extras=["code-friendly"]) )

]]></description>
			<content:encoded><![CDATA[<p>Note to self, for future reference.</p>
<ul>
<li><a href="http://markdoc.org/ref/markup">Markdown reference</a></li>
</ul>
<p>Generating static html:</p>
<pre><code>
import markdown2
file('classification.html','w').write( markdown2.markdown_path('classification.md', extras=["code-friendly"]) )
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2010/11/29/generating-static-html-from-markdown-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retention Bonuses Don&#8217;t Work</title>
		<link>http://parand.com/say/index.php/2010/11/19/retention-bonuses-dont-work/</link>
		<comments>http://parand.com/say/index.php/2010/11/19/retention-bonuses-dont-work/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 02:14:22 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1100</guid>
		<description><![CDATA[Retention bonuses don&#8217;t work because they only motivate presence, not contribution.
]]></description>
			<content:encoded><![CDATA[<p>Retention bonuses don&#8217;t work because they only motivate presence, not contribution.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2010/11/19/retention-bonuses-dont-work/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mo.com Interviews Me</title>
		<link>http://parand.com/say/index.php/2010/11/08/mo-com-interviews-me/</link>
		<comments>http://parand.com/say/index.php/2010/11/08/mo-com-interviews-me/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 17:24:18 +0000</pubDate>
		<dc:creator>Parand</dc:creator>
				<category><![CDATA[Startup]]></category>
		<category><![CDATA[VC]]></category>

		<guid isPermaLink="false">http://parand.com/say/?p=1098</guid>
		<description><![CDATA[The lovely folks at mo.com recently asked me about my experiences at Yahoo, the background and business model for Xpenser, and thoughts on funding and raising VC money. The interview has been published here, drop by and take a gander.
]]></description>
			<content:encoded><![CDATA[<p>The lovely folks at mo.com recently asked me about my experiences at Yahoo, the background and business model for Xpenser, and thoughts on funding and raising VC money. The interview has been <a href="http://www.mo.com/parand-darugar">published here</a>, drop by and take a gander.</p>
]]></content:encoded>
			<wfw:commentRss>http://parand.com/say/index.php/2010/11/08/mo-com-interviews-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

