<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Miro&#039;s World</title>
	<atom:link href="http://miroadamy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://miroadamy.com</link>
	<description>Comments, thoughts and observations on technology, web and life</description>
	<lastBuildDate>Tue, 14 Feb 2012 20:28:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='miroadamy.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Miro&#039;s World</title>
		<link>http://miroadamy.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://miroadamy.com/osd.xml" title="Miro&#039;s World" />
	<atom:link rel='hub' href='http://miroadamy.com/?pushpress=hub'/>
		<item>
		<title>Tomcat 5 not reloading changes in JSP</title>
		<link>http://miroadamy.com/2011/07/24/tomcat-5-not-reloading-changes-in-jsp/</link>
		<comments>http://miroadamy.com/2011/07/24/tomcat-5-not-reloading-changes-in-jsp/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 22:33:34 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[jsp]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=806</guid>
		<description><![CDATA[Part of the beauty of JSP development is the easy of trying out the change. All you have to do is edit the JSP file, save it and reload the page. Yesterday I got caught by surprise by not being able to do exactly that. I saw some strange behaviour in an EL expression used [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=806&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Part of the beauty of JSP development is the easy of trying out the change. All you have to do is edit the JSP file, save it and reload the page. Yesterday I got caught by surprise by not being able to do exactly that.</p>
<p>I saw some strange behaviour in an EL expression used JSP tag. As it was nothing ATG specific, I decided to try it out in plain old Tomcat rather than full ATG application. So I located the instance of Tomcat 5.5 (I always have couple of Tomcats lying around) and being lazy, I decided to inject the change into out-of the box jsp-examples Web application that comes with it.</p>
<p>I picked a victim JSP to be modified (jsp2/el/basic-comparison.jsp), made my change, reloaded page &#8211; nothing. I must have forgotten to save the file, did it again &#8211; nothing. Weird. Maybe browser caching. Cmd-Shift-R &#8211; nothing. Tried different browser &#8211; it showed unchanged file as before. Definitely not a browser issue.</p>
<p>The most logical explanation would be that I am editing different file than reloading: so I verified that the JSP file I edited is indeed under WebApps, that correct version of Tomcat was started. It was. There was no context redirection in place but to be sure, I unzipped pristine copy of apache-tomcat-5.5.31.zip (I have couple of those around as well), copied the JSP there, started it &#8211; same thing.</p>
<p>Really weird.</p>
<p>Few more experiments showed that no change to any JSP page under jsp-examples was visible. Removing JSP page caused 404 error as expected, but as soon as the page was there, it reappeared in original pristine version.</p>
<p>At this point, I started to suspect there is something fishy with the jsp-examples application itself. And it was. Brief check of the web.xml showed that it is quite long (24K) and that it contains declaration:</p>
<p><pre class="brush: plain;">
&lt;servlet&gt;
  &lt;servlet-name&gt;org.apache.jsp.jsp2.el.basic_002dcomparisons_jsp&lt;/servlet-name&gt;
  &lt;servlet-class&gt;org.apache.jsp.jsp2.el.basic_002dcomparisons_jsp&lt;/servlet-class&gt;
&lt;/servlet&gt;

....

&lt;servlet-mapping&gt;
  &lt;servlet-name&gt;org.apache.jsp.jsp2.el.basic_002dcomparisons_jsp&lt;/servlet-name&gt;
  &lt;url-pattern&gt;/jsp2/el/basic-comparisons.jsp&lt;/url-pattern&gt;
&lt;/servlet-mapping&gt;
</pre></p>
<p>and suddenly it all made sense.</p>
<p>As long as the JSP file was present (Tomcat checks), it&#8217;s content was completely ignored and the request for /jsp2/el/basic-comparisons.jsp was served by COMPILED class /webapps/jsp-examples/WEB-INF/classes/org/apache/jsp/jsp2/el/basic_002dcomparisons_jsp.class &#8211; which of course did not contain any of the JSP file changes. When I removed file, Tomcat reported 404 a- the check for file existence comes before check for URL mapping apparently.</p>
<p>Moral of the story: being lazy causes one has to do more work but often learns something new. Had I created fresh new WebApp, none of these mappings were present and I would never realized what is Tomcat 5 doing behind the scenes.</p>
<p>Btw, in Tomcat 6 the mappings are gone and everything behaves as expected.</p>
<p>Although this is not technically a bug &#8211; but a feature &#8211; it is unfortunate that this optimization is used exactly in one application that can be used by newbie developer learning JSP for experimentation and not seeing it&#8217;s change can confuse the hell out of them. Especially when googling the issue will very likely sending him/her in completely wrong direction &#8211; suggesting reconfiguring Jasper, playing with valves and internals of Tomcat configuration.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/806/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/806/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/806/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=806&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/07/24/tomcat-5-not-reloading-changes-in-jsp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Google+ is superset of both Facebook and Twitter</title>
		<link>http://miroadamy.com/2011/07/11/google-is-superset-of-both-facebook-and-twitter/</link>
		<comments>http://miroadamy.com/2011/07/11/google-is-superset-of-both-facebook-and-twitter/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 03:49:41 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[googleplus]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=801</guid>
		<description><![CDATA[It may be too early to express opinions about something so new as Google+, but in the short few days I was playing with it, I started to like it a lot. Many bloggers consider it to be a Facebook killer &#8211; and it (unlike two previous Google attempts on social networking) eventually may become [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=801&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It may be too early to express opinions about something so new as Google+, but in the short few days I was playing with it, I started to like it a lot. Many bloggers consider it to be a Facebook killer &#8211; and it (unlike two previous Google attempts on social networking) eventually may become that. Conceptually, however  it is much closer to Twitter than Facebook.</p>
<p>The biggest difference is that in G+ there is no peer relation &#8211; &#8220;friendship&#8221; that needs to be confirmed by both parties. Both ends are disconnected in Google+ &#8211; set of people whose updates you see in your stream and set of people that see your updates is not the same and can be in extreme case disjunct.</p>
<p>In G+, like in Twitter, everybody chooses set of people whose updates you want to see &#8211; you &#8220;follow&#8221; people. This following does not require any approval on their end. Unlike Twitter, you can easily organize the people you follow into groups (circles) and with single click limit the news stream only to members of this group (where one person can be in many groups). It is like having multiple Twitter accounts, each with different set of people followed and switching identities.</p>
<p>On broadcasting side, you can select the target audience for each post by addressing the message to be visible publicly (Twitter default), by any member of your circles, your extended circles (kind of &#8220;friends of friends&#8221;), one or several named circles, or even named set of people from your circles. Whether your message will actually appear in their message stream depends on whether the addressee did add you into their circles. Twitter does allow you only public updates. (Yes, ok, there are &#8220;protected tweets&#8221; by who uses them ?). Facebook allows you updates only for all your friends or single FB group.</p>
<p>For example, I have group named Following with members like Andy Ihnatko, Leo Laporte, Leo Babauta and other internet celebrities. Clicking on the circle will show me all public updates from these people, but it would contain none of the posts made e.g. by Andy for his circles &#8211; of which I am not member of. Similarly, should I post an update for the &#8220;Following&#8221; circle, Andy would never see it in his news stream (despite of that I do have him in my circles) as I am not member of his circles. This way Google created incredibly flexible framework that can deliver any mode of communication available from Twitter and Facebook:</p>
<p>1) Twitter following: see above<br />
2) Facebook friends: both parties add the other to circles<br />
3) Facebook groups: named circle (plus possibility of multiple groups and administration that does not suck)<br />
4) Friends of friends: extended circles<br />
5) direct message to person (in your circles): update with single person recipient</p>
<p>What G+ does not have (yet) are applications/games and public developer API. I am pretty sure that promised availability of the later will cause the explosion in the first. It will be very interesting to see the impact of this new, much more flexible &#8220;trust model&#8221; on the kinds of applications available.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/801/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/801/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/801/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=801&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/07/11/google-is-superset-of-both-facebook-and-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Back to Twitter</title>
		<link>http://miroadamy.com/2011/06/19/back-to-twitter/</link>
		<comments>http://miroadamy.com/2011/06/19/back-to-twitter/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 04:16:10 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[lifehacks]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=797</guid>
		<description><![CDATA[After being away for over 4 months, I am back on Twitter. No, I did not miss the stream of 160 character mixture of news, trivia, white noise and occasional nuggets. Three main reasons: 1) Twitter seems to to become  unavoidable &#8211; more and more services assume that one has twitter account. Many cyberevents rules [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=797&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After being away for over 4 months, I am back on Twitter. No, I did not miss the stream of 160 character mixture of news, trivia, white noise and occasional nuggets. Three main reasons:</p>
<p>1) Twitter seems to to become  unavoidable &#8211; more and more services assume that one has twitter account. Many cyberevents rules start with &#8220;retweet this&#8221; or &#8220;tweet that&#8221; which of course one cannot do without Twitter account</p>
<p>2) Direct messaging via Twitter is one very convenient method how to add information to many service: new todo in Toodledo, Evernote and so on. It is MUCH faster than starting any client on an iPhone.</p>
<p>3) Twitter is after all the best medium for sharing links. Facebook does not cut it  if you want to keep friend count reasonable so there is a gap between Facebook and LinkedIn</p>
<p>Alas, I am back, with my old handle &#8216;miroadamy&#8217;.</p>
<p>Hello &#8211; Nael and the gang &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/797/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/797/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/797/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=797&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/06/19/back-to-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Cultured Code, you are history &#8230;</title>
		<link>http://miroadamy.com/2011/06/18/dear-cultured-code-you-are-history/</link>
		<comments>http://miroadamy.com/2011/06/18/dear-cultured-code-you-are-history/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 04:16:36 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[lifehacks]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=791</guid>
		<description><![CDATA[I have been Cultured Code customer for over 2 years and used multiple their products: Things on OS-X, Things for iPad and iPhone on daily basis. Not any more. I am definitely giving up on Things and Cultured Code products. The reason why is sheer frustration from long wait on usable synchronization between Things on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=791&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been <a href="http://culturedcode.com/">Cultured Code</a> customer for over 2 years and used multiple their products: <a href="http://culturedcode.com/things/">Things on OS-X</a>, <a href="http://culturedcode.com/things/ipad/">Things for iPad</a> and <a href="http://culturedcode.com/things/iphone/">iPhone</a> on daily basis.</p>
<p>Not any more.</p>
<p>I am definitely giving up on Things and Cultured Code products.</p>
<p>The reason why is sheer frustration from long wait on usable synchronization between Things on Mac, iPad and iPhone. Something that have been discussed, promised, <a href="http://culturedcode.com/things/blog/2009/08/this-is-not-a-roadmap.html">chewed over 2 years</a> and that still does not work.</p>
<p>In theory, you *can* synchronize as long as Mac and iPad / iPhone are in the same wireless network and can see each other. Things on Mac must be running and when Things on iPad/iPhone starts, they find each other and exchange data. It works most of the time, until it stops. With a bit of luck and some tweaking, one may be lucky and get it back to working order. Or not.</p>
<p>It happened to me several times that for no particular reason, iPad started the synchronization but never completed. Sometimes restarting iPad or Mac helped. Sometimes not. Sometimes I managed to fix the problem by unregistering the iPad and adding it back. When this remedy failed, in frustration, I tried to contact CC technical support. Here is the answer</p>
<pre>Hi,

Thank you for your inquiry.

We are working on our own cloud sync solution that will allow 
for multi-device-sync (Mac / iPhone / iPad) using whatever network is available (Wifi / Edge / 3G). 
See: http://culturedcode.com/status
That's the most requested feature currently.
At present I can't give you a time frame,
though, when this is going to be ready.

Regards,

Roman.
Things Support
Cultured Code</pre>
<p>They have been working on synchronization for well over 2 years now, if I remember correctly, which is about 18 months too long. What kind of project management is that they still do not have a time frame for completion ? This is not perfectionism, this smells like Cultured Code is another product company that was great once but lost its mojo and capability to deliver. Things may be the most beautifully designed GTD application out there &#8211; but how long will pleasure from using shiny toy compensate for lack of basic functionality ?</p>
<p>After reviewing the landscape of GTD apps in 2011 I am now settling on combination of Toodledo and Evernote. Toodledo is basically a Web application with several iPad / iPhone clients. There is probably no OS-X desktop client that would come close to elegance of Things. Yet. And the web UI is kinda busy &#8211; but boy, it is *very* *very* functional. The synchronization with iPad works like charm, asynchronously.</p>
<p>And I doubt it took the Toodledo team 24 months to solve &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/791/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/791/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/791/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=791&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/06/18/dear-cultured-code-you-are-history/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook or LinkedIn &#8211; that&#8217;s the question</title>
		<link>http://miroadamy.com/2011/04/07/facebook-or-linkedin-thats-the-question/</link>
		<comments>http://miroadamy.com/2011/04/07/facebook-or-linkedin-thats-the-question/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 03:51:48 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[lifehacks]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=786</guid>
		<description><![CDATA[Few weeks ago, I canceled my Twitter account and stopped using Twitter altogether. I do not miss it at all. The next vector of distraction to be brought under control is Facebook. This is a tougher nut to crack &#8211; because of wide variety of people in my circle of friends, Facebook plays many different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=786&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Few weeks ago, I canceled my Twitter account and stopped using Twitter altogether. I do not miss it at all.</p>
<p>The next vector of distraction to be brought under control is Facebook. This is a tougher nut to crack &#8211; because of wide variety of people in my circle of friends, Facebook plays many different roles.</p>
<ul>
<li>It is a connection to old friends and colleagues from the old continent and old country.</li>
<li>It is a family connection.</li>
<li>It is a connection to people that are not on FB through their friends or relatives that are.</li>
<li>It is a link to people I worked with and wanted to keep in touch.</li>
<li>It is a link to people I share common interest with</li>
</ul>
<p>This variety creates a problem of itself (which is multiplied by English/non English division).  Tool that does too many things, does not do them very well.</p>
<p>Honestly, I do not understand how some people can maintain hundreds of &#8220;friends&#8221;. The group of this size generates so much noise, so many updates that the news stream becomes close to useless. One can always hide updates from most significant  &#8220;link spammers&#8221; but that opens up a question: is there any point in providing a view into your life to somebody whose updates you do not read anyway ?</p>
<p>First attempt to solve this is to separate the &#8220;private world&#8221; and work. In my case, there is no clear boundary as I am fortunate to work with so many of my close personal friends (many of which are on FB) and in my current employment I am lucky to consider many of the people I work with to be much more than just work buddies. Nevertheless, my goal is to get down to two digit number of Facebook friends.</p>
<p>To achieve that, I would like to ask some of my current Facebook friends to reconnect on LinkedIn. I absolutely want to stay in touch,  just using different channel.</p>
<p>My public profile is http://www.linkedin.com/in/miroadamy.</p>
<p>See you there</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/786/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=786&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/04/07/facebook-or-linkedin-thats-the-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Better GMail than GMail</title>
		<link>http://miroadamy.com/2011/02/11/better-gmail-than-gmail/</link>
		<comments>http://miroadamy.com/2011/02/11/better-gmail-than-gmail/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 04:38:05 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[OS-X]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=782</guid>
		<description><![CDATA[Since 2005 when I switched to GMail, I was living in browser. For better or worse, I learn to put up with issues like speed, lack of hotkeys, UI that is not as responsive as it should be, drag and drop that works most of the time. To be fair, in these five years browsers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=782&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since 2005 when I switched to GMail, I was living in browser. For better or worse, I learn to put up with issues like speed, lack of hotkeys, UI that is not as responsive as it should be, drag and drop that works most of the time. To be fair, in these five years browsers and GMail UI improved tremendously. It was rational decision to trade all these for simplicity of the UI.</p>
<p>Even after switching to Mac in 2006 &#8211; first for home, a year later for everything did not change this, I kept using browser despite better choice. Apple Mail may be decent client but it never felt quite right and otherwise decent Thunderbird had always issues with trading off multi-platform reach for integration and true Mac-ness.</p>
<p>All of this changed today after installing Sparrow. It is all I ever wanted &#8211; IMAP based access that really works, with minimalistic but elegant interface, Twitter like simplicity and that special sauce which discriminates great OS-X application from average. For very reasonable price $9.99 available in App Store.</p>
<p>99% of all GMail features are there &#8211; the only one I had to sacrifice is multiple signatures for single account. Before, all my work email was redirected and merged into my private GMail account, set up with multiple aliases and GMail was smart enough to pick different signature based on sending address. To do the same, I had to cut the redirect. Luckily, both Sparrow as well as  iPad mail client support multiple accounts so I have access to all accounts inside single client on Macbook or iPad.</p>
<p><a href="http://www.sparrowmailapp.com/">Sparrow</a> &#8211; http://www.sparrowmailapp.com/, available in App Store.</p>
<p>Highly recommended.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/782/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/782/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/782/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=782&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/02/11/better-gmail-than-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Bye bye Twitter</title>
		<link>http://miroadamy.com/2011/01/30/bye-bye-twitter/</link>
		<comments>http://miroadamy.com/2011/01/30/bye-bye-twitter/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 23:12:29 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[lifehacks]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=778</guid>
		<description><![CDATA[I have came to a conclusion that I do have too much stuff in my life. Too much and too little and the same time. Too much information. Too many interruptions and distractions. Too little time to think. Too much consumption of information and not enough time to process it and do anything meaningful with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=778&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have came to a conclusion that I do have too much <em>stuff</em> in my life.</p>
<p>Too much and too little and the same time.</p>
<p>Too much information. Too many interruptions and distractions. Too little time to think.</p>
<p>Too much consumption of information and not enough time to process it and do anything meaningful with it &#8211; learn from it or create something new.</p>
<p>The only way how to get out of the self-digged hole is to start cutting.</p>
<p>One of the big sources of distraction and cause of many pointless hours spent on Web is Twitter.</p>
<p>I was using Twitter mostly as filter: by following people with similar interest, trying to curate the content &#8220;out there&#8221;.</p>
<p>It worked to a certain degree &#8211; and I indeed discovered some interesting pieces of information I would miss otherwise.</p>
<p>The real questions I have to ask are: did these discoveries justify the time spent reading through pointless tweets (big portion of twittersphere) ? The answer is no. What would I miss by not finding them ? The answer is &#8211; not much, really. What difference did not missing them make in the<br />
long run ? And the final answer is None.</p>
<p>It is very hard to say something that matters in 160 characters. Some people can do it, I am not one of  them.</p>
<p>So after few years of being on Twitter I am deleting my Twitter account today.</p>
<p>Bye bye Twitter. I will try not to miss you. And I am sure you will not miss me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/778/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/778/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/778/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=778&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2011/01/30/bye-bye-twitter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Podcast recommendation</title>
		<link>http://miroadamy.com/2010/11/24/podcast-recommendation/</link>
		<comments>http://miroadamy.com/2010/11/24/podcast-recommendation/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 05:13:10 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[podcasts]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=773</guid>
		<description><![CDATA[I have find new podcast that I want to share with you. It is called &#8220;This Developer&#8217;s Life&#8221; and is produced by well known digerati Scott Hanselman and Rob Conery. I listen to a lot of podcasts, about 50 % of them produced by Leo Laporte&#8217;s TWIT Network (This Week in Tech, Macbreak, This Week [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=773&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have find new podcast that I want to share with you. It is called &#8220;This Developer&#8217;s Life&#8221; and is produced by well known digerati Scott Hanselman and Rob Conery.</p>
<p>I listen to a lot of podcasts, about 50 % of them produced by Leo Laporte&#8217;s TWIT Network (This Week in Tech, Macbreak, This Week in Google, FLOSS Weekly and occasional Security Now).</p>
<p>What I like about Leo&#8217;s network is professionalism of audio production, usually good and interesting panel with topics that are worth listening to. Few other podcasts come even close to the TWIT level of perfection.</p>
<p>Except this one which is much better. Not necessarily from audio or production point of view &#8211; although they are both very good. This developers life goes way beyond what Twit does. It is not a dialog of few interesting geeks, it is story. Story nicely designed, well crafted, interwoven with really good music. It changes from dialog to story with commentaries, but keeps you interested. An episode usually<br />
focuses on single theme and contains several stories. Topics are not technology, but the area where technology overlaps with life: motivation, audacity, highs and lows of programming career</p>
<p>Great selection of guests, including cybercelebrities such as John Resig or Miguel de Icaza.</p>
<p>I almost never listen to a podcast episode twice. For this one, I do.</p>
<p>Highly recommended.</p>
<p>http://thisdeveloperslife.com/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/773/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/773/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/773/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=773&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2010/11/24/podcast-recommendation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>JSP compiler configuration in JBoss 4.2.x for ATG</title>
		<link>http://miroadamy.com/2010/02/24/jsp-compiler-configuration-in-jboss-4-2-x-for-atg/</link>
		<comments>http://miroadamy.com/2010/02/24/jsp-compiler-configuration-in-jboss-4-2-x-for-atg/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 06:33:44 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[atg]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=767</guid>
		<description><![CDATA[The post is on corporate blog &#8211; http://blog.thinkwrap.com/blog/2010/2/24/jsp-compiler-configuration-in-jboss-42x-for-atg.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=767&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The post is on corporate blog &#8211; <a href="http://blog.thinkwrap.com/blog/2010/2/24/jsp-compiler-configuration-in-jboss-42x-for-atg.html">http://blog.thinkwrap.com/blog/2010/2/24/jsp-compiler-configuration-in-jboss-42x-for-atg.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/767/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/767/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/767/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=767&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2010/02/24/jsp-compiler-configuration-in-jboss-4-2-x-for-atg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
		<item>
		<title>Thanks for all the adds</title>
		<link>http://miroadamy.com/2010/01/26/thanks-for-all-the-adds/</link>
		<comments>http://miroadamy.com/2010/01/26/thanks-for-all-the-adds/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 07:57:31 +0000</pubDate>
		<dc:creator>miroadamy</dc:creator>
				<category><![CDATA[lifehacks]]></category>

		<guid isPermaLink="false">http://miroadamy.com/?p=762</guid>
		<description><![CDATA[As regular listener to multiple TWIT Network podcasts (This Week In tech, Macbreak Weekly, This Week in Google, Free Libre Opensource Software, Security Now, Windows Weekly) I am very much aware of all the advertisers that keep Leo and the gang in business and make the podcast&#8217;s stream going. I have even acted upon several [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=762&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As regular listener to multiple <a href="http://twit.tv/" target="_blank">TWIT Network</a> podcasts (This Week In tech, Macbreak Weekly, This Week in Google, Free Libre Opensource Software, Security Now, Windows Weekly) I am very much aware of all the advertisers that keep Leo and the gang in business and make the podcast&#8217;s stream going. I have even acted upon several of the ads: we are customer of SquareSpace.com (the corporate blog runs on that platform), GoToMeeting is regular part of day-to-day business &#8211; we have several accounts and use it regularly for meetings. I would use GoToMyPC if I had any need to go to a PC <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . I bought Spinrite, although I used it only once over last 3 years.</p>
<p>Strangely enough, the only advertiser I do not see of trying out is Audible &#8211; not because I would not like their product offering, quite the opposite. I simply have have absolutely no time for more content in my life: TWIT plus few additional podcasts, Apple TV and ZIP.ca give me way more that I have time to consume. I have no intention of buying Mustang with Sync &#8211; my selection of gadgets purchased as part midlife crisis is strictly limited to shiny objects featuring either Apple logo or an IP address, ideally both. But back to point: I feel I have done my share in keeping TWIT in business and do not really want and have to listen to same adds 3-6 times every week.</p>
<p>Fortunately, the adds are not too annoying to justify drastic measures and additional inconvenience &#8211; such editing them out from MP3. I have to give Leo credit for being sensitive in his ad selection &#8211; except Mustang, which I find to be least in line with TWIT audience &#8211; most products were pretty good.</p>
<p>I found very simple solution that surprised me with completely unexpected side benefit. Whenever Leo goes to an ad (and J.C. Dvorak disappears to baste meat), I turn down the volume to 0 for 2-3 minutes. Just turn the volume off and focus on driving, walking or whatever I am doing. I do not plan, evaluate, program or think about anything, only focus on the current moment and feel whatever is happening right now. I found this being an excellent stress relieve and instead of being annoyed by the ads, I actually started to look forward to them. I do not necessarily subscribe to *all* that New Age hype about being in the present moment, but finding an opportunity few times a day just stop and focus on whatever is happening right now, however simple or mundane that activity is, has its benefits. And there is always something going on: at minimum, you are always breathing.</p>
<p>Therefore, Leo and all Twits &#8211; thanks for all the adds. Ignoring them in a creative way is actually very healthy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/miroadamy.wordpress.com/762/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/miroadamy.wordpress.com/762/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/miroadamy.wordpress.com/762/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=miroadamy.com&amp;blog=11129594&amp;post=762&amp;subd=miroadamy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://miroadamy.com/2010/01/26/thanks-for-all-the-adds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/36b7e066a8afd1f07d69745a4261b5c3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">miroadamy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
