<?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>Virtuous cycle &#187; Personal productivity</title>
	<atom:link href="http://www.owczarek.com.pl/blog/category/personal-productivity/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.owczarek.com.pl/blog</link>
	<description>Bartlomiej Owczarek weblog</description>
	<lastBuildDate>Mon, 10 Jan 2011 13:52:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Automating MS Office for Mac: editing and pasting</title>
		<link>http://www.owczarek.com.pl/blog/2009/11/11/automating-ms-office-for-mac-editing-and-pasting/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/11/11/automating-ms-office-for-mac-editing-and-pasting/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 01:11:20 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Personal productivity]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=543</guid>
		<description><![CDATA[I&#8217;m getting used to doing serious work on MS Office for Mac, and while it&#8217;s still not close to Windows experience, I believe the work is reasonably productive. But there were few things which I was really missing: F2 shortcut to edit cell / text field in Excel and Powerpoint Keyboard shortcut to paste as [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting used to doing serious work on MS Office for Mac, and while it&#8217;s still not close to Windows experience, I believe the work is reasonably productive.</p>
<p>But there were few things which I was really missing:</p>
<ul>
<li>F2 shortcut to edit cell / text field in Excel and Powerpoint
</li>
<li>Keyboard shortcut to paste as unformatted text in Excel and Powerpoint</li>
</ul>
<p>Solutions that I used don&#8217;t seem very elegant (basically making Applescript emulate clicks and key strokes), but at least it works for me and makes me more productive, so I share it below.<span id="more-543"></span></p>
<p><strong>F2 to edit cell in Excel</strong></p>
<p>On Mac Excel you are supposed to use Ctrl-U to go into cell edit mode, which for me is much worse than just pressing F2.</p>
<p>It didn&#8217;t seem possible to remap the shortcut, so I used app called <a href="http://www.manytricks.com/butler/">Butler</a> to do it. If I remember correctly the order of steps in Butler would be the following:</p>
<ul>
<li>Add smart item -> keystrokes</li>
<li>In Keys tab, press Ctrl-U</li>
<li>In Triggers tab, in Hot Key field press F2</li>
<li>In same triggers tab, add &#8220;Microsoft Excel&#8221; to &#8220;only&#8221; exceptions, so the shortcut is limited to Excel</li>
</ul>
<p><strong>Paste special (as values) in Excel</strong></p>
<p>The goal is to have one shortcut (like Ctrl-v) to paste copied cells as values.</p>
<p>The only way I found so far is to use Applescript and assign it to keyboard shortcut in Butler. </p>
<p>Important: for this and following scripts to work, you need to activate System Preferences > Universal Access > Seeing > &#8220;Enable access for assistive devices&#8221; checkbox.</p>
<p>The script:</p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft Excel&quot;</span>
	<span style="color: #0066ff;">activate</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
&nbsp;
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;System Events&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> process <span style="color: #009900;">&quot;Excel&quot;</span>
		click menu <span style="color: #0066ff;">item</span> <span style="color: #009900;">&quot;Paste Special...&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #0066ff;">item</span> <span style="color: #009900;">&quot;Edit&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #000000;">1</span>
&nbsp;
		click radio button <span style="color: #000000;">3</span> <span style="color: #ff0033; font-weight: bold;">of</span> radio group <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">window</span> <span style="color: #009900;">&quot;Paste Special&quot;</span>
&nbsp;
		click <span style="color: #ff0033;">the</span> button <span style="color: #009900;">&quot;OK&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">window</span> <span style="color: #009900;">&quot;Paste Special&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></pre></div></div>

<p>In Butler you add smart item Applescript > Applescript, paste code in Source Code tab, and assign a shortcut in Options tab, similar to previous case.</p>
<p><strong>F2 to edit text in Powerpoint</strong></p>
<p>The goal is for F2 to enter text edit mode of active shape, with all current text selected.</p>
<p>I used the following Applescript:</p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft PowerPoint&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> active presentation
		<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0066ff;">count</span> shapes <span style="color: #ff0033; font-weight: bold;">of</span> shape range <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">selection</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">document</span> <span style="color: #0066ff;">window</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">not</span> <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> scenario <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;no selection&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>placeholder type <span style="color: #ff0033; font-weight: bold;">of</span> shape <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> shape range <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">selection</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">document</span> <span style="color: #0066ff;">window</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">is</span> placeholder type object placeholder <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> scenario <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;Placeholder Object&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> scenario <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;Text Object&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
&nbsp;
<span style="color: #ff0033; font-weight: bold;">if</span> scenario <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">not</span> <span style="color: #009900;">&quot;no selection&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft PowerPoint&quot;</span>
		<span style="color: #0066ff;">activate</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;System Events&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">tell</span> process <span style="color: #009900;">&quot;PowerPoint&quot;</span>
			click menu <span style="color: #0066ff;">item</span> scenario <span style="color: #ff0033; font-weight: bold;">of</span> menu <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #0066ff;">item</span> <span style="color: #009900;">&quot;Edit&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #000000;">1</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span></pre></div></div>

<p>Assigned it in Butler to F2, similar to previous case.</p>
<p><strong>Paste special as unformatted text in Powerpoint</strong></p>
<p>Applescript again:</p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Microsoft PowerPoint&quot;</span>
	<span style="color: #0066ff;">activate</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
&nbsp;
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;System Events&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> process <span style="color: #009900;">&quot;PowerPoint&quot;</span>
		click menu <span style="color: #0066ff;">item</span> <span style="color: #009900;">&quot;Paste Special...&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #0066ff;">item</span> <span style="color: #009900;">&quot;Edit&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> menu bar <span style="color: #000000;">1</span>
&nbsp;
		keystroke <span style="color: #0066ff;">tab</span>
		keystroke <span style="color: #0066ff;">tab</span>
		keystroke <span style="color: #0066ff;">tab</span>
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> a_row <span style="color: #ff0033; font-weight: bold;">in</span> rows <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">outline</span> <span style="color: #ff0033; font-weight: bold;">of</span> scroll area <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">window</span> <span style="color: #009900;">&quot;Paste Special&quot;</span>
			<span style="color: #ff0033; font-weight: bold;">if</span> value <span style="color: #ff0033; font-weight: bold;">of</span> static <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">of</span> a_row <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">not</span> <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#123;</span><span style="color: #000000;">&#123;</span><span style="color: #009900;">&quot;Unformatted Text&quot;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#125;</span><span style="color: #000000;">&#125;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
				<span style="color: #808080; font-style: italic;">--click static text of a_row</span>
				keystroke <span style="color: #000000;">&#40;</span>ASCII character <span style="color: #000000;">31</span><span style="color: #000000;">&#41;</span>
			<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span>
&nbsp;
		click <span style="color: #ff0033;">the</span> button <span style="color: #009900;">&quot;OK&quot;</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">window</span> <span style="color: #009900;">&quot;Paste Special&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></pre></div></div>

<p>Assign to Ctrl-V in Butler as previously.</p>
<p>Yes, it seems pretty long way round, but that&#8217;s my best shot for now. I will update here if I find any easier way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/11/11/automating-ms-office-for-mac-editing-and-pasting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3D map visualizations of data from presidential inauguration</title>
		<link>http://www.owczarek.com.pl/blog/2009/06/13/3d-map-visualizations-of-data-from-presidential-inauguration/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/06/13/3d-map-visualizations-of-data-from-presidential-inauguration/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 16:24:01 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Market research]]></category>
		<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=524</guid>
		<description><![CDATA[Some impressive map overlays (phone calls data during Obama inauguration): http://senseable.mit.edu/obama/index.html I find visualizing data to be such a cool topic &#8211; which can easily be seen from the number of posts related to statistics on Ogito blog, like this one. But there is often a gap between aesthetics and usefulness of advanced visuals. To [...]]]></description>
			<content:encoded><![CDATA[<p>Some impressive map overlays (phone calls data during Obama inauguration):</p>
<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2009/06/the-city-logo.jpg" alt="" title="the-city-logo" width="500" height="109" class="alignnone size-full wp-image-523" /></p>
<p><a href="http://senseable.mit.edu/obama/index.html">http://senseable.mit.edu/obama/index.html</a></p>
<p>I find visualizing data to be such a cool topic &#8211; which can easily be seen from the number of posts related to statistics on Ogito blog, like <a href="http://blog.ogito.eu/2009/06/08/statystyki-w-warszawie-cd/">this one</a>.</p>
<p>But there is often a gap between aesthetics and usefulness of advanced visuals.</p>
<p>To be useful we typically require easy access to lots of context, to be able to draw any conclusions from the data, for example:</p>
<ul>
<li>ability to drill down &#8211; investigate what contributes to the variable value</li>
<li>ability to compare variable level through time</li>
<li>ability to compare variable level in case of different objects (e.g. competitors, regions, etc.)</li>
</ul>
<p>(Ogito <a href="http://www.ogito.eu/pl/miasta/warszawa/stats">statistics for cities</a> &#8212; registration required to see the charts &#8212; use simple Google Charts and tables with links to underlying sets of objects, and this is already enough to get the basic understanding outlined above) </p>
<p>Sometimes complex visualizations add difficulty to perform these basic operations rather than reduce it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/06/13/3d-map-visualizations-of-data-from-presidential-inauguration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Must be a better way to do business process documentation</title>
		<link>http://www.owczarek.com.pl/blog/2009/05/19/must-be-a-better-way-to-do-business-process-documentation/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/05/19/must-be-a-better-way-to-do-business-process-documentation/#comments</comments>
		<pubDate>Tue, 19 May 2009 15:37:01 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[goldenberry]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=499</guid>
		<description><![CDATA[The last project was all about process documentation. To be honest, these are not exactly my favorite kinds of projects, mostly because they can be easily associated with long hours of unthankful, tedious work. Why tedious? Well, one reason is that process documentation tends to have large volume, while efforts required to produce it are [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.owczarek.com.pl/blog/2009/05/19/just-finished-my-first-commercial-project/">last project</a> was all about process documentation. To be honest, these are not exactly my favorite kinds of projects, mostly because they can be easily associated with long hours of unthankful, tedious work.</p>
<p>Why tedious? Well, one reason is that process documentation tends to have large volume, while efforts required to produce it are mostly not automated. </p>
<p><strong>I was wondering if there is any simple way to streamline this kind of jobs, aside from hiring more analysts or investing in a some BPM software package, which would probably be an overkill for most of the projects I did.</strong></p>
<p>Making any amendments to the processes is especially pita, due to all the custom diagrams interlinked with detailed textual content.</p>
<p>(that is if you use diagrams + text &#8211; sometimes just slides are used, especially for high-level documents &#8211; I think text is much more flexible if you need to accommodate more information)</p>
<p>While in fact, amending the design based on remarks from business users is the core of process-related projects.</p>
<p>Process-related projects shouldn&#8217;t be such a chore &#8211; if you take away all the time wasted with Microsoft Office, these projects allow to get the best idea of how the business really works.  </p>
<p>Looking back, projects involving deep understanding of processes provide most powerful references today.</p>
<p>The kind of customized process work that is done during relatively short strategy project shouldn&#8217;t be mistaken with implementing whole &#8220;process-driven&#8221; approaches in the company, for which elaborate <strong>business process management</strong> IT solutions exist.</p>
<p>The idea is to store process designs in central repository, where they can be easily versioned, accessed by large groups of employees (which can be assigned different access rights), monitored, and modified.</p>
<p>Truth is &#8211; maybe it&#8217;s because it&#8217;s Eastern Europe and we are backwards &#8211; I never saw any of these system in real world use at any of the clients. Perhaps they are more popular in production company  than the financial sector. I remember one Russian client mentioning before the project started that they had one, and that deliverables (processes to a large extent) would eventually have to be integrated in it somehow, but it was the only time the topic emerged.</p>
<p>I think there are plenty of good reasons for such solutions to have difficulties in real life adoption.</p>
<p>Enabling new users (like external consultants) to access the system requires at least creating new logins, in worst case it might require to buy additional licenses. Hardly easier that just emailing process documents.</p>
<p>People are used to work with Word or Powerpoint documents, but might need time to master unfamiliar interface of the process application.</p>
<p>Even though usually it should be possible to export process information in format like PDF, it might not be possible to export in format that is editable, so ad-hoc participants can contribute remarks.</p>
<p>The reason are many and truly converting organization to be managed around a consistent BPM system must be a daunting task. And partial implementations often leave orphaned systems that are not used.</p>
<p><strong>For now, I was rather thinking if there was any way to improve the way stand-alone process documentation is created, rather than an end-to-end system.</strong><br />
<span id="more-499"></span><br />
Starting with drawing process flow diagrams, for example. Which, for now, may take place in Visio, or, since many clients may not have Visio, in Powerpoint.</p>
<p>I started to look around if there are any online services allowing to create process diagrams and I stumbled upon <a href="http://www.lovelycharts.com/">LovelyCharts</a>, which are really lovely.</p>
<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2009/05/lcharts-300x213.png" alt="" title="LovelyCharts" width="300" height="213" class="entry-img-center" /></p>
<p>The interface is friendly and simplistic (app is created in Adobe Air, for the record).</p>
<p>Basic process components are all there (more than I use in fact, I believe processes are mostly tools to communicate and adding symbols that require legend to understand doesn&#8217;t facilitate communication).</p>
<p>You can just drag components and the app takes care of aligning the arrows etc., unlike Microsoft Office.</p>
<p>Unfortunately, one key feature is missing as far as actual process documentation is concerned, which is ability to create swimlanes diagrams, to illustrate roles of many actors.</p>
<p>Also, currently LC can export diagrams to images or PDF, but it would be optimal if it could export to powerpoint files, so that it can be delivered to the client in editable format.</p>
<p><strong>Having a tool like LC to quickly visualize processes and amend them effortlessly would be just first step.</strong></p>
<p>Diagrams are accompanied by text documents detailing each step (at least the documentation style I use), and having diagram changed requires to manually adjust all the detailed descriptions.</p>
<p>I could image a higher level application interfacing with visualization tool like LC, allowing to automatically number the steps, add description or technical details to each one, and export both diagrams and text into one word document with one click.</p>
<p>Just an idea. Note that I look at it from strategy consulting perspective (hence the emphasis on stand-alone process documentation, design-and-deliver), and I fully expect, for example, ISO consultants to have possibly quite different needs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/05/19/must-be-a-better-way-to-do-business-process-documentation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50% of ants are slackers?</title>
		<link>http://www.owczarek.com.pl/blog/2009/04/29/50-of-ants-are-slackers/</link>
		<comments>http://www.owczarek.com.pl/blog/2009/04/29/50-of-ants-are-slackers/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:40:35 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Economy]]></category>
		<category><![CDATA[Personal productivity]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=452</guid>
		<description><![CDATA[Just read an article saying that after closer analysis, it turns out that half of supposedly labor-loving ant population may actually not do a thing: Dr. Dornhaus found that fast ants took one to five minutes to perform a task &#8211; collecting a piece of food, fetching a sand-grain stone to build a wall, transporting [...]]]></description>
			<content:encoded><![CDATA[<p>Just read an <a href="http://www.nytimes.com/2009/04/28/science/28prof.html?ref=science">article</a> saying that after closer analysis, it turns out that half of supposedly labor-loving ant population may actually not do a thing:</p>
<blockquote><p>Dr. Dornhaus found that fast ants took one to five minutes to perform a task &#8211; collecting a piece of food, fetching a sand-grain stone to build a wall, transporting a brood item &#8211; while slow ants took more than an hour, and sometimes two. And she discovered that about 50 percent of the other ants do not do any work at all. <strong>In fact, small colonies may sometimes rely on a single hyperactive overachiever.</strong></p></blockquote>
<p>Quite shocking and may undermine some &#8220;hard working like an ant&#8221; proverbs.</p>
<p>Thoughts:</p>
<p>Ants just pretended to work and relied on their reputation for so long.</p>
<p>Or maybe: ants who appear not to do any work in fact realize some very important but unrecognizable to us function. Like social media experts.</p>
<p>Sometimes only writing a post forces me to identify why something I read seems significant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2009/04/29/50-of-ants-are-slackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup your Gmail before it&#8217;s too late</title>
		<link>http://www.owczarek.com.pl/blog/2008/09/21/backup-your-gmail-before-its-too-late/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/09/21/backup-your-gmail-before-its-too-late/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 20:28:37 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=371</guid>
		<description><![CDATA[At last I got concerned about possibility of losing access to my primary Gmail account &#8211; and with it to all my mail &#8211; sufficient enough that I decided to make an effort and learn how to make an offline copy of my mailbox. First I found this tutorial on how to setup a daily [...]]]></description>
			<content:encoded><![CDATA[<p>At last I got concerned about possibility of losing access to my primary Gmail account &#8211; and with it to all my mail &#8211; sufficient enough that I decided to make an effort and learn how to make an offline copy of my mailbox.</p>
<p>First I found this <a href="http://georgedonnelly.com/unix/how-to-quickly-set-up-a-daily-backup-of-your-gmail-account">tutorial</a> on how to setup a daily backup routine from the command line.</p>
<p>The solution is fancy enough, but I thought, why not simply use Apple&#8217;s Mail app to get all the mail on the desktop? </p>
<p>Here we go.</p>
<p><img src="http://www.owczarek.com.pl/blog/wp-content/uploads/2008/09/apple-mail.png" alt="" title="Apple Mail.app" width="177" height="101" class="entry-img-center" /> </p>
<p>I was following instructions from <a href="http://email.about.com/od/macosxmailtips/qt/et_gmailosxmail.htm">here</a> and <a href="http://5thirtyone.com/archives/862">here</a>.</p>
<p>Synchronization seems to work all right, so aside from backup, now I can use Mail app to work on email offline.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/09/21/backup-your-gmail-before-its-too-late/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skills no guarantee of success, but important</title>
		<link>http://www.owczarek.com.pl/blog/2008/08/02/skills-no-guarantee-of-success-but-important/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/08/02/skills-no-guarantee-of-success-but-important/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 21:03:27 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/2008/08/02/skills-no-guarantee-of-success-but-important/</guid>
		<description><![CDATA[Lifehacker&#8217;s list of skills important to succeed: Public speaking Writing Self-management Networking Critical thinking Decision-making Math Research Relaxation Basic accounting I don&#8217;t really agree that skills are most critical factors for success (vision is), but surely many of these are important. The ones I personally plan to work on in nearest future are relaxation and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lifehack.org/articles/lifestyle/10-skills-you-need-to-succeed-at-almost-anything.html">Lifehacker&#8217;s list of skills important to succeed</a>:</p>
<ol>
<li>Public speaking</li>
<li>Writing</li>
<li>Self-management</li>
<li>Networking</li>
<li>Critical thinking</li>
<li>Decision-making</li>
<li>Math</li>
<li>Research</li>
<li>Relaxation</li>
<li>Basic accounting</li>
</ol>
<p>I don&#8217;t really agree that skills are most critical factors for success (vision is), but surely many of these are important.</p>
<p>The ones I personally plan to work on in nearest future are relaxation and self-management.</p>
<p>From September I will have no choice but to master &#8220;basic accounting&#8221;, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/08/02/skills-no-guarantee-of-success-but-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manage scary issues on the (consulting) project</title>
		<link>http://www.owczarek.com.pl/blog/2008/07/20/manage-scary-issues-on-the-consulting-project/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/07/20/manage-scary-issues-on-the-consulting-project/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 17:40:49 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Consulting]]></category>
		<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[project management]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=344</guid>
		<description><![CDATA[I just followed Google Reader&#8217;s recommendation to Lost Garden. It&#8217;s a blog about game development. Some time ago I was interested in the topic, but I consider it frozen for a while, so I didn&#8217;t expect to find anything of immediate interest on this blog. But this article proved I was wrong: In every project, [...]]]></description>
			<content:encoded><![CDATA[<p>I just followed Google Reader&#8217;s recommendation to <a href="http://lostgarden.com/">Lost Garden</a>. It&#8217;s a blog about game development. Some time ago I was interested in the topic, but I consider it frozen for a while, so I didn&#8217;t expect to find anything of immediate interest on this blog.</p>
<p>But <a href="http://lostgarden.com/2008/05/scary-list.html">this article</a> proved I was wrong:</p>
<blockquote><p>In every project, there are issues that that frighten the bejesus out of the team. They are so frightening that no one wants to talk about them publicly. The schedule might be impossible. There might be the lurking suspicion that Management does not believe in the project. More commonly, there is a major technical flaw that no one is handling.</p></blockquote>
<p>The article relates to game development, but the issue is relevant for any other project. The urge to keep sensitive issues under the carpet is familiar enough. </p>
<p>Here are some steps I recall from the latest consulting project that helped in management of the &#8220;scary&#8221; stuff:</p>
<ul>
<li>Carefully store and process remarks sent by the client (there is good chance that sensitive issues are among them): store all remarks in one document, color-code them to distinguish difficult ones, dedicate a meeting with a client for walking through the remarks to ensure that they are understood properly and agree the solution</li>
<li>When sensitive issue is identified, create dedicated approach to solve/mitigate it: brainstorm possible solutions, create issue tree to structure the thinking, identify constraints related to the issue (e.g. define most pessimistic scenario and start from there)</li>
<li>Dedicate resources to follow the agreed approach to resolve/mitigate the issue</li>
</ul>
<p>Some issues may really seem scary, but it turned out that solving them (or at least addressing them and mitigating related risk as far as it was possible) raised client&#8217;s confidence in the overall direction and justified all the effort that went into sorting them out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/07/20/manage-scary-issues-on-the-consulting-project/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ideal of personality</title>
		<link>http://www.owczarek.com.pl/blog/2008/06/15/ideal-of-personality/</link>
		<comments>http://www.owczarek.com.pl/blog/2008/06/15/ideal-of-personality/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 09:16:27 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/?p=329</guid>
		<description><![CDATA[I came upon this, in an article by Andrew Sullivan: The playwright Richard Foreman, cited by Carr, eulogised a culture he once felt at home in thus: &#8220;I come from a tradition of western culture, in which the ideal (my ideal) was the complex, dense and &#8216;cathedral-like&#8217; structure of the highly educated and articulate personality [...]]]></description>
			<content:encoded><![CDATA[<p>I came upon this, in an <a href="http://www.timesonline.co.uk/tol/comment/columnists/andrew_sullivan/article4136782.ece">article</a> by Andrew Sullivan:</p>
<blockquote><p>The playwright Richard Foreman, cited by Carr, eulogised a culture he once felt at home in thus: &#8220;I come from a tradition of western culture, in which the ideal (my ideal) was the complex, dense and &#8216;cathedral-like&#8217; structure of the highly educated and articulate personality &#8211; a man or woman who carried inside themselves a personally constructed and unique version of the entire heritage of the West.</p>
<p>&#8220;[Now] I see within us all (myself included) the replacement of complex inner density with a new kind of self &#8211; evolving under the pressure of information overload and the technology of the &#8216;instantly available&#8217;.&#8221;</p></blockquote>
<p>The article adds to the discussion about how the web is changing the way we think. With ever shorter attention spans, are we losing the ability to think deeply?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2008/06/15/ideal-of-personality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distraction free writing</title>
		<link>http://www.owczarek.com.pl/blog/2007/10/27/distraction-free-writing/</link>
		<comments>http://www.owczarek.com.pl/blog/2007/10/27/distraction-free-writing/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 18:03:06 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/2007/10/27/distraction-free-writing/</guid>
		<description><![CDATA[Article by Michal Szota (devoted to complaints about Apple&#8217;s Leopard) mentioned WriteRoom, word processor for Macs. The main feature of this program is its ability to open full screen and hide all the elements except for the text itself. I love the idea. I wanted something like this for some time already. I think idea [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.technoblog.pl/blog/1,84946,4614803.html">Article</a> by Michal Szota (devoted to complaints about Apple&#8217;s Leopard) mentioned <a href="http://hogbaysoftware.com/products/writeroom">WriteRoom</a>, word processor for Macs.</p>
<p>The main feature of this program is its ability to open full screen and hide all the elements except for the text itself.</p>
<p>I love the idea. I wanted something like this for some time already.</p>
<p>I think idea of removing distractions will be a big topic for the future.</p>
<p>Even now I would appreciate to have a magic key which would make all the clutter disappear and leave visible only the thing I am working on. Preferably, it would block alt-tab combination and require a password for coming out of the isolation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2007/10/27/distraction-free-writing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>First time with lobster</title>
		<link>http://www.owczarek.com.pl/blog/2006/12/06/first-time-with-lobster/</link>
		<comments>http://www.owczarek.com.pl/blog/2006/12/06/first-time-with-lobster/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 09:20:32 +0000</pubDate>
		<dc:creator>BOwczarek</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Personal productivity]]></category>
		<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://www.owczarek.com.pl/blog/2006/12/06/first-time-with-lobster/</guid>
		<description><![CDATA[Yesterday for the first time (shame to admit) I had a lobster experience. Turns out overrated &#8211; lobster is not as difficult as it is usually pictured. I would say some fish are much worst. Perhaps it was prepared in the way that made eating it easier. Lobster, in any case, tastes more or less [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday for the first time (shame to admit) I had a lobster experience. Turns out overrated &#8211; lobster is not as difficult as it is usually pictured. I would say some fish are much worst. Perhaps it was prepared in the way that made eating it easier. Lobster, in any case, tastes more or less like a big shrimp.</p>
<p>I don&#8217;t write much lately, even though there are some interesting topics &#8211; the reason &#8211; I don&#8217;t feel like writing. As usual, I never manage to force myself into undesirable activity. Why not wait, anyway. The productivity advantage, while being motivated to work on something, is huge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owczarek.com.pl/blog/2006/12/06/first-time-with-lobster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

