<?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>Things n&#039; Stuff video</title>
	<atom:link href="http://geek.co.il/wp/tag/video/feed" rel="self" type="application/rss+xml" />
	<link>http://geek.co.il/wp</link>
	<description>Thoughts about the universe in general</description>
	<lastBuildDate>Tue, 22 May 2012 23:23:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19978</generator>
		<item>
		<title>More Internet Explorer Funny Behaviors</title>
		<link>http://geek.co.il/wp/2010/10/06/more-internet-explorer-funny-behaviors</link>
		<comments>http://geek.co.il/wp/2010/10/06/more-internet-explorer-funny-behaviors#comments</comments>
		<pubDate>Wed, 06 Oct 2010 11:02:22 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2010/10/06/more-internet-explorer-funny-behaviors</guid>
		<description><![CDATA[Sometimes, when you try to develop things that work in Internet Explorer, you get to a point where you can just scratch your head and wonder &#8220;what the he*$ where they thinking of?!?&#8221;. This is one of those cases: This is in Internet Explorer 8 when set to IE7 mode, but this is very faithful [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, when you try to develop things that work in Internet Explorer, you get to a point where you can just scratch your head and wonder &#8220;what the he*$ where they thinking of?!?&#8221;. This is one of those cases:</p>
<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2010/10/06/more-internet-explorer-funny-behaviors&amp;f=http://geek.co.il/wp/wp-content/uploads/2010/10/IE7-acting-funny.flv"></script></p>
<p>This is in Internet Explorer 8 when set to IE7 mode, but this is very faithful to the original as I&#8217;ve tested it on a real IE7 and it behaves the same. What happens here is that when you scroll the page down, all absolutely positioned elements (the two &#8220;combo boxes&#8221; which are a custom UI widget and the text &#8220;Dimensions:&#8230; at the top right corner&#8221;) get pulled down a few pixels. When you scroll up, they get put back in the correct place.</p>
<p><span id="more-1664"></span></p>
<p>I would (maybe) understand if that would have happened only for the custom UI widgets (as there is a lot of Javascript code in place to support these, and I would understand if it behaves funny on broken browsers), but it affects the absolutely positioned text exactly the same, and there is nothing funky with that &#8211; its simply a block of text that is absolutely positioned.</p>
<p>On a slightly different subject, here is a useful tip for doing using Javascript to manipulate elements in IE7: if you have some Javascript that acts immediately after the page loads and put more content on the page and moves some elements around, if any of these elements are absolutely positioned then IE7 will ignore any changes to their layout, such as setting margins (especially negative margins) and such. This happens if you both change the element&#8217;s layout implictly (by adding content, for example) and explicitly (by setting style attributes) in the same Javascript call &#8211; the style attributes are ignored. </p>
<p>What you should do is to change the content in one Javascript call, then let the layout settle by exiting back to the rendering engine and then coming back to Javascript to change the layout. I do it like this:</p>
<p><code><br />
$('block').innerHTML = 'Some text that should be updated';<br />
window.setTimeout(function() {<br />
    $('block').style.marginTop = '-20px';<br />
},0);<br />
</code></p>
<p>The window.setTimeout() with a zero miliseconds timeout will cause the code to stop executing without doing the style manipulation, the Javascript machine hands the execution back to the browser which then lets the rendering engine repaint the screen with the updated content &#8211; the problem with IE7 is that the rendering engine fails to take into account style changes that were made after content changes were done in the same Javascript execution, so we don&#8217;t do that. As soon as the rendering engine is done &#8211; less then one milisecond later &#8211; the timeout kicks in and adjusts the style, and finally handing the execution back to the rendering engine to adjust that as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2010/10/06/more-internet-explorer-funny-behaviors/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2010/10/IE7-acting-funny.flv" length="" type="" />
		</item>
		<item>
		<title>Did you hear that the iPhone 4 was released?</title>
		<link>http://geek.co.il/wp/2010/06/08/did-you-hear-that-the-iphone-4-was-released</link>
		<comments>http://geek.co.il/wp/2010/06/08/did-you-hear-that-the-iphone-4-was-released#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:55:41 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Evangelism]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[3gpp]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2010/06/08/did-you-hear-that-the-iphone-4-was-released</guid>
		<description><![CDATA[It includes some breakthrough technologies such as &#8220;Video Conferencing&#8221;, so say Wired in their feature post Apple Unveils High-Resolution, Videoconferencing [sic] iPhone 4. It again&#160;boggles the mind, how Apple takes on a well known feature of existing products, tacks a&#160;bastardized&#160;version of it on a new revision of their product, and everyone hails at how innovative [...]]]></description>
			<content:encoded><![CDATA[<p>It includes some breakthrough technologies such as &#8220;Video Conferencing&#8221;, so say <a class="zem_slink" href="http://wired.com" title="Wired (magazine)" rel="homepage">Wired</a> in their feature post <a href="http://www.wired.com/gadgetlab/2010/06/live-blog-apples-iphone-centric-wwdc-2010/">Apple Unveils High-Resolution, Videoconferencing [sic] iPhone 4</a>.</p>
<p>It again&nbsp;boggles the mind, how Apple takes on a well known feature of existing products, tacks a&nbsp;bastardized&nbsp;version of it on a new revision of their product, and everyone hails at how innovative they are&#8230;</p>
<p>Here&#8217;s the Wired quote:</p>
<blockquote><p>iPhone 4 includes a front-facing camera and support for videoconferencing with other iPhone 4 users, via a feature called FaceTime.</p></blockquote>
<p>Here&#8217;s what I can do today with my 3 years old Ericsson P1i, my <a class="zem_slink" href="http://nokia.com" title="Nokia" rel="homepage">Nokia</a> E-whatever or my&nbsp;fiance&#8217;s&nbsp;$20 Nokia (as well as about half of Nokia phones released in the last 8 years or so), and many other phones from other manufacturers:</p>
<ul>
<li>Above mentioned phones include a front-facing camera and support video conferencing with any other phone that supports standard 3G video calls, on any 3G network.</li>
</ul>
<p>Also, apple announced their own video conferencing protocol (the so called &#8220;FaceTime&#8221;), <a href="http://www.readwriteweb.com/archives/apples_biggest_news_video_calling_as_open_standard.php">as discussed in ReadWriteWeb</a>:</p>
<blockquote><p>That&#8217;s what Apple aims to do with the introduction of FaceTime. The awkwardly named protocol could be implemented by all major handset manufacturers so that consumers could perform video calls as easily as we perform voice calls today.</p></blockquote>
<p><strong>There is only one problem with that statement: </strong><em>there is already</em> a standard protocol for video calls &#8211; as mandated by the cellular industry&#8217;s leading standard body, <a class="zem_slink" href="http://en.wikipedia.org/wiki/3GPP" title="3GPP" rel="wikipedia">3GPP</a>: the <a href="http://en.wikipedia.org/wiki/3G-324M">3G-324M</a> protocol, was developed jointly with <a class="zem_slink" href="http://en.wikipedia.org/wiki/International_Telecommunication_Union" title="International Telecommunication Union" rel="wikipedia">ITU</a> (<span style="text-decoration: underline;">the</span> telecom industry governing body for standardization) and is implemented in virtually <strong><span style="text-decoration: underline;">all</span><span style="font-weight: normal;"> video call capable cellular telecom devices.</span></strong></p>
<p>Now here&#8217;s a video:<br />
<span id="more-1544"></span></p>
<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2010/06/08/did-you-hear-that-the-iphone-4-was-released&amp;f=http://geek.co.il/wp/wp-content/uploads/2010/06/DSC00286-v2.flv"></script><br />
(you can also <a href="http://www.youtube.com/watch?v=sEPd-eXWC-A">watch this video on Youtube</a>)</p>
<p>I apologize for the directing instructions in Hebrew (the guy operating the calling phone had trouble locating the &#8220;Dial&#8221; button on the phone) and for the lousy focus of the camera when closing in on the phone (but you should be able to make out that the calling phone is showing me videoing Sagi &#8211; the guy that takes the call).</p>
<p>Thanks to Sagi and Alon for taking a time out of their busy schedule to help me rant about stuff like that.</p>
<h4>[Update:]</h4>
<p>I still can&#8217;t get over how stupid Americans are &#8211; here&#8217;s a direct quote from Apple&#8217;s presentation:</p>
<blockquote><p>
Steve Jobs: “This is amazing, I grew up here in America with Jetsons, Star Trek and communicators — just dreaming about video calling. And it’s real now.”
</p></blockquote>
<p>Yes, but it was real 8 years ago as well &#8211; a long time before even the first iPhone came out!</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.tuaw.com/2010/06/07/wwdc-2010-facetime-video-conferencing-coming-to-the-iphone/">FaceTime video conferencing coming to the iPhone</a> (tuaw.com)</li>
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//www.cnn.com/2010/TECH/mobile/06/07/apple.iphone.video/index.html&amp;a=19150447&amp;rid=6fa13338-6dcb-4892-8cb1-79a6ce4073c8&amp;e=bbea6d474e608d0a3529ee107e54ae8d">Will iPhone 4 usher in era of video calls?</a> (cnn.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/6fa13338-6dcb-4892-8cb1-79a6ce4073c8/" title="Reblog this post [with Zemanta]"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=6fa13338-6dcb-4892-8cb1-79a6ce4073c8" alt="Reblog this post [with Zemanta]" style="border:none;float:right" /></a><span class="zem-script pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2010/06/08/did-you-hear-that-the-iphone-4-was-released/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2010/06/DSC00286-v2.flv" length="" type="" />
		</item>
		<item>
		<title>פעם ידעו לבנות דברים</title>
		<link>http://geek.co.il/wp/2010/02/20/%d7%a4%d7%a2%d7%9d-%d7%99%d7%93%d7%a2%d7%95-%d7%9c%d7%91%d7%a0%d7%95%d7%aa-%d7%93%d7%91%d7%a8%d7%99%d7%9d</link>
		<comments>http://geek.co.il/wp/2010/02/20/%d7%a4%d7%a2%d7%9d-%d7%99%d7%93%d7%a2%d7%95-%d7%9c%d7%91%d7%a0%d7%95%d7%aa-%d7%93%d7%91%d7%a8%d7%99%d7%9d#comments</comments>
		<pubDate>Sat, 20 Feb 2010 15:27:04 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vintage]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2010/02/20/%d7%a4%d7%a2%d7%9d-%d7%99%d7%93%d7%a2%d7%95-%d7%9c%d7%91%d7%a0%d7%95%d7%aa-%d7%93%d7%91%d7%a8%d7%99%d7%9d</guid>
		<description><![CDATA[שימו לב לוידאו הבא: הוידאו ביו-טיוב זהירות ספויילרים (קראו אחרי הסרט) חומרה מדהימה &#8211; כנראה שהיא עדיין עובדת בגלל שהיא לא דיגיטלית או אפילו אלקטרונית. אני חושב שהמציג, פריק-מונקי, קצת פישל בכך שהוא לא הריץ PPP על גבי החיבור וניגש עם דפדפן מקומי, אבל זה כנראה היה מאריך את הסרט בעוד 10 דקות ומעבר לגבול [...]]]></description>
			<content:encoded><![CDATA[<p>שימו לב לוידאו הבא:<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/X9dpXHnJXaE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&#038;&#038;showinfo=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"><embed src="http://www.youtube-nocookie.com/v/X9dpXHnJXaE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&#038;&#038;showinfo=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></param></object><br />
<a href="http://www.youtube.com/watch?v=X9dpXHnJXaE">הוידאו ביו-טיוב</a></p>
<p><span id="more-1416"></span></p>
<p><strong>זהירות ספויילרים (קראו אחרי הסרט)</strong><br />
חומרה מדהימה &#8211; כנראה שהיא עדיין עובדת בגלל שהיא לא דיגיטלית או אפילו אלקטרונית.</p>
<p>אני חושב שהמציג, פריק-מונקי, קצת פישל בכך שהוא לא הריץ PPP על גבי החיבור וניגש עם דפדפן מקומי, אבל זה כנראה היה מאריך את הסרט בעוד 10 דקות ומעבר לגבול שיו-טיוב מרשים <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<div class="zemanta-pixie" style="margin-top:10px;height:15px"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/1fed59a0-45fa-4294-ad46-8d75ba471810/" title="Reblog this post [with Zemanta]"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_e.png?x-id=1fed59a0-45fa-4294-ad46-8d75ba471810" alt="Reblog this post [with Zemanta]" style="border:none;float:right"/></a><span class="zem-script more-related pretty-attribution"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2010/02/20/%d7%a4%d7%a2%d7%9d-%d7%99%d7%93%d7%a2%d7%95-%d7%9c%d7%91%d7%a0%d7%95%d7%aa-%d7%93%d7%91%d7%a8%d7%99%d7%9d/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>מצעד זכויות האדם הראשון בתל-אביב</title>
		<link>http://geek.co.il/wp/2009/12/12/%d7%9e%d7%a6%d7%a2%d7%93-%d7%96%d7%9b%d7%95%d7%99%d7%95%d7%aa-%d7%94%d7%90%d7%93%d7%9d-%d7%94%d7%a8%d7%90%d7%a9%d7%95%d7%9f-%d7%91%d7%aa%d7%9c-%d7%90%d7%91%d7%99%d7%91</link>
		<comments>http://geek.co.il/wp/2009/12/12/%d7%9e%d7%a6%d7%a2%d7%93-%d7%96%d7%9b%d7%95%d7%99%d7%95%d7%aa-%d7%94%d7%90%d7%93%d7%9d-%d7%94%d7%a8%d7%90%d7%a9%d7%95%d7%9f-%d7%91%d7%aa%d7%9c-%d7%90%d7%91%d7%99%d7%91#comments</comments>
		<pubDate>Sat, 12 Dec 2009 19:19:34 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Evangelism]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/12/12/%d7%9e%d7%a6%d7%a2%d7%93-%d7%96%d7%9b%d7%95%d7%99%d7%95%d7%aa-%d7%94%d7%90%d7%93%d7%9d-%d7%94%d7%a8%d7%90%d7%a9%d7%95%d7%9f-%d7%91%d7%aa%d7%9c-%d7%90%d7%91%d7%99%d7%91</guid>
		<description><![CDATA[[פוסט מתוארך אחורנית - לקח לי הרבה זמן לסדר את הוידאו בגלל בעיות מחשוב] הייתי אתמול במצעד זכויות האדם הראשון בארגון האגודה לזכויות האזרח בישראל. היה מאוד צבעוני. במיוחד למרות שאני לא מסכים עם הרבה מהדעות שהועלו על נס ודגל במצעד (שימו לב בוידאו) היה חשוב לצעוד על זכותם של אנשים להביע אותן (בפראפרזה על [...]]]></description>
			<content:encoded><![CDATA[<p>[פוסט מתוארך אחורנית - לקח לי הרבה זמן לסדר את הוידאו בגלל בעיות מחשוב]</p>
<p>הייתי אתמול במצעד זכויות האדם הראשון בארגון האגודה לזכויות האזרח בישראל. היה מאוד צבעוני. במיוחד למרות שאני לא מסכים עם הרבה מהדעות שהועלו על נס ודגל במצעד (שימו לב בוידאו) היה חשוב לצעוד על זכותם של אנשים להביע אותן (בפראפרזה על <a href="http://lmgtfy.com/?q=I+do+not+agree+with+a+word+that+you+say">הציטוט הידוע של וולטייר</a>).</p>
<p>חבל שהרבה אנשים שאני מכיר, ושאת דעותיהם אני מעריך ושאפשר לקרוא להם &#8220;הרוב הדומם&#8221;, לא חשבו שזה חשוב מספיק להגיע למצעד, אבל כן פגשתי שם את <a href="http://meni.livne.org">מני ליבנה</a> (כל הכבוד!).</p>
<p>בכל מקרה, הינה וידאו קצר של המצעד חולף ברחובות תל אביב &#8211; כ-14 דקות (בסך הכל כן הגיעו הרבה אנשים). המיקרופון במצלמה היה מקולקל אבל לא שהיה יותר מדי מה לשמוע במהלך רוב המצעד. במקום זה שמתי פסקול קצת רועש של מוזיקה חופשית, אז אני ממליץ להתחיל בלהחליש את עוצמת הקול במחשב <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<span id="more-1305"></span></p>
<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2009/12/12/מצעד-זכויות-האדם-הראשון-בתל-אביב&amp;f=http://geek.co.il/wp/wp-content/uploads/2009/12/parade.flv"></p>
<p>הפסקול מכיל:</p>
<ul>
<li>Zero Rhythm Dollar Boy מתוך Purity and Danger של Mr. Katapulto</li>
<li>Dig Deep Mix של Lasswell</li>
<li>I'm a Jass Vampire של Marion Harris</li>
<li>12bit vs. APC - Reflections של 12bit Murder</li>
</ul>
<p>ותודה ל-<a href="http://freemusicarchive.org/">Free Music Archive</a> שעזרו לי למצוא את המוזיקה.</script></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/12/12/%d7%9e%d7%a6%d7%a2%d7%93-%d7%96%d7%9b%d7%95%d7%99%d7%95%d7%aa-%d7%94%d7%90%d7%93%d7%9d-%d7%94%d7%a8%d7%90%d7%a9%d7%95%d7%9f-%d7%91%d7%aa%d7%9c-%d7%90%d7%91%d7%99%d7%91/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2009/12/parade.flv" length="" type="" />
		</item>
		<item>
		<title>גשם במודיעין</title>
		<link>http://geek.co.il/wp/2009/10/31/%d7%92%d7%a9%d7%9d-%d7%91%d7%9e%d7%95%d7%93%d7%99%d7%a2%d7%99%d7%9f</link>
		<comments>http://geek.co.il/wp/2009/10/31/%d7%92%d7%a9%d7%9d-%d7%91%d7%9e%d7%95%d7%93%d7%99%d7%a2%d7%99%d7%9f#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:19:43 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Local]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/10/31/%d7%92%d7%a9%d7%9d-%d7%91%d7%9e%d7%95%d7%93%d7%99%d7%a2%d7%99%d7%9f</guid>
		<description><![CDATA[גשם ראשון שלי במודיעין, וככה זה נראה: קשה קצת לראות בוידאו את הטיפות, אבל תפסתי את זה כבר לקראת סוף הגשם הכבד ואפשר לראות איך הנוף מתבהר לאט.]]></description>
			<content:encoded><![CDATA[<p>גשם ראשון שלי במודיעין, וככה זה נראה:<br />
<script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2009/11/02/גשם-במודיעין&amp;f=http://geek.co.il/wp/wp-content/uploads/2009/11/rain-over-modiin.flv"></script></p>
<p>קשה קצת לראות בוידאו את הטיפות, אבל תפסתי את זה כבר לקראת סוף הגשם הכבד ואפשר לראות איך הנוף מתבהר לאט.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/10/31/%d7%92%d7%a9%d7%9d-%d7%91%d7%9e%d7%95%d7%93%d7%99%d7%a2%d7%99%d7%9f/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2009/11/rain-over-modiin.flv" length="" type="" />
		</item>
		<item>
		<title>חכמת ה&#8221;אנשים הפשוטים&#8221;</title>
		<link>http://geek.co.il/wp/2009/07/10/wisdom-of-ordinary-people</link>
		<comments>http://geek.co.il/wp/2009/07/10/wisdom-of-ordinary-people#comments</comments>
		<pubDate>Fri, 10 Jul 2009 00:02:08 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/07/10/wisdom-of-ordinary-people</guid>
		<description><![CDATA[עוד וידאו מהאינטרנט: בכנס השנתי הבין-תחומי  TED מופיעים כל מיני אנשים ונותנים הרצאות על דברים מעניינים. בד&#8221;כ אני מקבל הרצאות על כל מיני דברים טכנולוגיים כמו ההרצאה של דיוויד מריל על siftables (חייבים לראות), אבל ההרצאה האחרונה שראיתי, של ברי שוורץ מדברת פשוט על חכמה &#8211; מה זה ולמה אי אפשר ללמד את זה: והנה [...]]]></description>
			<content:encoded><![CDATA[<p>עוד וידאו מהאינטרנט: בכנס השנתי הבין-תחומי  TED מופיעים כל מיני אנשים ונותנים הרצאות על דברים מעניינים. בד&#8221;כ אני מקבל הרצאות על כל מיני דברים טכנולוגיים כמו ההרצאה של <a href="http://www.ted.com/talks/david_merrill_demos_siftables_the_smart_blocks.html">דיוויד מריל על siftables</a> (חייבים לראות), אבל ההרצאה האחרונה שראיתי, של ברי שוורץ מדברת פשוט על חכמה &#8211; מה זה ולמה אי אפשר ללמד את זה:</p>
<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2009/07/10/wisdom-of-ordinary-people&amp;f=http://video.ted.com/talks/embed/BarrySchwartz_2009-embed_high.flv"></script></p>
<p>והנה קישור לעמוד המקורי ב<a href="http://www.ted.com/talks/barry_schwartz_on_our_loss_of_wisdom.html">אתר של TED</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/07/10/wisdom-of-ordinary-people/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://video.ted.com/talks/embed/BarrySchwartz_2009-embed_high.flv" length="106174007" type="video/x-flv" />
		</item>
		<item>
		<title>Microsoft Windows 7 &#8211; Another Mac rip-off</title>
		<link>http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off</link>
		<comments>http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off#comments</comments>
		<pubDate>Sun, 03 May 2009 20:48:13 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off</guid>
		<description><![CDATA[I installed a pre-release version of Windows 7 to play with &#8211; I&#8217;m actually supposed to know what I&#8217;m talking about when I dis the next version of Windows , and the second impression is what the title is about: it just behaves and looks more like Mac OS-X then all previous Windows releases. (Does [...]]]></description>
			<content:encoded><![CDATA[<p>I installed a pre-release version of Windows 7 to play with &#8211; I&#8217;m actually supposed to know what I&#8217;m talking about when I dis the next version of Windows <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> , and the second impression is what the title is about: it just behaves and looks more like Mac OS-X then all previous Windows releases.</p>
<p><span id="more-997"></span></p>
<p>(Does that mean that Windows 7 is better then all previous Windows releases?)</p>
<p>Anyway &#8211; check out the video:<br />
<script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&#038;i=http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off&#038;f=http://geek.co.il/wp/wp-content/uploads/2009/05/windows-7-taskbar.flv"></script></p>
<p>Although I don&#8217;t much care for the sickly transparent blue style they have going there, it has nice highlights and fade effects which are completely lost in the Flash video encoding&#8230; But as you can see, the new task bar works almost exactly like the Mac OS-X dock:</p>
<ul>
<li>Tasks are represented by icons.</li>
<li>Multiple windows of the same application are represented by the same icon (a sub-menu similar to &#8220;window group&#8221; in XP/Vista allows one to access all the windows).</li>
<li>You can &#8220;pin&#8221; a program to the task bar, so when the program closes, the task bar entry remains and acts as a shortcut buttons.</li>
</ul>
<p>If only they would make the taskbar icons grow as the mouse moves over them and the background tilted in 3D and it would be exactly like the Mac dock. On the other hand this setup lets them dump the annoying &#8220;quick launch&#8221; toolbar. I&#8217;m not saying its not a good setup, its good &#8211; Apple has been using it for several years now successfully &#8211; its just not an innovation.</p>
<p>Other visual changes you can see is that they&#8217;ve taken the &#8220;web-style&#8221; thing they started with Vista to extreme and lots of things look like web pages with underlined links and there are much less shiny buttons and icons:<br />
<script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&#038;i=http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off&#038;f=http://geek.co.il/wp/wp-content/uploads/2009/05/windows-7-ui-style.flv"></script></p>
<p>It kind of reminds me of all the &#8220;web styles&#8221; that were available for Linux a few years back, and they all sucked. The new UI does allow the incredibly large (and growing all the time) control panels that Windows sports to still be usable on small displays as the entire window content can be scrolled. They also put the &#8220;screen resolution&#8221; setting back into a useful place where people can find it.</p>
<p>To sum up &#8211; it looks like a nice update, but not what I was hoping for. It does feel slightly quicker then Vista that I had running on a similar setup, but it could very likely be the stronger computer and the better VM that I now use. I can&#8217;t really test it seriously on a VM, but from what I can see its slightly better then Vista in parts where Vista was OK, and just as bad as Vista in areas where Vista sucked.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/05/03/microsoft-windows-7-another-mac-rip-off/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2009/05/windows-7-taskbar.flv" length="3183661" type="video/x-flv" />
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2009/05/windows-7-ui-style.flv" length="4019939" type="video/x-flv" />
		</item>
		<item>
		<title>Just back from diving trip in Sinai</title>
		<link>http://geek.co.il/wp/2008/12/30/just-back-from-diving-trip-in-sinai</link>
		<comments>http://geek.co.il/wp/2008/12/30/just-back-from-diving-trip-in-sinai#comments</comments>
		<pubDate>Tue, 30 Dec 2008 16:00:28 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[diving]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tourism]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/12/30/just-back-from-diving-trip-in-sinai</guid>
		<description><![CDATA[As the title specifies, I just got back from a diving trip in Sinai &#8211; which included 4 days of scuba diving from a boat, with Assi and several great people that we met on the trip (guys &#8211; lets keep in touch, you all have my email ). Pictures from the trip are, as [...]]]></description>
			<content:encoded><![CDATA[<p>As the title specifies, I just got back from a diving trip in Sinai &#8211; which included 4 days of scuba diving from a boat, with Assi and several great people that we met on the trip (guys &#8211; lets keep in touch, you all have my email <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ).</p>
<p>Pictures from the trip are, as always, in my gallery &#8211; here is a <a href="http://geek.co.il/gallery/main.php?g2_itemId=13920">direct link to the album</a>. You can also see it in the &#8220;Latest Album&#8221; link in the sidebar below &#8211; its the one with the underwater motorcycle.</p>
<p>And in meta-posting, I&#8217;ve just noticed that the &#8220;Random Picture&#8221; widget (at the top of the sidebar) most often prefers to show more recent pictures &#8211; I need to check why is that, but in the mean time you can probably see underwater pictures from the Sinai dives there <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</p>
<h4>Update:</h4>
<p> because my pictures from inside the Thislegorm could really would have been better, and so that you can see what you are missing by not diving in the Red Sea, here is a short video I stole from youTube with all kinds of stuff you can see on the most famous sunken ship in the Red Sea &#8211; the SS Thislegorm:<br />
<script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&#038;i=http://geek.co.il/wp/2008/12/30/just-back-from-diving-trip-in-sinai&#038;f=http://geek.co.il/wp/wp-content/uploads/2008/12/thislegorm.flv"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/12/30/just-back-from-diving-trip-in-sinai/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The best letter opener ever!</title>
		<link>http://geek.co.il/wp/2008/07/29/the-best-letter-opener-ever</link>
		<comments>http://geek.co.il/wp/2008/07/29/the-best-letter-opener-ever#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:01:01 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Stuff]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/07/29/the-best-letter-opener-ever</guid>
		<description><![CDATA[Sorry the for the too much videos lately and not enough actual content, but I&#8217;ve seen this and simply couldn&#8217;t resist: Video on Snotr]]></description>
			<content:encoded><![CDATA[<p>Sorry the for the too much videos lately and not enough actual content, but I&#8217;ve seen this and simply couldn&#8217;t resist: </p>
<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&#038;i=http://geek.co.il/wp/2008/07/29/the-best-letter-opener-ever&#038;f=http://videos.snotr.com/1421.flv"></script><br />
<a href="http://www.snotr.com/video/1421">Video on Snotr</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/07/29/the-best-letter-opener-ever/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>סתם וידאו משעשע שמצאתי באינטרנט</title>
		<link>http://geek.co.il/wp/2008/07/15/%d7%a1%d7%aa%d7%9d-%d7%95%d7%99%d7%93%d7%90%d7%95-%d7%9e%d7%a9%d7%a2%d7%a9%d7%a2-%d7%a9%d7%9e%d7%a6%d7%90%d7%aa%d7%99-%d7%91%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98</link>
		<comments>http://geek.co.il/wp/2008/07/15/%d7%a1%d7%aa%d7%9d-%d7%95%d7%99%d7%93%d7%90%d7%95-%d7%9e%d7%a9%d7%a2%d7%a9%d7%a2-%d7%a9%d7%9e%d7%a6%d7%90%d7%aa%d7%99-%d7%91%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98#comments</comments>
		<pubDate>Tue, 15 Jul 2008 19:28:04 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/07/15/%d7%a1%d7%aa%d7%9d-%d7%95%d7%99%d7%93%d7%90%d7%95-%d7%9e%d7%a9%d7%a2%d7%a9%d7%a2-%d7%a9%d7%9e%d7%a6%d7%90%d7%aa%d7%99-%d7%91%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98</guid>
		<description><![CDATA[Bumble B-Boy by PatrickBoivin מצא חן בעיניי תנועות המצלמה &#8211; בהתחשב בכך שזה stop-motion קלאסי חובבני (לבחור יש עוד כמה כאלה) זה מושקע למדי.]]></description>
			<content:encoded><![CDATA[<p><script src="/wp/wp-content/plugins/jwplayer/jwplayer.js?p=thingsnstuff-9011&amp;i=http://geek.co.il/wp/2008/07/15/סתם-וידאו-משעשע-שמצאתי-באינטרנט&amp;w=425&amp;h=355&amp;f=http://geek.co.il/wp/wp-content/uploads/2008/07/bumble-bboy.flv"></script><br />
<strong><a href="http://www.dailymotion.com/swf/x5n945">Bumble B-Boy</a></strong><br />
<em>by <a href="http://www.dailymotion.com/PatrickBoivin">PatrickBoivin</a></em></p>
<p>מצא חן בעיניי תנועות המצלמה &#8211; בהתחשב בכך שזה stop-motion קלאסי חובבני (לבחור יש עוד כמה כאלה) זה מושקע למדי.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/07/15/%d7%a1%d7%aa%d7%9d-%d7%95%d7%99%d7%93%d7%90%d7%95-%d7%9e%d7%a9%d7%a2%d7%a9%d7%a2-%d7%a9%d7%9e%d7%a6%d7%90%d7%aa%d7%99-%d7%91%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
<enclosure url="http://geek.co.il/wp/wp-content/uploads/2008/07/bumble-bboy.flv" length="3755531" type="video/x-flv" />
		</item>
	</channel>
</rss>

