<?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 Social</title>
	<atom:link href="http://geek.co.il/wp/category/social/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>Mandatory Access Control And Malware</title>
		<link>http://geek.co.il/wp/2011/07/18/mandatory-access-control-and-malware</link>
		<comments>http://geek.co.il/wp/2011/07/18/mandatory-access-control-and-malware#comments</comments>
		<pubDate>Mon, 18 Jul 2011 07:20:08 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Evangelism]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2011/07/18/mandatory-access-control-and-malware</guid>
		<description><![CDATA[After listening to the virtus/malware discussion on LUG Radio&#8217;s new (but apparently one-off) show (check it out at lugradio.org, these guys are hilarious), got me thinking about how much Linux users are exposed to malware. Lets forget, for the sake of the discussion, the technical attacks as these are relatively easy to handle and Linux [...]]]></description>
			<content:encoded><![CDATA[<p>After listening to the virtus/malware discussion on LUG Radio&#8217;s new (but apparently one-off) show (<a title="LUG Radio" href="http://www.lugradio.org/">check it out at lugradio.org, these guys are hilarious</a>), got me thinking about how much Linux users are exposed to malware.</p>
<p>Lets forget, for the sake of the discussion, the technical attacks as these are relatively easy to handle and Linux operating systems are already pretty well protected against such. The main vector of attack for malware these days is Social Engineering anyway &#8211; this is how Mac <a href="http://thenextweb.com/apple/2011/05/02/bogus-macdefender-malware-campaign-targets-mac-users-using-google-images/">OS-X users get attacked by malware</a>: you browse a web site, and an image that looks like a a blinking dialog box notifies you that your computer has been infected by a virus and prompts you to download this &#8220;fix&#8221;.</p>
<p>Most of us, technically inclined users, sneer at this type of &#8220;threat&#8221;, but most people aren&#8217;t technically inclined and there are enough people out there that will be fooled by this practice time and time again. Click the image and a binary gets downloaded to your computer and if it is in the correct format it will get executed.</p>
<p><span id="more-1756"></span>This is where the Linux side of business starts (and where the &#8220;Mandatory Access Control&#8221; part of the title comes to play) &#8211; a binary that you just downloaded and executed cannot just go and do anything. Most Linux operating systems these days (at least the more popular ones) employ some sort of &#8220;Mandatory Access Control&#8221; &#8211; be it SELinux or AppArmor &#8211; which means that unless you specifically say, ahead of time, that some program can do something &#8211; then it can&#8217;t. This applies to all access including access to user files.</p>
<p>The thing is &#8211; Linux users are already well protected against the user of &#8220;downloading an executable file&#8221; and running it: You have to download the file and save it somewhere that you can find, then double click it. At which point a dialog box pops up and tells you that you can&#8217;t execute files with out the &#8220;execute bit&#8221;, so you have to open the file properties, go to permissions, figure out what the &#8220;execute bit&#8221; is and set it, click OK and try to run the file again. That is on Ubuntu &#8211; other OSs have even a worse user experience. So you see &#8211; no worries there: if a user is gullible enough to download just any file of the internet and try to run it &#8211; there&#8217;s no way they&#8217;re going to be able to do it.</p>
<h3>So what&#8217;s the problem?</h3>
<p>The problem is that if you can target Mac users and get them to download a Mac specific binary file (vs. a Windows specific executable for Windows users), then you can easily target specific (and popular) Linux distributions by getting their users binary files formatted with the appropriate software installation package format (&#8220;.deb&#8221; for Ubuntu, Debian and related OSs and &#8220;.rpm&#8221; for Fedora, SuSE and related OSs). All these operating systems, when you start downloading a file with the appropriate format, helpfully pop up a dialog that allows you to easily type in your password and install the &#8220;helpful software&#8221; <em>right into your operating system</em>!</p>
<p>Unlike getting a user to just execute a program, which will run with the user&#8217;s access level and at worst will trash the user&#8217;s files, this procedure lets loose an unverified piece of software into your operating system with full administration privileges. With that kind of access, such software can easily install its own &#8220;Mandatory Access Policy&#8221; that lets itself do whatever it wants.</p>
<p>And how does your operating system protect you from this vector? Very little if at all. At least in Ubuntu you get the very detailed &#8220;dpkg UI&#8221; dialog which presents a lot of information on the software you are going to install before you click OK &#8211; which may also expose you to additional social engineering. Fedora on the other hand does very little except show you the file name and allow you to click OK.</p>
<p>At no point there are warning to help the user decide what is the right thing to do &#8211; not that I expect this will do any good: uneducated users are very prone to just click &#8220;OK&#8221; to any dialog box that pops up without ever reading what it says, let alone considering it.</p>
<p>The Android styled &#8220;Mandatory Access Control&#8221; that has programs request specific permissions and the user is presented with this list for approval is not any better &#8211; for most users this is just another dialog that they don&#8217;t have to read if they just want to click OK.</p>
<h3>What can be done about it?</h3>
<p>Very little I&#8217;m afraid. Linux users are currently around 1~2% of total internet traffic and as long as it stays this low it unlikely malware authors will invest the extra effort to target us. But if we want to get more market share &#8211; and that means getting more uninformed people to use Linux based operating systems, then this will change.</p>
<p>I think its unhelpful to think that we can educate people to the point that these type of social engineering attacks will fail. If we really want to tackle the problem we have to be pro-active about defense, and as they say &#8211; &#8220;the best defense is a good offense&#8221; <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>What I propose should be done is that whenever a user tries to install a software using the &#8220;single click install&#8221; procedure, the confirmation dialog will be much more verbose and ask the user, not for their password, but to fill a simple multiple selection quiz: choose one of the provided reasons you want to install this software (or click &#8220;other&#8221; and type your own) and a couple of other questions like you get when you try to subscribe to a website &#8211; &#8220;where did you hear about it&#8221; and such. Not something truly drastic, just enough to get the user to think a bit more about what they are about to do.</p>
<p>After completing the dialog, the system will file all this information, along with the URL from which the software was downloaded, to a central repository on the internet (without any personally identifying information of course, not even the IP address) and interested individuals can look at these reports and vote if the software is valid or malware. Whenever an operating system is trying to install a specific piece of software from the internet, it can first look up the target in this database and if the consensus on the internet is that this is malware, then the operating system can refuse to install &#8211; very similar to how the website verification process that Internet Explorer and Mozilla Firefox use.</p>
<p>Advanced users can be spared this process (if they want to) as command line installations will not trigger this behavior and if you are really inclined there would be a checkbox in some system settings dialog that says something like &#8220;stop harassing me when I install software off the internet&#8221;.</p>
<p>So this is my proposal. What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2011/07/18/mandatory-access-control-and-malware/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Copyright litigation strikes one more absurdity</title>
		<link>http://geek.co.il/wp/2009/12/17/copyright-litigation-strikes-one-more-absurdity</link>
		<comments>http://geek.co.il/wp/2009/12/17/copyright-litigation-strikes-one-more-absurdity#comments</comments>
		<pubDate>Thu, 17 Dec 2009 20:16:16 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/12/17/copyright-litigation-strikes-one-more-absurdity</guid>
		<description><![CDATA[Its one of those things that was bound to happen eventually, we doesn&#8217;t make it any less stupid: Pub owner fined £8,000 because a guest downloaded copyrighted material on the pub&#8217;s open wireless hotspot. From reading the article, I&#8217;m not really clear who have levied this fine &#8211; from a naive reading of the article, [...]]]></description>
			<content:encoded><![CDATA[<p>Its one of those things that was bound to happen eventually, we doesn&#8217;t make it any less stupid: <a href="http://news.zdnet.co.uk/communications/0,1000000085,39909136,00.htm">Pub owner fined £8,000 because a guest downloaded copyrighted material on the pub&#8217;s open wireless hotspot</a>.</p>
<p>From reading the article, I&#8217;m not really clear who have levied this fine &#8211; from a naive reading of the article, it sounds like the complaint was filed against the Pub&#8217;s wireless internet service provider &#8211; <a href="http://en.wikipedia.org/wiki/The_Cloud_(company)">The Cloud</a> (a company that provides wireless hotspot services to businesses), and its not clear whether a court was involved or if the fine was levied by some sort of arbitration process handled by the company.</p>
<p><span id="more-1283"></span></p>
<p>Obviously there is a serious issue here &#8211; A business that provides internet access to its clients, whether if its the primary service or a complementary service, whether its free or for charge, is not really a subscriber and should benefit from the same &#8220;<a class="zem_slink" title="Safe harbor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Safe_harbor">safe harbor</a>&#8221; provisions as any service provider: a communication service provider is not responsible for misuse of its service for illegal purposes. The same way that The Cloud is not responsible for the infringement, the pub itself is just as much exempt under the same clause.</p>
<p>I would have taken them to court about this.</p>
<p>I wonder how this apply to the ACUM (the Israeli equivalent of the RIAA) operating of suing businesses that have a radio open to a music channel during business hours under the assumption that this is unlicensed rebroadcasting of copyrighted music.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/646ecab3-cda6-457d-80fc-a980325628d7/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=646ecab3-cda6-457d-80fc-a980325628d7" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/12/17/copyright-litigation-strikes-one-more-absurdity/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/12/08/%d7%9e%d7%96%d7%9c-%d7%98%d7%95%d7%91-%d7%9c%d7%9e%d7%90%d7%92%d7%a8-%d7%94%d7%91%d7%99%d7%95%d7%9e%d7%98%d7%a8%d7%99</link>
		<comments>http://geek.co.il/wp/2009/12/08/%d7%9e%d7%96%d7%9c-%d7%98%d7%95%d7%91-%d7%9c%d7%9e%d7%90%d7%92%d7%a8-%d7%94%d7%91%d7%99%d7%95%d7%9e%d7%98%d7%a8%d7%99#comments</comments>
		<pubDate>Tue, 08 Dec 2009 18:03:48 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Evangelism]]></category>
		<category><![CDATA[Local]]></category>
		<category><![CDATA[Social]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/12/08/%d7%9e%d7%96%d7%9c-%d7%98%d7%95%d7%91-%d7%9c%d7%9e%d7%90%d7%92%d7%a8-%d7%94%d7%91%d7%99%d7%95%d7%9e%d7%98%d7%a8%d7%99</guid>
		<description><![CDATA[לא כתבתי על חוק אמצעי זיהוי ביומטריים אצלי בבלוג עד עכשיו, למרות שזה נושא שלי אישית מאוד חשוב (ואני מאמין שצריך להיות חשוב לכל אזרחי מדינת ישראל), ואני לא באמת הולך להתחיל לכתוב על זה עכשיו כשהחוק עבר ועוד מעט יתחיל להיות מיושם: יש רבים וטובים ממני שמדברים על הנושא הזה ארוכות, כמו לדוגמה בבלוג [...]]]></description>
			<content:encoded><![CDATA[<p>לא כתבתי על חוק אמצעי זיהוי ביומטריים אצלי בבלוג עד עכשיו, למרות שזה נושא שלי אישית מאוד חשוב (ואני מאמין שצריך להיות חשוב לכל אזרחי מדינת ישראל), ואני לא באמת הולך להתחיל לכתוב על זה עכשיו כשהחוק עבר ועוד מעט יתחיל להיות מיושם: יש רבים וטובים ממני שמדברים על הנושא הזה ארוכות, כמו לדוגמה ב<a href="http://2jk.org/praxis/">בלוג של יהונתן קלינגר</a>.</p>
<p>אבל בפרספקטיבה של 24 שעות אחרי, הנה אסופה של מאמרים מבלוגים אחרים בנושא:</p>
<ul>
<li><a href="http://ira.abramov.org/blog/2009/12/08/israels-biometric-database-law-has-passed">עירא אברמוב</a></li>
<li><a href="http://2jk.org/praxis/?p=2486">יהונתן קלינגר</a></li>
<li><a href="http://ekarine.org/heb/2009/12/compromise/">דר&#8217; קרין ברזילי-נהון</a></li>
<li><a href="http://www.segmany.com/blog/?p=359">ירון סגמן</a></li>
<li><a href="http://www.holesinthenet.co.il/archives/6844">גל מור (חורים ברשת)</a></li>
<li><a href="http://www.talgalili.com/?p=1173">טל גלילי</a></li>
<li><a href="http://www.notes.co.il/carmi/62996.asp">נעמה כרמי</a></li>
<li><a href="http://blogdebate.org/dubi/archives/1103">דובי קננגיסר</a></li>
<li><a href="http://zilzul.com/coldfusion/?p=5600">היתוך קר למפגרים</a></li>
<li><a href="http://www.meirshitrit.co.il/?p=293">מאירשטרית.קו.יל</a></li>
<li><a href="http://mishory.blogspot.com/2009_12_01_archive.html">יובל מישורי (הפילוסופיה של מרפי)</a></li>
</ul>
<p>נ.ב. ולמי שהתעניין, אני נורא חולה ולא יוצא מהבית (ירביצו לי אם אני אנסה <img src='http://geek.co.il/wp/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  ).</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/12/08/%d7%9e%d7%96%d7%9c-%d7%98%d7%95%d7%91-%d7%9c%d7%9e%d7%90%d7%92%d7%a8-%d7%94%d7%91%d7%99%d7%95%d7%9e%d7%98%d7%a8%d7%99/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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>Israeli road-rage rant</title>
		<link>http://geek.co.il/wp/2009/03/30/israeli-road-rage-rant</link>
		<comments>http://geek.co.il/wp/2009/03/30/israeli-road-rage-rant#comments</comments>
		<pubDate>Mon, 30 Mar 2009 19:57:19 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Local]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/03/30/israeli-road-rage-rant</guid>
		<description><![CDATA[[Sorry about this Israel-specific post being in English - its just so annoys me and I want the rest of the world to know about this.] Israel has on general very good road &#8211; compared to many modern countries (in Europe and North America): national roads are all at least dual carriageways with many of [...]]]></description>
			<content:encoded><![CDATA[<p>[Sorry about this Israel-specific post being in English - its just so annoys me and I want the rest of the world to know about this.]</p>
<p>Israel has on general very good road &#8211; compared to many modern countries (in Europe and North America): national roads are all at least dual carriageways with many of them triple carriageway or even more; roads are mostly lighted at night except maybe single carriageway roads in rural areas; even road maintenance which was historically horrible in Israel is pretty good now days. </p>
<p>That being said, the state of driving in Israel is horrendous &#8211; people simple have no road courtesy whatsoever! The most common annoyance I have with traffic in Israel is that on a triple carriageway, where you have three lanes to choose from, the slowest one (which often has average speeds way under the low Israeli speed limit) is the <em>middle one</em>! If you&#8217;re just driving along at about the speed limit (maybe a few km/h over it, I can&#8217;t pretend I&#8217;m a saint), then you normally would be driving on the rightmost lane, passing people on your left. Very very annoying, not to say dangerous near interchanges. More ludicrous is that if you are in a real hurry and want to drive at speed that will normally get you a speeding tickets, you also mostly drive on the right most lane &#8211; as the left lane is occupied by people who think they are the fastest on the road but in actuality only drive around 100 km/h.</p>
<p>And all that before we discuss drivers switching lanes without signaling, driving on the center between two lanes, breaking abruptly for no obvious reasons, and the most annoying behavior &#8211; being the first car at a stop light the driver stops about 2 car-lengths away from the stop line. I have no idea why they do that, except for increasing the likelihood of a traffic jam this serves no purpose I can understand.</p>
<p>I hate Israeli drivers.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/03/30/israeli-road-rage-rant/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>US woman says Ubuntu can&#8217;t access the internet</title>
		<link>http://geek.co.il/wp/2009/01/24/us-woman-says-ubuntu-cant-access-the-internet</link>
		<comments>http://geek.co.il/wp/2009/01/24/us-woman-says-ubuntu-cant-access-the-internet#comments</comments>
		<pubDate>Sat, 24 Jan 2009 12:58:36 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Evangelism]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2009/01/24/us-woman-says-ubuntu-cant-access-the-internet</guid>
		<description><![CDATA[Or so the article on The Register goes. Aside from populist titling, this story actually demonstrates what hurdles Linux has to go through in order to be accepted as a Desktop Operating System, and considering the size of the task I might as well retract my stand on the subject &#8211; yes, Linux is not [...]]]></description>
			<content:encoded><![CDATA[<p>Or so <a href="http://www.theregister.co.uk/2009/01/15/ubuntu_cant_access_net/">the article on The Register</a> goes. Aside from populist titling, this story actually demonstrates what hurdles Linux has to go through in order to be accepted as a Desktop Operating System, and considering the size of the task I might as well retract my stand on the subject &#8211; yes, Linux is not yet ready as a Desktop OS for the general populace.</p>
<p><span id="more-807"></span></p>
<p>As the story goes (and don&#8217;t look in The Register for the details, read the original article at <a href="http://www.wkowtv.com/Global/story.asp?S=9667184">WKOW TV&#8217;s web site</a> &#8211; the original news source for the story), a woman purchased a Dell laptop &#8211; the Ubuntu version, and apparently she did so by mistake: she expected to get MS-Windows on her laptop.</p>
<p>When she got her computer she tried to install some software that she &#8220;needed&#8221; in order to enroll for studies in her local college: Microsoft Office suite and Verizon&#8217;s broadband windows drivers. Both of course failed to work, so she dropped out of both fall and spring semesters (yes, she figured she can&#8217;t get the computer to work now so she might as well cancel her studies for the year).</p>
<p>There are several things that trouble me about this story (which I&#8217;ll go over briefly before focusing on the real problem):</p>
<ul>
<li>How exactly does one get a Dell laptop with Ubuntu by mistake? From browsing the Dell web site, the only way you can get to the Ubuntu section is by specifically searching for Open Source laptops (just searching for Ubuntu will get you nowhere), and then &#8211; if you don&#8217;t know anything on subject &#8211; you are just as likely to choose the FreeDOS version. At no point you can go through the standard ordering process (or any ordering process for that matter) and choose Ubuntu over MS-Windows</li>
<li>Said woman is so un-tech-savvy that it boggles the mind &#8211;  anyone who ever owned a computer knows to call someone when you have problems. Instead of calling for support she canceled her studies and called a TV station. The TV station apparently later called the local college (which said they can work with Open Office that comes installed on Ubuntu laptops) and Verizon (which said that Ubuntu is supported by their service and they will help her install it). The only support call the woman in the story did was to Dell, before she tried to work with the computer, to complain that she didn&#8217;t get MS-Windows.</li>
</ul>
<p>Now the real problem is that Ubuntu is not user friendly enough for people that have no concept of an opearting system other then MS-Windows: an operating system is something that runs programs; Program are things that you buy at store or download from the internet and carry large &#8220;Works with MS-Windows&#8221; stickers. And this is what we have to work with, people.</p>
<p>I have no magic solution for the problem, and it is stupid to expect that we can educate the general public about what an operating system is and that while all operating systems should help you do the same things, they go about it in different ways and software for one is not applicable to another.</p>
<p>Maybe what Ubuntu should have done is to have something that detects that you are trying to run an MS-Windows installer, figure out what you are trying to install and offer native alternative &#8211; if good ones exist &#8211; or point you to wine/crossover-office otherwise.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2009/01/24/us-woman-says-ubuntu-cant-access-the-internet/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ICANN new gTLD system will brandize the internet</title>
		<link>http://geek.co.il/wp/2008/07/25/icann-new-gtld-system-will-brandize-the-internet</link>
		<comments>http://geek.co.il/wp/2008/07/25/icann-new-gtld-system-will-brandize-the-internet#comments</comments>
		<pubDate>Fri, 25 Jul 2008 00:39:03 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/07/25/icann-new-gtld-system-will-brandize-the-internet</guid>
		<description><![CDATA[I&#8217;ve yet to comment on ICANN&#8217;s new plan for the internet&#8217;s so called &#8220;top level domain names&#8221; (.com, .net, etc&#8217;), and I think a very important future aspect of it was overlooked by most critics. ICANN are planning to open up the process for adding new top level domains to the point where anyone can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve yet to comment on <a href="http://www.icann.org/en/topics/new-gtld-program.htm">ICANN&#8217;s new plan for the internet&#8217;s so called &#8220;top level domain names&#8221;</a> (.com, .net, etc&#8217;), and I think a very important future aspect of it was overlooked by most critics.</p>
<p><abbr title="The Internet Corporation for Assigned Names and Numbers">ICANN</abbr> are planning to open up the process for adding new top level domains to the point where anyone can request to register new top level domains &#8211; even in a non-latin script. </p>
<p>Many commenters agree that implementing this suggestion would cause an <a href="http://news.bbc.co.uk/2/hi/technology/7475986.stm">explosion in the available and used top level domains</a>, and as a result also the number of actual domains registered, which can also be a bad thing &#8211; for example, <a href="http://arstechnica.com/news.ars/post/20080214-icann-tlds-could-end-with-exe-confused-users-may-be-too.html">domains named after common file extensions</a> (<a href="http://firefox.exe">Firefox.exe</a> anyone?), <a href="http://arstechnica.com/news.ars/post/20071126-latino-groups-seek-lat-domain-to-transcend-political-boundaries.html">for specific fringe interest groups</a> or <a href="http://icannwiki.org/City_TLDs">a top level domain per city</a> (<a href="http://www.openplans.org/projects/campaign-for.nyc/project-home">The .nyc domain for New York City</a> seems to be the most coordinated).</p>
<p><span id="more-563"></span><br />
But worse are the implications of the new plan for brand names. As <a href="http://www.builderau.com.au/news/soa/ICANN-s-custom-TLD-will-be-a-nightmare-/0,339028227,339290184,00.htm">an Australian developer news site noted</a>, the implications for brand managers are enormous: simply using &#8220;domain hacks&#8221; with some randomly looking TLDs can be a real headache for large corporations: the .LA domain for Los Angeles can offer <code>coca-co.la</code> for the quick entrepreneur,  or maybe <code>www.dis.ney</code>.</p>
<p>But I don&#8217;t think this the worst problem. What I think will happen is that large corporations with large pockets will go and buy their own top level domain names and just have that as their web address! what will prevent Sony from buying the <code>.sony</code> TLD and have <code>www.sony</code> as their web address or maybe even simply <code>http://sony/</code> (and <code>http://ps3.sony</code>, <code>http://music.sony</code>, etc).</p>
<p>I don&#8217;t think there is a single corporation that wouldn&#8217;t jump at the option to do this, and we will end up with something far worse then a messy and non-hierarchical naming &#8211; a web where most top level domains are brand names of global corporations.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/07/25/icann-new-gtld-system-will-brandize-the-internet/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>אני לא מאמין שאני מעתיק מסלאשדוט</title>
		<link>http://geek.co.il/wp/2008/06/02/%d7%90%d7%a0%d7%99-%d7%9c%d7%90-%d7%9e%d7%90%d7%9e%d7%99%d7%9f-%d7%a9%d7%90%d7%a0%d7%99-%d7%9e%d7%a2%d7%aa%d7%99%d7%a7-%d7%9e%d7%a1%d7%9c%d7%90%d7%a9%d7%93%d7%95%d7%98</link>
		<comments>http://geek.co.il/wp/2008/06/02/%d7%90%d7%a0%d7%99-%d7%9c%d7%90-%d7%9e%d7%90%d7%9e%d7%99%d7%9f-%d7%a9%d7%90%d7%a0%d7%99-%d7%9e%d7%a2%d7%aa%d7%99%d7%a7-%d7%9e%d7%a1%d7%9c%d7%90%d7%a9%d7%93%d7%95%d7%98#comments</comments>
		<pubDate>Mon, 02 Jun 2008 12:02:11 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/06/02/%d7%90%d7%a0%d7%99-%d7%9c%d7%90-%d7%9e%d7%90%d7%9e%d7%99%d7%9f-%d7%a9%d7%90%d7%a0%d7%99-%d7%9e%d7%a2%d7%aa%d7%99%d7%a7-%d7%9e%d7%a1%d7%9c%d7%90%d7%a9%d7%93%d7%95%d7%98</guid>
		<description><![CDATA[אבל זה שווה פוסט: להקה בריטית בשם The Get Out Clause מצאה שימוש למצלמות במעגל סגור שפזורות בבריטניה בכל פינה. לפי אחד המאמרים, תושב לונדון מצולם בכל יום 300 פעם על ידי מצלמות אבטחה, ו-The Get Out Clause החליטו להשתמש בכך כדי לחסוך קצת כסף על הקליפ הראשון שלהם, בכך שהם נעמדו וניגנו בכ-80 מקומות [...]]]></description>
			<content:encoded><![CDATA[<p>אבל זה שווה פוסט:</p>
<p>להקה בריטית בשם <a href="http://www.thegetoutclause.co.uk">The Get Out Clause</a> מצאה שימוש ל<a href="http://news.bbc.co.uk/1/hi/uk/6108496.stm">מצלמות</a> <a href="http://news.bbc.co.uk/1/hi/uk/2071496.stm">במעגל</a> <a href="http://www.privacyinternational.org/article.shtml?cmd[347]=x-347-61925">סגור</a> <a href="http://gizmodo.com/385626/crossing-guards-become-big-brothers">שפזורות</a> <a href="http://www.guardian.co.uk/uk/2008/may/06/ukcrime1">בבריטניה</a> <a href="http://www.flickr.com/photos/riot/1260354095/">בכל</a> <a href="http://andreaciulu.blogspot.com/2007/05/great-britain-becoming-police-state.html">פינה</a>. לפי אחד המאמרים, תושב לונדון מצולם בכל יום 300 פעם על ידי מצלמות אבטחה, ו-The Get Out Clause החליטו להשתמש בכך כדי ל<a href="http://www.telegraph.co.uk/news/newstopics/howaboutthat/1938076/The-Get-Out-Clause%2C-Manchester%27s-stars-of-CCTV-cameras.html">חסוך קצת כסף</a> על הקליפ הראשון שלהם, בכך שהם נעמדו וניגנו בכ-80 מקומות במנצ&#8217;סטר שהם יודעים שמנוטרים על ידי מצלמות במעגל סגור, ולאחר מכן דרשו את קטעי הוידאו מבעלי המצלמות במסגרת חוק ההגנה על המידע.</p>
<p>התוצאה:<br />
<span id="more-414"></span><br />
<object width="425" height="355" data="http://www.youtube.com/v/W2iuZMEEs_A&amp;hl=en" type="application/x-shockwave-flash"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/W2iuZMEEs_A&amp;hl=en" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/06/02/%d7%90%d7%a0%d7%99-%d7%9c%d7%90-%d7%9e%d7%90%d7%9e%d7%99%d7%9f-%d7%a9%d7%90%d7%a0%d7%99-%d7%9e%d7%a2%d7%aa%d7%99%d7%a7-%d7%9e%d7%a1%d7%9c%d7%90%d7%a9%d7%93%d7%95%d7%98/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History meme</title>
		<link>http://geek.co.il/wp/2008/04/12/history-meme</link>
		<comments>http://geek.co.il/wp/2008/04/12/history-meme#comments</comments>
		<pubDate>Sat, 12 Apr 2008 14:51:21 +0000</pubDate>
		<dc:creator>Oded</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="true">http://geek.co.il/wp/2008/04/12/history-meme</guid>
		<description><![CDATA[Everybody is doing the history meme thing these days, so here&#8217;s mine: $ history &#124; perl -nle 'split /s+/,; $a{$_[2]}++; END { for (keys %a) { print "$a{$_} $_"; } }'&#124; sort -nr &#124; head 388 mcedit 229 svn 77 ssh 28 cd 12 php 12 ls 12 curl 10 cp 9 rpm 9 man [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/search?q=history+meme&#038;btnG=Search">Everybody is doing the history meme</a> thing these days, so here&#8217;s mine:</p>
<p><span id="more-358"></span></p>
<p><code><br />
$ history | perl -nle 'split /s+/,; $a{$_[2]}++; END { for (keys %a) { print "$a{$_} $_"; } }'| sort -nr | head<br />
388 mcedit<br />
229 svn<br />
77 ssh<br />
28 cd<br />
12 php<br />
12 ls<br />
12 curl<br />
10 cp<br />
9 rpm<br />
9 man<br />
</code></p>
<p>This is my work computer, and its quite obvious that I&#8217;m a programmer, if only for the fact that everyone else is copy&#038;pasting awk for the history analysis and I chose to rewrite it in perl, but also for the top two commands. Looking a bit lower it looks like I&#8217;m doing a lot of PHP/web programming lately, and what am I doing running RPM in my user account ? </p>
<p>The entire list has 70 commands in it, which also means I&#8217;m quite a versatile command line user.</p>
]]></content:encoded>
			<wfw:commentRss>http://geek.co.il/wp/2008/04/12/history-meme/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

