<?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>My Internet journey</title>
	<atom:link href="http://pishpesh.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://pishpesh.net/blog</link>
	<description>One day son, this will all be yours...</description>
	<lastBuildDate>Tue, 09 Mar 2010 20:54:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>&#8216;too much time spent in unload handler&#8217; &#8211; chrome error</title>
		<link>http://pishpesh.net/blog/2010/03/08/too-much-time-spent-in-unload-handler-chrome-error/</link>
		<comments>http://pishpesh.net/blog/2010/03/08/too-much-time-spent-in-unload-handler-chrome-error/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:24:45 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Technical articles]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=113</guid>
		<description><![CDATA[Bumped into this error while invoking a webcal link (and staying on the same page). Apparently clicking the link starts a sequence that eventually fires onbeforeload, which in its turn causes the error.
Reports of this bug first popped in search near the end of February January and probably related to a recent chrome build (Chrome [...]]]></description>
			<content:encoded><![CDATA[<p>Bumped into this error while invoking a <em>webcal</em> link (and staying on the same page). Apparently clicking the link starts a sequence that eventually fires <em>onbeforeload</em>, which in its turn causes the error.</p>
<p><a href="http://code.google.com/p/chromium/issues/detail?id=36559">Reports</a> of this bug first popped in search near the end of <del datetime="2010-03-09T20:57:46+00:00">February</del> January and probably related to a recent chrome build (Chrome Version : 4.0.249.89, Official Build 38071). After letting the issue for few days, I did some extra searching today and came up with a tweet by <a href="http://twitter.com/rvdavid">@rvdavid</a>:<em>Held up by a &#8220;Too much time spent in unload handler.&#8221; error on #chromium. in trying to find solutions, All I find &#8220;unconfirmed&#8221; #bug reports</em>. Replying to the tweet led me to a <a href="http://code.google.com/p/chromium/issues/detail?id=33441">possible solution</a> by the Chrome team. As far as I understand we may see the solution already merged into one of the next official releases. Will update.</p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2010/03/08/too-much-time-spent-in-unload-handler-chrome-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clearing an input of type=&#8217;file&#8217;</title>
		<link>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/</link>
		<comments>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 10:31:28 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Technical articles]]></category>
		<category><![CDATA[Clarizen]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=106</guid>
		<description><![CDATA[For obvious reasons, one cannot clear an input of type &#8216;file&#8217; (in fact, the &#8216;value&#8217; cannot be changed at all). Previous attempts to achieve this using setAttribute or direct access to the &#8216;value&#8217; property has failed.
Our guys @ the UI team has found a useful workaround:



&#160;


function resetUploadControl&#40;control&#41;


&#123; &#160; 


&#160; &#160; var parent = control.parentNode;


&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>For obvious reasons, one cannot clear an input of type &#8216;file&#8217; (in fact, the &#8216;value&#8217; cannot be changed at all). Previous attempts to achieve this using setAttribute or direct access to the &#8216;value&#8217; property has failed.<br />
Our guys @ the UI team has found a useful workaround:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">function</span> resetUploadControl<span class="br0">&#40;</span>control<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span> &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw2">var</span> parent = control.<span class="me1">parentNode</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; parent.<span class="me1">removeChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw2">var</span> tempForm = document.<span class="me1">createElement</span><span class="br0">&#40;</span><span class="st0">&quot;form&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm.<span class="me1">appendChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm.<span class="me1">reset</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; tempForm.<span class="me1">removeChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm = <span class="kw2">null</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; parent.<span class="me1">appendChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
</ol>
</div>
<p>First, grab the elements&#8217; parent, remove the control from it and append it to a temporary form. Input elements of type file can only be cleared by resetting the form they are part of, thus the temp form.<br />
After resetting (and achieving our empty-valued input goal), re-append the control to its original parent and destroy the temp form. Mission accomplished! :)</p>
<p>Credit goes to <a href="http://il.linkedin.com/in/roniger">Ori Roniger</a> &#038; <a href="http://il.linkedin.com/in/vadimkononov">Vadim Kononov</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Apps stops IE6 support</title>
		<link>http://pishpesh.net/blog/2010/02/02/google-apps-stops-ie6-support/</link>
		<comments>http://pishpesh.net/blog/2010/02/02/google-apps-stops-ie6-support/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 06:43:45 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/2010/02/02/google-apps-stops-ie6-support/</guid>
		<description><![CDATA[Just got this by mail:
Dear Google Apps admin,
In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology.  This includes faster JavaScript processing and new standards like HTML5.  As a result, over the course of 2010, we [...]]]></description>
			<content:encoded><![CDATA[<p>Just got this by mail:</p>
<blockquote><p>Dear Google Apps admin,</p>
<p>In order to continue to improve our products and deliver more sophisticated features and performance, we are harnessing some of the latest improvements in web browser technology.  This includes faster JavaScript processing and new standards like HTML5.  As a result, over the course of 2010, we will be phasing out support for Microsoft Internet Explorer 6.0 as well as other older browsers that are not supported by their own manufacturers.</p>
<p>We plan to begin phasing out support of these older browsers on the Google Docs suite and the Google Sites editor on March 1, 2010.  After that point, certain functionality within these applications may have higher latency and may not work correctly in these older browsers. Later in 2010, we will start to phase out support for these browsers for Google Mail and Google Calendar.</p>
<p>Google Apps will continue to support Internet Explorer 7.0 and above, Firefox 3.0 and above, Google Chrome 4.0 and above, and Safari 3.0 and above.</p>
<p>Starting this week, users on these older browsers will see a message in Google Docs and the Google Sites editor explaining this change and asking them to upgrade their browser.  We will also alert you again closer to March 1 to remind you of this change.</p>
<p>In 2009, the Google Apps team delivered more than 100 improvements to enhance your product experience.  We are aiming to beat that in 2010 and continue to deliver the best and most innovative collaboration products for businesses.</p>
<p>Thank you for your continued support!</p>
<p>Sincerely,</p>
<p>The Google Apps team</p></blockquote>
<p>I really hope this makes a difference and the IE6 abundance by a giant will eventually lead to the disappearance of this archaic and web-holding-back browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2010/02/02/google-apps-stops-ie6-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steaming hot, straight from the oven &#8211; bLog-On</title>
		<link>http://pishpesh.net/blog/2009/12/31/steaming-hot-straight-from-the-oven-blog-on/</link>
		<comments>http://pishpesh.net/blog/2009/12/31/steaming-hot-straight-from-the-oven-blog-on/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 19:42:44 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=101</guid>
		<description><![CDATA[Just aired, Log-On&#8217;s job recruitment blog, didn&#8217;t know blogger is customizable at all&#8230; :)
http://b.log-on.com
]]></description>
			<content:encoded><![CDATA[<p>Just aired, Log-On&#8217;s job recruitment blog, didn&#8217;t know blogger is customizable at all&#8230; :)<br />
<a href="http://b.log-on.com">http://b.log-on.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/12/31/steaming-hot-straight-from-the-oven-blog-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Omer goes crazy</title>
		<link>http://pishpesh.net/blog/2009/12/15/omer-goes-crazy/</link>
		<comments>http://pishpesh.net/blog/2009/12/15/omer-goes-crazy/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 08:36:17 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Vidoes]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Omer]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=98</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OXqUE9D27Zs&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OXqUE9D27Zs&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/12/15/omer-goes-crazy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proud to be part of the team</title>
		<link>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/</link>
		<comments>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:25:37 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Clarizen]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/</guid>
		<description><![CDATA[It was just published that Clarizen has secured $8M in financing from leading VCs.

I joined Clarizen about 5 months ago, working for the UI/UX team.

]]></description>
			<content:encoded><![CDATA[<p>It was just published that <a href="http://in.sys-con.com/node/1219411">Clarizen has secured $8M in financing from leading VCs.<br />
</a></p>
<p>I joined Clarizen about 5 months ago, working for the UI/UX team.</p>
<p><img class="size-full wp-image-93 alignleft" title="10530_159032564472_652299472_2667609_3852990_n" src="http://pishpesh.net/blog/wp-content/uploads/2009/12/10530_159032564472_652299472_2667609_3852990_n.jpg" alt="10530_159032564472_652299472_2667609_3852990_n" width="423" height="330" /></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My kid is a genius! :)</title>
		<link>http://pishpesh.net/blog/2009/11/09/my-kid-is-a-genius/</link>
		<comments>http://pishpesh.net/blog/2009/11/09/my-kid-is-a-genius/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 09:36:48 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Vidoes]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Omer]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=88</guid>
		<description><![CDATA[Omer will be 9 mothes this week :)

]]></description>
			<content:encoded><![CDATA[<p>Omer will be 9 mothes this week :)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/g0n8dg-5wUk&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/g0n8dg-5wUk&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/11/09/my-kid-is-a-genius/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMarks for chrome alpha 0.4.19</title>
		<link>http://pishpesh.net/blog/2009/09/15/xmarks-for-chrome-alpha-0-4-19/</link>
		<comments>http://pishpesh.net/blog/2009/09/15/xmarks-for-chrome-alpha-0-4-19/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 08:04:56 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Utils]]></category>
		<category><![CDATA[XMarks]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/2009/09/15/xmarks-for-chrome-alpha-0-4-19/</guid>
		<description><![CDATA[I&#8217;m a heavy user of XMarks as I use 3 different browsers, each one for it&#8217;s purpose (IE for testing at work when we are developing for mainly IE, FF for general dev and Chrome for fast Internet :)).
XMarks has now entered the alpha stage for the Chrome plug-in. I tested it on Chrome 4.0.206.1 [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a heavy user of <a href="http://www.xmarks.com/" target="_blank">XMarks </a>as I use 3 different browsers, each one for it&#8217;s purpose (IE for testing at work when we are developing for mainly IE, FF for general dev and Chrome for fast Internet :)).</p>
<p>XMarks has now entered the alpha stage for the Chrome plug-in. I tested it on <a href="http://www.filehippo.com/download_google_chrome/" target="_blank">Chrome 4.0.206.1</a> and it works great so far.</p>
<p><img class="alignnone size-full wp-image-84" title="Chrome XMarks alpha" src="http://pishpesh.net/blog/wp-content/uploads/2009/09/chrome_xmarks_11.JPG" alt="Chrome XMarks alpha" width="371" height="278" /></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/09/15/xmarks-for-chrome-alpha-0-4-19/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET bugs(!!) on official Zune HD site</title>
		<link>http://pishpesh.net/blog/2009/09/15/asp-net-bugs-on-official-zune-hd-site/</link>
		<comments>http://pishpesh.net/blog/2009/09/15/asp-net-bugs-on-official-zune-hd-site/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 07:22:24 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Come on]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=73</guid>
		<description><![CDATA[Just visited the new Zune HD official web site, really wanted to look around.
Look what I got when I clicked &#8220;Personalize Zune HD&#8221;:
Same goes to the &#8220;Buy&#8221; link&#8230;. Come on, please, some QA before depolying.
The error:
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific [...]]]></description>
			<content:encoded><![CDATA[<p>Just visited the<a href="http://www.zune.net/en-us/products/zunehd/default.htm" target="_blank"> new Zune HD official web site</a>, really wanted to look around.</p>
<p>Look what I got when I clicked &#8220;Personalize Zune HD&#8221;:</p>
<div id="attachment_74" class="wp-caption alignnone" style="width: 378px"><img class="size-large wp-image-74  " title="ms_bug" src="http://pishpesh.net/blog/wp-content/uploads/2009/09/ms_bug-1024x772.jpg" alt="ASP.NET bug, Zune HD official website" width="368" height="278" /><p class="wp-caption-text">ASP.NET bug, Zune HD official website</p></div>
<p>Same goes to the &#8220;Buy&#8221; link&#8230;. <strong>Come on, please, some QA before depolying.</strong></p>
<p>The error:</p>
<p><strong style="font-family: Verdana; font-weight: bold; color: black; margin-top: -5px;"><em>Description: </em></strong><em>An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.</p>
<p></em><strong style="font-family: Verdana; font-weight: bold; color: black; margin-top: -5px;"><em>Parser Error Message: </em></strong><em>Could not load type &#8216;ITSP.Zune.Customize&#8217;.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/09/15/asp-net-bugs-on-official-zune-hd-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrong image in article. mistake or a saying?</title>
		<link>http://pishpesh.net/blog/2009/09/13/wrong-image-in-article-mistake-or-a-saying/</link>
		<comments>http://pishpesh.net/blog/2009/09/13/wrong-image-in-article-mistake-or-a-saying/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 06:19:56 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[press]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=63</guid>
		<description><![CDATA[In an article discussing the rise of apartments pricing in Israel during the latest financial crisis, an image of a cemetery was added with the writing &#8220;The big drop in interest rates caused a big rise in the demand for apartments&#8221;. A cynical approach or a careless editor?
]]></description>
			<content:encoded><![CDATA[<p>In an <a title="Google translate version of the article" href="http://translate.google.com/translate?hl=iw&amp;sl=iw&amp;tl=en&amp;u=http://finance.walla.co.il/%3Fw%3D/139/1572473" target="_blank">article </a>discussing the rise of apartments pricing in Israel during the latest financial crisis, an image of a cemetery was added with the writing &#8220;The big drop in interest rates caused a big rise in the demand for apartments&#8221;. A cynical approach or a careless editor?</p>
<div id="attachment_71" class="wp-caption alignnone" style="width: 261px"><img class="size-full wp-image-71" title="wrong_image" src="http://pishpesh.net/blog/wp-content/uploads/2009/09/wrong_image2.JPG" alt="Google translated version of the image" width="251" height="233" /><p class="wp-caption-text">Google translated version of the image</p></div>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/09/13/wrong-image-in-article-mistake-or-a-saying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
