<?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"
	>

<channel>
	<title>Saving Someone's Day</title>
	<atom:link href="http://www.savedmyday.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.savedmyday.com</link>
	<description></description>
	<pubDate>Tue, 08 Jun 2010 22:41:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>JUnit report StackOverflowError ; a quick hack fix</title>
		<link>http://www.savedmyday.com/2010/06/08/junit-report-stackoverflowerror-a-quick-hack-fix/</link>
		<comments>http://www.savedmyday.com/2010/06/08/junit-report-stackoverflowerror-a-quick-hack-fix/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 22:21:34 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[Fun Stuff]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[junit xsl stackoverflowerror java unit-testing apache a]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/?p=160</guid>
		<description><![CDATA[Blog post after a long time but this one deserves it because this can save someone a day or few minutes/hours of their time for sure.

Issue: When you run JUnit report generation using Ant target  ]]></description>
			<content:encoded><![CDATA[<p>Blog post after a long time but this one deserves it because this can save someone a day or few minutes/hours of their time for sure.</p>
<p>
<p><strong>Issue:</strong> When you run JUnit report generation using Ant target <em> <junitreport...</em > you will run into java.lang.StackOverflowError.</p>
<p><strong>Where:</strong> Happens only on Windows machine (at least I have seen it). Works fine on linux/mac os x.</p>
<p><strong>Why:</strong> When XSLT engine runs thru all the properties supplied to it while doing the actual test case to report translation, it runs into java.class.path variable specified and if your class path has too many path elements , it goes into infinite death loop.</p>
<p><strong>How to fix:</strong> A Quick hack or fix (whatever you want to call it as); is to  tell XSLT engine ignore the java.class.path while evaluating properties. To do that you will have to explicitly specify where to pick up the stylesheet from. Luckily junitreport lets us specify the external xsl folder location using <em>styledir</em> attribute in</p>
<pre> &lt;report ... </pre>
<p> tag. So this is what you need to do.</p>
<ol>
<li>get a copy of junit-noframes.xsl (if you are using with frames get a copy of that) from the internet. or you should be able to get this from the latest version of Apache Ant and it should be located in /etc folder. Now copy this xsl fi</li>
<li>Now change</p>
<pre>&lt;xsl:template match="properties"&gt; </pre>
<p> section from</p>
<pre>&lt;xsl:for-each select="property"&gt;</pre>
<p> to</p>
<pre>&lt;xsl:for-each select="property[not(@name = 'java.class.path')]"&gt;</pre>
<p> and save this file in some location e.g c:/junit/xsl</li>
<li>In your ant target explicitly specify the junit-noframes.xsdl location by adding <em>styledir</em> . It should look something like this</p>
<pre>&lt;report format="noframes" todir="${junit.test.reports.dir}" styledir="c:/junit/xsl" /&gt;</pre>
</li>
</ol>
<p>That should fix the issue.<br />
<strong> Point # 2 </strong> above tells the xsl engine to ignore classpath variable.</p>
<ol>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2010/06/08/junit-report-stackoverflowerror-a-quick-hack-fix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails, Phusion Passenger, Apache httpd Permission Denied error -  Resolved one way.</title>
		<link>http://www.savedmyday.com/2009/02/25/rails-phusion-passenger-apache-httpd-permission-denied-error-resolved-one-way/</link>
		<comments>http://www.savedmyday.com/2009/02/25/rails-phusion-passenger-apache-httpd-permission-denied-error-resolved-one-way/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 09:05:27 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[Fun Stuff]]></category>

		<category><![CDATA[Ruby/Ruby On Rails]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[http]]></category>

		<category><![CDATA[mod_rails]]></category>

		<category><![CDATA[passenger]]></category>

		<category><![CDATA[phusion]]></category>

		<category><![CDATA[phusion-passenger]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[rubyonrails]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2009/02/25/rails-phusion-passenger-apache-httpd-permission-denied-error-resolved-one-way/</guid>
		<description><![CDATA[This blog post is long due. Once again its a quick tip which can save lot of developers time in setting up rails with phusion passenger when they run into permission denied error. 
 After installing Passenger Phusion on a existing Apache HTTP web server when I started the Apache server and try to launch [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: georgia, serif;"><span style="font-size: small;">This blog post is long due. Once again its a quick tip which can save lot of developers time in setting up <a href="http://rubyonrails.org/">rails</a> with <a href="http://www.modrails.com/">phusion passenger</a> when they run into permission denied error. </span></span></p>
<div><span style="font-family: georgia; "> After installing Passenger Phusion on a existing Apache <a href="http://httpd.apache.org/">HTTP web server</a> when I started the Apache server and try to launch the app in browser I was getting following error.</span></div>
<div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><em><span style="font-family: georgia, serif;"><span style="font-size: small;"></p>
<pre>[client ::1] (13)Permission denied: access to /favicon.ico denied, referer: http://localhost/</pre>
<p></span></span></em><em> </em></p>
</div>
<div><em><span style="font-family: georgia, serif;"><span style="font-size: small;"></p>
<pre>[client ::1] (13)Permission denied: access to / denied</pre>
<p></span></span></em></p>
<div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;">After fixing obvious issues around permission like below, still no luck.</span></span></div>
<div>
<ul>
<li><span style="font-family: georgia, serif;"><span style="font-size: small;">chmod on rails directory , so that Apache/Phusion would have all the permission to access the rails directory</span></span></li>
<li><span style="font-family: georgia, serif;"><span style="font-size: small;">Adjusting VirtualHost directory permission in Apache config (httpd.conf) file to allow all which would look something like this</span></span></li>
</ul>
</div>
</div>
</div>
<blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;">
<blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;"><p><em><span style="font-family: georgia, serif;"><span style="font-size: small;"> </span></span></em></p>
<p><em></em></p>
<p><em></p>
<pre>&lt;VirtualHost *:80&gt;
ServerName localhost
DocumentRoot  &lt;rails app directory&gt;
&lt;Directory  &lt;rails app directory&gt; &gt;
Allow from all
&lt;/Directory&gt;
RailsEnv development
RailsDefaultUser root
&lt;/VirtualHost&gt;</pre>
<p></em></p></blockquote>
</blockquote>
<div>
<div>
<div>
<div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;">As I was going thru httpd.conf in detail, I noticed that Apache kicking off the process under user  &#8221;</span></span><strong><em><span style="font-family: georgia, serif;"><span style="font-size: small;">Daemon</span></span></em></strong><span style="font-family: georgia, serif;"><span style="font-size: small;">&#8221; every time I started the web server. This surely sounded like a issue to me and can lead to permission problems. So it was just a matter of changing this user to the my default user and bounce the server. This finally fixed it.</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"> Look for following in your httpd.conf</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"> </span></span><strong><span style="font-family: georgia, serif;"><span style="font-size: small;"></p>
<pre>User daemon</pre>
<p></span></span></strong></p>
</div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;">change this to</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"> </span></span><strong><span style="font-family: georgia, serif;"><span style="font-size: small;"></p>
<pre>User &lt;default machine user&gt;</pre>
<p></span></span></strong></p>
</div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;">Here is one </span></span><a href="http://markmail.org/message/ye3luydwm3yfjert#query:phusion%20Permission%20denied%3A%20access+page:1+mid:ye3luydwm3yfjert+state:results"><span style="font-family: georgia, serif;"><span style="font-size: small;">reference</span></span></a><span style="font-family: georgia, serif;"><span style="font-size: small;"> which talks about solution similar to what I explained above.</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;"><br />
</span></span></div>
<div><span style="font-family: georgia, serif;"><span style="font-size: small;">Following are some references for installing phusion passenger </span></span></div>
<div>
<ul>
<li><a href="http://benr75.com/2008/04/12/setup-mod_rails-phusion-mac-os-x-leopard"><span style="font-family: georgia, serif;"><span style="font-size: small;">Setup mod_rails Passenger Mac OS X Leopard</span></span></a><span style="font-family: georgia, serif;"><span style="font-size: small;"> from </span></span><span style="font-family: georgia, serif;"><span style="font-size: small;"> </span></span><a style="color: #993300; " href="http://benr75.com/pages/about-ben-reubenstein"><span style="font-family: georgia, serif;"><span style="font-size: small;">Ben Reubenstein</span></span></a></li>
<li><a href="http://www.modrails.com/install.html"><span style="font-family: georgia, serif;"><span style="font-size: small;">Easiest way to install Phusion Passenger </span></span></a><span style="font-family: georgia, serif;"><span style="font-size: small;"> </span></span></li>
</ul>
<div><span style="font-family: georgia;"><br />
</span></div>
<div><span style="font-family: georgia;"><br />
</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a> using <a href="http://www.messagedance.com/help/gmail-for-blog.html" target="_new">Gmail</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2009/02/25/rails-phusion-passenger-apache-httpd-permission-denied-error-resolved-one-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazon Kindle 2 Has Arrived - Is new kindle a podcast device too ?</title>
		<link>http://www.savedmyday.com/2009/02/11/amazon-kindle-2-has-arrived-is-new-kindle-a-podcast-device-too/</link>
		<comments>http://www.savedmyday.com/2009/02/11/amazon-kindle-2-has-arrived-is-new-kindle-a-podcast-device-too/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 08:53:16 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[amazon]]></category>

		<category><![CDATA[books]]></category>

		<category><![CDATA[kindle]]></category>

		<category><![CDATA[kindle-2]]></category>

		<category><![CDATA[kindle2]]></category>

		<category><![CDATA[podcast]]></category>

		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2009/02/11/amazon-kindle-2-has-arrived-is-new-kindle-a-podcast-device-too/</guid>
		<description><![CDATA[
Saw this email from Amazon and looks like they are coming up with features that do matter. Although I&#8217;m not a book reader, but I like the words of &#8220;Text to Speech&#8221;. Kindle is turning into a podcast device also. 
More possibilities for college/universities. Lets hope Kindle becomes iPod for books.





Dear Customers,
 
I am proud to [...]]]></description>
			<content:encoded><![CDATA[<div class="gmail_quote">
<div>Saw this email from Amazon and looks like they are coming up with features that do matter. Although I&#8217;m not a book reader, but <span class="Apple-style-span" style="border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">I like the words of &#8220;Text to Speech&#8221;. Kindle is turning into a podcast device also. </span></div>
<div><span class="Apple-style-span" style="border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">More possibilities for college/universities. Lets hope Kindle becomes iPod for books.</span></div>
<div>
<table style="height: 554px;" border="0" cellspacing="0" cellpadding="0" width="451" align="center" bgcolor="#ffffff">
<tbody>
<tr>
<td><span style="font-family: arial,verdana,sans-serif; font-size: x-small; color: #000000; line-height: 18px;"><br />
<span class="Apple-style-span" style="font-style: italic;">Dear Customers,<br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
I am proud to introduce </span><a style="font-family:arial,sans-serif,verdana;font-size:12px;color:#003399;text-decoration:underline" href="http://www.amazon.com/gp/r.html?R=FERYEF1YPH6V&amp;C=EHSTW9S5JI3L&amp;H=kjh1hZEzmGlQv7sXj2Kr0Fv4zPYA&amp;T=C&amp;U=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2FB00154JDAI%2Fref%3Dpe_36680_11267670" target="_blank"><span class="Apple-style-span" style="font-style: italic;">Kindle 2</span></a><span class="Apple-style-span" style="font-style: italic;">—the next generation of our wireless     reading device.<br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
Since launching the original Kindle a little over a year ago, the customer response has far surpassed our highest hopes—and were grateful and appreciative for that.  More people are reading more books, periodicals, and blogs on Kindle sooner than we ever imagined. We kept everything readers love about the original Kindle—the convenience of reading what you want, when you want it, the immediacy of getting book wirelessly delivered in less than 60 seconds, and Kindles ability to disappear in your hands so you can get lost in the authors words.<br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
Improved battery life means you can read up to four days on a single charge. Its new, streamlined design makes Kindle 2 as thin as a typical magazine and lighter than a paperback. We added more storage, allowing you to carry over  1,500 titles. An advanced display provides even crisper images and clear text for an improved book-like reading experience. </span><span class="Apple-style-span" style="background-color: #ffff33;"><span class="Apple-style-span" style="font-style: italic;">Our new new Text-to-Speech feature means Kindle can read every book, blog, magazine, and newspaper out loud to you</span></span><span class="Apple-style-span" style="font-style: italic;">.<br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /></p>
<p>At Amazon, weve always been obsessed with selection, and we know that even the best reading device would be useless without the books you want to read. Today, the Kindle Store has more than 230,000 books, including 103 of the 110 New York Times Best Sellers, plus top newspapers, magazines, and blogs. We added over 40,000 new titles in just the last three months. Our vision for Kindle is to have every book ever printed, in any language, all available in under 60 seconds.</p>
<p></span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
We hope you enjoy </span><a style="font-family:arial,sans-serif,verdana;font-size:12px;color:#003399;text-decoration:underline" href="http://www.amazon.com/gp/r.html?R=FERYEF1YPH6V&amp;C=EHSTW9S5JI3L&amp;H=kjh1hZEzmGlQv7sXj2Kr0Fv4zPYA&amp;T=C&amp;U=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2FB00154JDAI%2Fref%3Dpe_36680_11267670" target="_blank"><span class="Apple-style-span" style="font-style: italic;">Kindle 2</span></a><span class="Apple-style-span" style="font-style: italic;">.<br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="8" /><br />
</span> <span class="Apple-style-span" style="font-style: italic;"><img src="http://g-ec2.images-amazon.com/images/G/01/m11/d20/jf.gif" border="0" alt="Jeff" width="52" height="49" /><br />
Jeff Bezos<br />
Founder, Amazon.com<br />
</span> <img src="http://g-ec2.images-amazon.com/images/G/01/correios/1002_halloween/spacer.gif" border="0" alt="" width="1" height="27" /></span></td>
</tr>
</tbody>
</table>
</div>
</div>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a> using <a href="http://www.messagedance.com/help/gmail-for-blog.html" target="_new">Gmail</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2009/02/11/amazon-kindle-2-has-arrived-is-new-kindle-a-podcast-device-too/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Trip For Two - by Leigh Rubin</title>
		<link>http://www.savedmyday.com/2009/01/20/free-trip-for-two-by-leigh-rubin/</link>
		<comments>http://www.savedmyday.com/2009/01/20/free-trip-for-two-by-leigh-rubin/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:14:24 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[animation]]></category>

		<category><![CDATA[comics]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[leigh-rubin]]></category>

		<category><![CDATA[rubes]]></category>

		<category><![CDATA[sent-from-my-iphone]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2009/01/20/free-trip-for-two-by-leigh-rubin/</guid>
		<description><![CDATA[  
  Blogged with MessageDance using iPhone &#124; Reply On Twitter
]]></description>
			<content:encoded><![CDATA[<p><img src="http://mdfoo.s3.amazonaws.com/rshetty/365fb702a2b69436cf83efb4f5dc0b95/photo.jpg" />  </p>
<p><span style="text-align: right; color: rgb(204, 204, 204); font-size: x-small;"> <img src="http://www.messagedance.com/images/bwdance.png" style="border:none;" /> Blogged with <a href="http://messagedance.com/rshetty"><b>MessageDance</b></a> using <a href="http://www.messagedance.com/help/iphone-for-blog.html" target="_new">iPhone</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><font size="-2"><b>Reply On Twitter</b></font></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2009/01/20/free-trip-for-two-by-leigh-rubin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A R Rahman gets Critics choice award for Best music</title>
		<link>http://www.savedmyday.com/2009/01/09/a-r-rahman-gets-critics-choice-award-for-best-music/</link>
		<comments>http://www.savedmyday.com/2009/01/09/a-r-rahman-gets-critics-choice-award-for-best-music/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 01:48:43 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[BOLLYWOOD]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[sent-from-my-iphone]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2009/01/09/a-r-rahman-gets-critics-choice-award-for-best-music/</guid>
		<description><![CDATA[For movie Slumdog Millionair
e   
  Blogged with MessageDance using iPhone &#124; Reply On Twitter
]]></description>
			<content:encoded><![CDATA[<p>For movie Slumdog Millionair</p>
<p>e   <img src="http://mdfoo.s3.amazonaws.com/rshetty/e24fcc210dcfedf6714e7d3609f3f928/photo.jpg" alt="" width="400" height="200" /></p>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a> using <a href="http://www.messagedance.com/help/iphone-for-blog.html" target="_new">iPhone</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2009/01/09/a-r-rahman-gets-critics-choice-award-for-best-music/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Leadership in market share &#038; power of brilliant design- Part 1 : YouTube &#038; JVC</title>
		<link>http://www.savedmyday.com/2008/09/08/leadership-in-market-share-power-of-brilliant-design-part-1-youtube-jvc/</link>
		<comments>http://www.savedmyday.com/2008/09/08/leadership-in-market-share-power-of-brilliant-design-part-1-youtube-jvc/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 17:24:00 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Communication/Technology]]></category>

		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[camcorder]]></category>

		<category><![CDATA[design]]></category>

		<category><![CDATA[everio]]></category>

		<category><![CDATA[jvc]]></category>

		<category><![CDATA[marketing]]></category>

		<category><![CDATA[one-touch]]></category>

		<category><![CDATA[sent-from-my-iphone]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2008/09/08/leadership-in-market-share-power-of-brilliant-design-part-1-youtube-jvc/</guid>
		<description><![CDATA[How far can someone take a simple idea and turn into billion dollar industry around it without really knowing about it ?. YouTube is that success.
Did YouTube founders ever thought that one day their idea will have such massive impact on the industry that video hardware manufacturers will design their products to support this phenomena?. [...]]]></description>
			<content:encoded><![CDATA[<p>How far can someone take a simple idea and turn into billion dollar industry around it without really knowing about it ?. YouTube is that success.</p>
<p>Did YouTube founders ever thought that one day their idea will have such massive impact on the industry that video hardware manufacturers will design their products to support this phenomena?. Probably not. If founders say yes to this question then probably they will be lieing.</p>
<p>Check this JVC camcorder out. Designed for one touch upload to YouTube. I would say smart move from    JVC&#8217;s marketing team. Riding on a already successfull product can potentially go a long way. <img src="http://mdfoo.s3.amazonaws.com/rshetty/13effcf5855b2e0d9d587d5fe5d971d9/photo.jpg" alt="" /></p>
<p>For all those YouTube video producers this might be the perfect device. Even though I have not seen or used this one, but looks like a good one.</p>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a> using <a href="http://www.messagedance.com/help/iphone-for-blog.html" target="_new">iPhone</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2008/09/08/leadership-in-market-share-power-of-brilliant-design-part-1-youtube-jvc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Atherton man trades his 2 mercedes car for scooter,smart car &#038; hybrid car</title>
		<link>http://www.savedmyday.com/2008/08/06/atherton-man-trades-his-2-mercedes-car-for-scootersmart-car-hybrid-car/</link>
		<comments>http://www.savedmyday.com/2008/08/06/atherton-man-trades-his-2-mercedes-car-for-scootersmart-car-hybrid-car/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 19:45:45 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[sent-from-my-iphone]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2008/08/06/atherton-man-trades-his-2-mercedes-car-for-scootersmart-car-hybrid-car/</guid>
		<description><![CDATA[It&#8217;s interesting how people go full throttle on &#8220;change&#8221; in life.  
  Blogged with MessageDance using iPhone &#124; Reply On Twitter
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s interesting how people go full throttle on &#8220;change&#8221; in life.  <img src="http://mdfoo.s3.amazonaws.com/rshetty/9b7c07836bba17cc3b86e58389f5e14e/photo.jpg" /></p>
<p><span style="text-align: right; color: rgb(204, 204, 204); font-size: x-small;"> <img src="http://www.messagedance.com/images/bwdance.png" style="border:none;" /> Blogged with <a href="http://messagedance.com/rshetty"><b>MessageDance</b></a> using <a href="http://www.messagedance.com/help/iphone-for-blog.html" target="_new">iPhone</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><font size="-2"><b>Reply On Twitter</b></font></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2008/08/06/atherton-man-trades-his-2-mercedes-car-for-scootersmart-car-hybrid-car/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apple&#8217;s new push notification service API</title>
		<link>http://www.savedmyday.com/2008/07/31/apples-new-push-notification-service-api/</link>
		<comments>http://www.savedmyday.com/2008/07/31/apples-new-push-notification-service-api/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 18:30:59 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Business]]></category>

		<category><![CDATA[Communication/Technology]]></category>

		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[API]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[appstore]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[notification]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2008/07/31/apples-new-push-notification-service-api/</guid>
		<description><![CDATA[http://www.crunchgear.com/2008/07/31/apple-hands-out-push-notification-service-api-to-developers-background-apps-ftw/
This should open up interesting transaction model for application developers. But this is a two-edged sword, cuts both ways. On one end applications can provide more real time information , to the point notifications which can serve like a virtual assistant to iPhone users. On the other end if not used right this can potentially [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.crunchgear.com/2008/07/31/apple-hands-out-push-notification-service-api-to-developers-background-apps-ftw/</p>
<p>This should open up interesting transaction model for application developers. But this is a two-edged sword, cuts both ways. On one end applications can provide more real time information , to the point notifications which can serve like a virtual assistant to iPhone users. On the other end if not used right this can potentially be a  spam/annoyance.</p>
<p>I&#8217;m sure API will mandate developers to provides user options to decide if device owners want application developers to push notifications or not. Depending on how important the app is users can drive the destiny of this interesting feature.</p>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2008/07/31/apples-new-push-notification-service-api/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AOL Radio is one of the best apps on iPhone appstore</title>
		<link>http://www.savedmyday.com/2008/07/24/aol-radio-is-one-of-the-best-apps-on-iphone-appstore/</link>
		<comments>http://www.savedmyday.com/2008/07/24/aol-radio-is-one-of-the-best-apps-on-iphone-appstore/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 03:57:35 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[aol-radio]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[appstore]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[sent-from-my-iphone]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2008/07/24/aol-radio-is-one-of-the-best-apps-on-iphone-appstore/</guid>
		<description><![CDATA[  Truley satisfies the basic need of listening to diversed music from   around the world. The best part is surprise element of discovering new music. Sometimes   &#8220;surprise me!&#8221; is better than &#8220;I&#8217;m looking for&#8230;&#8221;  Sent from my iPhone 
  Blogged with MessageDance using iPhone &#124; Reply On Twitter
]]></description>
			<content:encoded><![CDATA[<p><img src="http://mdfoo.s3.amazonaws.com/rshetty/21e378578efb7845cde062edac2d17b6/photo.jpg" />  Truley satisfies the basic need of listening to diversed music from   around the world. The best part is surprise element of discovering new music. Sometimes   &#8220;surprise me!&#8221; is better than &#8220;I&#8217;m looking for&#8230;&#8221;  Sent from my iPhone </p>
<p><span style="text-align: right; color: rgb(204, 204, 204); font-size: x-small;"> <img src="http://www.messagedance.com/images/bwdance.png" style="border:none;" /> Blogged with <a href="http://messagedance.com/rshetty"><b>MessageDance</b></a> using <a href="http://www.messagedance.com/help/iphone-for-blog.html" target="_new">iPhone</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><font size="-2"><b>Reply On Twitter</b></font></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2008/07/24/aol-radio-is-one-of-the-best-apps-on-iphone-appstore/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to avoid SSL verification on Ruby SOAP calls</title>
		<link>http://www.savedmyday.com/2008/07/22/how-to-avoid-ssl-verification-on-ruby-soap-calls/</link>
		<comments>http://www.savedmyday.com/2008/07/22/how-to-avoid-ssl-verification-on-ruby-soap-calls/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 22:10:59 +0000</pubDate>
		<dc:creator>Rajesh Shetty</dc:creator>
		
		<category><![CDATA[Daily-Life]]></category>

		<category><![CDATA[openssl]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[soap]]></category>

		<category><![CDATA[soap4r]]></category>

		<category><![CDATA[ssl]]></category>

		<category><![CDATA[webservice]]></category>

		<guid isPermaLink="false">http://www.savedmyday.com/2008/07/22/how-to-avoid-ssl-verification-on-ruby-soap-calls/</guid>
		<description><![CDATA[Problem


You will get following error when you are making SOAP calls to external web service using ruby&#8217;s SOAP library 


OpenSSL::SSL::SSLError: certificate verify failed 



code might look something like this


driver = SOAP::RPC::Driver.new(&#8220;https://&#60;your soap end point&#62;&#8221;, &#8220;&#60;soap URN&#62;&#8221;)

driver.add_method(&#8216;&#60;method&#62;&#8217;,&#8220;name&#8221;, &#8220;password&#8221;)
&#8230;..


Solution
 



Just add following line to your code (right before you make a call to end point )

driver.options[&#8220;protocol.http.ssl_config.verify_mode&#8221; ] = nil 


Above line turns [...]]]></description>
			<content:encoded><![CDATA[<div dir="ltr"><span style="font-weight: bold;">Problem</span></p>
<div><span style="font-weight: bold;"><br />
</span></div>
<div><span style="font-weight: bold;"><span style="font-weight: normal;">You will get following error when you are making SOAP calls to external web service using ruby&#8217;s SOAP library </span></span></div>
<div><span style="font-style: italic;"><br />
</span></div>
<div><span style="font-weight: bold;"><span style="font-style: italic;">OpenSSL::SSL::SSLError: certificate verify failed </span><br />
</span></div>
<div><span style="font-style: italic; font-weight: bold;"><br />
</span></div>
<div>code might look something like this</div>
<div><span style="font-style: italic; font-weight: bold;"><br />
</span></div>
<div><span style="font-style: italic; ">driver</span><span style="font-style: italic; font-weight: bold;"> = <span style="color: #2a00ff; font-family: Monaco; font-size: 11px; font-style: normal; font-weight: normal; "><span style="color: #000000">SOAP::RPC::Driver.</span><span style="color: #a4357a">new</span><span style="color: #000000">(</span>&#8220;https://&lt;your soap end point&gt;&#8221;<span style="color: #000000">, </span>&#8220;&lt;soap URN&gt;&#8221;<span style="color: #000000">)</span></span></span></div>
<div><span style="font-family: Monaco; font-size: 11px;"></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000">driver.add_method(</span>&#8216;&lt;method&gt;&#8217;<span style="color: #000000">,</span>&#8220;name&#8221;<span style="color: #000000">, </span>&#8220;password&#8221;<span style="color: #000000">)</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000;">&#8230;..</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000;"><br />
</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000; font-family: arial; font-size: 13px; font-weight: bold; ">Solution</span></p>
<p> </p>
<p></span></div>
<div><span style="font-weight: bold;"><br />
</span></div>
<div>Just add following line to your code (right before you make a call to end point )</div>
<div>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000">driver.options[</span>&#8220;protocol.http.ssl_config.verify_mode&#8221; <span style="color: #000000">] = </span><span style="color: #a4357a">nil</span><span style="color: #000000"> </span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000;"><br />
</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 11px/normal Monaco; "><span style="font-family: arial; font-size: 13px; ">Above line turns off the SSL verification while making soap calls.</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 11px/normal Monaco; "><span style="font-family: arial; font-size: 13px;"><br />
</span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font: normal normal normal 11px/normal Monaco; "> </p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000;"><br />
</span></p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Monaco; color: #2a00ff"><span style="color: #000000;"><br />
</span></p>
</div>
</div>
<p><span style="text-align: right; color: #cccccc; font-size: x-small;"> <img style="border:none;" src="http://www.messagedance.com/images/bwdance.png" alt="" /> Blogged with <a href="http://messagedance.com/rshetty"><strong>MessageDance</strong></a> using <a href="http://www.messagedance.com/help/gmail-for-blog.html" target="_new">Gmail</a></span> | <a href="http://twitter.com/home?status=@legalizenet" target="_blank"><span><strong>Reply On Twitter</strong></span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.savedmyday.com/2008/07/22/how-to-avoid-ssl-verification-on-ruby-soap-calls/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
