<?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>2 Robots &#187; Daniel Eisner</title>
	<atom:link href="http://www.2robots.com/author/robot-two/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.2robots.com</link>
	<description>Inside the robot's brain</description>
	<lastBuildDate>Mon, 19 Dec 2011 23:09:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Graduating from UnRaid</title>
		<link>http://www.2robots.com/2011/12/19/graduating-from-unraid/</link>
		<comments>http://www.2robots.com/2011/12/19/graduating-from-unraid/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 23:09:02 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=233</guid>
		<description><![CDATA[I am a digital pack rat. I used to keep piles and piles of floppy disks all over my room. Cabinets were full of them. This included software I had bought (or &#8220;borrowed&#8221;), school work, creative writing, and source code I had written. Later, I moved it all over to CDs, and then to DVDs. [...]]]></description>
			<content:encoded><![CDATA[<p>I am a digital pack rat. I used to keep piles and piles of floppy disks all over my room. Cabinets were full of them. This included software I had bought (or &#8220;borrowed&#8221;), school work, creative writing, and source code I had written. Later, I moved it all over to CDs, and then to DVDs. While that was great &#8212; I could fit almost all my old floppy disks on a single DVD &#8212; the amount of data I needed to save kept getting</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2011/12/19/graduating-from-unraid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A C++ Disruptor</title>
		<link>http://www.2robots.com/2011/08/13/a-c-disruptor/</link>
		<comments>http://www.2robots.com/2011/08/13/a-c-disruptor/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 02:01:00 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[disruptor]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[programing]]></category>

		<guid isPermaLink="false">http://www.2robots.com/2011/08/13/a-c-disruptor/</guid>
		<description><![CDATA[The guys over at LMAX spent a lot of time looking at multithreaded software performance. Since computer performance will scale out with more processing cores rather than higher speeds for the foreseeable future, this seems like a good investment. What they found is that the traditional methods of multi-threaded communication &#8212; namely, blocking queues &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>The guys over at LMAX spent a lot of time looking at multithreaded software performance. Since computer performance will scale out with more processing cores rather than higher speeds for the foreseeable future, this seems like a good investment.</p>
<p>What they found is that the traditional methods of multi-threaded communication &#8212; namely, blocking queues &#8212; are really not the best way to send data between threads. They&#8217;ve done a pretty good job of writing up the details at <a href="http://code.google.com/p/disruptor/">http://code.google.com/p/disruptor/</a>.</p>
<p>However, they&#8217;ve done all their work in Java. To be fair, that is where most high performance code is being written nowadays, particularly in finance. However, there&#8217;s no way for a C++ program to benefit from this work.</p>
<p>Consequently, I ported the LMAX Disruptor to C++, and released the source under the Apache 2 license. I started a Google Code page at <a href="http://code.google.com/p/disruptor-cpp/">http://code.google.com/p/disruptor-cpp/</a> to make it easily accessible. </p>
<p>The implementation wasn&#8217;t as straightforward as I would have thought &#8212; many features the Disruptor depends on (like atomic variables) wont be standard until C++0x is widely supported by compilers. In the meantime, I found that Boost provides a good stopgap set of features, and the implementation would have been orders of magnitude more complicated without it*. </p>
<p>As it is, I think the C++ interface is fairly comparable to the Java one. While the Disruptor is not as trivial to use as a blocking queue, the performance gains should be more than worth the extra coding effort. And I think the C++ interface is just a tad easier to work with than the Java version.</p>
<p>Check out the project at <a href="http://code.google.com/p/disruptor-cpp/">http://code.google.com/p/disruptor-cpp/</a> to get started. Code patches welcome!</p>
<p>* So if you&#8217;re one of those people who refuses to use Boost for some reason, tough nuggies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2011/08/13/a-c-disruptor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS vs Android Revisited</title>
		<link>http://www.2robots.com/2010/08/27/ios-vs-android-revisited/</link>
		<comments>http://www.2robots.com/2010/08/27/ios-vs-android-revisited/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 11:32:13 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Myself]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[marketplace]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[torch]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=226</guid>
		<description><![CDATA[So, it looks like I called that one wrong. Or did I?At first glance, it appears that android is a serious contender against the iPhone and IOS. It&#8217;s even arguable about which on is more popular at this point &#8212; do you measure by total units sold, or sales in the most recent quarter? What [...]]]></description>
			<content:encoded><![CDATA[<p>So, it looks like I called that one wrong. Or did I?At first glance, it appears that android is a serious contender against the iPhone and IOS. It&#8217;s even arguable about which on is more popular at this point &#8212; do you measure by total units sold, or sales in the most recent quarter? What about the fact that Android is available on all carriers, but the iPhone is only on one?</p>
<p>Answering each of those questions gives you a different answer. However, one thing is certain &#8212; in a few short years we&#8217;ve gone from a marketplace seemingly dominated by Windows Mobile and Symbian to one where iOS and Android set the pace of innovation, customer expectations, and market growth. Both new platforms are here to stay, and rather than hurting each other, the response in the marketplace seems to be that each is accelerating the growth of the other by raising expectations for what a smart phone should be head and shoulders above the now-legacy platforms.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2010/08/27/ios-vs-android-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Reasons the Android vs iPhone Deathmatch Will Never Be</title>
		<link>http://www.2robots.com/2010/02/25/4-reasons-the-android-vs-iphone-deathmatch-will-never-be/</link>
		<comments>http://www.2robots.com/2010/02/25/4-reasons-the-android-vs-iphone-deathmatch-will-never-be/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 05:17:27 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Myself]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=208</guid>
		<description><![CDATA[A colleague recently asked me who I thought would win the mobile phone wars: Apple or Google. He suggested that Android is a better horse to bet on because Google has virtually unlimited resources to spend until Android dominates the mobile phone market. From reading around the Internet, this seems to be a common misconception.

The expectation of an emerging dominant platform for smart phones comes from general experience with the PC industry, where there has been virtually a single platform for decades. However, the cell phone business is very different from the PC business: while market forces pushed the latter towards platform consolidation, there are several factors keeping mobile platforms distinct. Factor in Google's self-stated motivation for entering this market in the first place and it becomes clear that the current fragmentation of smart phone platforms isn't going to go away any time soon.

Read more.]]></description>
			<content:encoded><![CDATA[<p>A colleague recently asked me who I thought would win the mobile phone wars: Apple or Google. He suggested that Android is a better horse to bet on because Google has virtually unlimited resources to spend until Android dominates the mobile phone market. From reading around the Internet, this seems to be a common misconception.</p>
<p>The expectation of an emerging dominant platform for smart phones comes from general experience with the PC industry, where there has been virtually a single platform for decades. However, the cell phone business is very different from the PC business: while market forces pushed the latter towards platform consolidation, there are several factors keeping mobile platforms distinct.  Factor in Google&#8217;s self-stated motivation for entering this market in the first place and it becomes clear that the current fragmentation of smart phone platforms isn&#8217;t going to go away any time soon.</p>
<p><strong><br />
1: Cell Carriers Discourage Platform Consolidation</strong></p>
<p>Partially by design and partially by nature, it&#8217;s plain impossible for a single platform to become dominant today. Cellular companies make exclusive deals with handset manufacturers, keeping phones out of the hands of consumers who would otherwise purchase them in a heartbeat. The exclusive AT&amp;T and Apple deal comes to mind, but cell companies have been in this practice long before there was an iPhone. Hip devices draw new customers, and the manufacturer receives generous financial kickbacks to keep things exclusive. Additionally, some carriers use different radio technologies, which means that device manufacturer must develop different hardware to support all the different radio technologies around the world, adding expense and slowing hardware rollouts. This isn&#8217;t a factor which will go away soon.</p>
<p><strong>2: The Market Has Legs</strong></p>
<p>In 2009 a smart phone sales exploded. According to Gartner, there were sales of 172 million smart phones in 2009, a 24% increase from 2008, and that growth is expected to continue. This means that every company in the market can sell more units than the previous year without competing directly for customers. As long as this continues to be the case there is plenty of room in the market for multiple platforms. For some context, the ceiling for this growth is high. If all cell phones sold were smart phones (not an unreasonable long-term perspective) there would be 1.2 billion every year, so there&#8217;s quite a bit of room to grow.</p>
<p><strong>3: Consumers Aren&#8217;t Sticky</strong></p>
<p>In stark contrast to the PC market, smart phones are relatively simple to operate. Since the learning curve is lower, consumers are less likely to be afraid of switching to a different platform. Other factors gain relative importance. For example, consumers don&#8217;t put a high value on the shape and color of their desktop PC or laptop (beyond the basic form factor), but industrial design plays a more important role with smart phones. In part this is because OS tie-in is less important.</p>
<p>Consumers are also likely to switch between cell carriers every year or two, and when they do they are more likely to purchase the most cost-effective smart phone available with the new carrier. Statistically, this depends mostly on the promotions running at the time, if the same platform is even available. Apple&#8217;s exclusive AT&amp;T contract, and Microsoft&#8217;s major revision to Windows Mobile are cases where users may not even be able to stick with the same platform if they wanted to.</p>
<p><strong>4. Google Isn&#8217;t in the Mobile Phone Business</strong></p>
<p>Surprise. Here&#8217;s a quick recap from Eric Schmidt from when Android was first announced:</p>
<blockquote><p>The fundamental problem with most phones today is they don&#8217;t have  full-power browsers. We&#8217;ve been taking our mobile services and use  specialized engineering to get them on other devices. No longer &#8230; Imagine not just one Gphone, but a thousand Gphones as a result of the  partnerships &#8230; I&#8217;m a very happy iPhone user. It&#8217;s important to say that there will be  many, many mobile experiences, and Android will be used on many other  kinds of devices&#8230;</p></blockquote>
<p>Remember that when Android first came out, there was really no viable mobile web browser aside from Safari on the iPhone. Google makes their money on web search. Lots of people had phones, but couldn&#8217;t realistically use them to search, and Google therefore couldn&#8217;t make money from them. Google solved the problem by giving away a smart phone OS to any device manufacturer who wanted it.</p>
<p>So, while Google does have a bottomless wallet, there&#8217;s no reason for them to spend significantly more on cell phone development. Android simply has to be &#8220;good enough&#8221; to motivate smart phone competitors to improve the browsers on their phone. Google makes the money whether a user searches via an Android phone, an iPhone, a Symbian phone, or potentially even a Windows Mobile phone (should mobile IE ever become a reasonable browser). That&#8217;s why the pace of Android development has slowed as its uptake has accelerated. Google doesn&#8217;t need to dominate the market, because they don&#8217;t care which phone or browser you use, as long as you use one. To put it another way, Android is a stick they can use to herd the cell phone market in the direction Google wants.</p>
<p><strong>Conclusions</strong></p>
<p>The public likes competition, and the Internet will never stop pitting different platforms against each other. At first glance, Android and iPhone OS look like they compete against each other. However, the motivations behind their development are very different: Apple wants to sell hardware, while Google wants to spur users to browse the web from their phones. These goals aren&#8217;t mutually exclusive, which is why Eric Schmidt sat on the Apple board of directors until well after Android was released. Because of their respective philosophies, Google and Apple will never compete in the mobile phone space &#8212; Apple will never license their OS to other device manufacturers, and Google will never shift their revenue base to hardware sales (The Nexus One is another stick to hit device manufacturers with, not an attempt to make a profit for Google).</p>
<p>So, to answer my friend&#8217;s question, &#8220;who will win the mobile phone wars: Apple or Google?&#8221; I don&#8217;t think either will win, because there isn&#8217;t really a war &#8211; at least not between those two. Palm, Microsoft, Nokia, and Research in Motion are different stories altogether. Until the market hits the ceiling though, none of them are going to achieve market dominance anytime soon. It has become a game of staying power, and the only platform in any real danger is Palm.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2010/02/25/4-reasons-the-android-vs-iphone-deathmatch-will-never-be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle buys Sun</title>
		<link>http://www.2robots.com/2009/04/21/oracle-buys-sun/</link>
		<comments>http://www.2robots.com/2009/04/21/oracle-buys-sun/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 02:15:03 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://www.2robots.com/2009/04/21/oracle-buys-sun/</guid>
		<description><![CDATA[Once Oracle completes their Sun puchase, who wants to bet that the first thing they do is shut down MySQL? http://www.sdtimes.com/ORACLE_TO_BUY_SUN_PENDING_APPROVAL/About_ORACLE_and_SUN/33425]]></description>
			<content:encoded><![CDATA[<p>Once Oracle completes their Sun puchase, who wants to bet that the first thing they do is shut down MySQL?</p>
<p>http://www.sdtimes.com/ORACLE_TO_BUY_SUN_PENDING_APPROVAL/About_ORACLE_and_SUN/33425</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2009/04/21/oracle-buys-sun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpaceX</title>
		<link>http://www.2robots.com/2009/02/28/spacex/</link>
		<comments>http://www.2robots.com/2009/02/28/spacex/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 04:39:22 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.2robots.com/2009/02/28/spacex/</guid>
		<description><![CDATA[This is the company that is going to transform commercial space travel. What do I like about them? You can download the <a href="http://www.spacex.com/Falcon9UsersGuide_2009.pdf">user manual</a> for the Falcon 9 heavy lift rocket.]]></description>
			<content:encoded><![CDATA[<p>This is the company that is going to transform commercial space travel. What do I like about them? You can download the <a href="http://www.spacex.com/Falcon9UsersGuide_2009.pdf">user manual</a> for the Falcon 9 heavy lift rocket.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2009/02/28/spacex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speak Secret dot Net</title>
		<link>http://www.2robots.com/2009/02/06/speak-secret-dot-net/</link>
		<comments>http://www.2robots.com/2009/02/06/speak-secret-dot-net/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 22:38:29 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[Myself]]></category>
		<category><![CDATA[This Site]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=194</guid>
		<description><![CDATA[I received some positive feedback from my last <a href="http://www.2robots.com/2009/01/23/encrptonomicon/">post</a> -- enough that I'm willing to give it a try. So, check out the site <a href="http://speaksecret.net">http://speaksecret.net</a>!

The site is written at an introductory level, and will focus on simple instructions to get encryption working in your favorite applications. There will also be articles on how encryption is seen from the popular media and Movies and TV, as well as some of the basic theory.

Recommend it to your friends!]]></description>
			<content:encoded><![CDATA[<p>I received some positive feedback from my last <a href="http://www.2robots.com/2009/01/23/encrptonomicon/">post</a> &#8212; enough that I&#8217;m willing to give it a try. So, check out the site <a href="http://speaksecret.net">http://speaksecret.net</a>!</p>
<p>The site is written at an introductory level, and will focus on simple instructions to get encryption working in your favorite applications. There will also be articles on how encryption is seen from the popular media and Movies and TV, as well as some of the basic theory.</p>
<p>Recommend it to your friends!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2009/02/06/speak-secret-dot-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Lack of Encryptonomiconization of the Internet</title>
		<link>http://www.2robots.com/2009/01/23/encrptonomicon/</link>
		<comments>http://www.2robots.com/2009/01/23/encrptonomicon/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 23:01:55 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=190</guid>
		<description><![CDATA[I find it interesting which sorts of things get encrypted on the Internet.

Most people know to encrypt their Wi-Fi router, for example. That's because there's been lots of press about it, and many people like to tell stories about how they bum internet service from their neighbors.

A few people know the difference between a regular website and an SSL-encrypted web site. That little lock icon in your browser means that communication between you and the site is relatively secure. However, few people know what it actually means. I won't go down the road (in this post, anyway) of the value of SSL certificates and whether they actually do the job they are supposed to.

And that's about it. SSL and WiFi is the limit of what most people deal with encryption. I'm talking about personal use here, not business. Of course the average IT worker uses a terminal session called SSH which is quite secure, and most businesses have secure VPN's in to their private networks, which are generally also secure. Like WiFi enryption, the what I find interesting there is that the businesses use this mainly for protection of their own internal networks. Their outside communications are generally via email or IM, just like most people's private ones.

And yet there are plenty of free, and not terribly difficult ways you can encrypt your emails and IM's, and even phone calls so that only you and the receiver can communicate. Yet, hardly anyone uses them. In fact, so few people were interested that PGP, one of the best methods for sending emails securely, completely failed as a commercial product even before they started charging for it. Luckily, there is a free GPL replacement, so that the solution is still generally available for anyone who wants to use it (I do).

What am I talking about here? Well, any message you send over the Internet can be read by just about anybody. Any Email. Any IM. Any Skype call. Any message board posting. Now, I'm not paranoid. I agree that statistically speaking, no one really cares about the chain letter of jokes I forwarded to my cousin last week. Right?

Well, maybe not. But what if I sent a bank account number to my wife, so she could check it? You can bet there are bad people on the internet who are on the lookout for such information. What if my friend asks me for my phone number and address so he can send me a party invitation. How do I know it was really him, and that I'm not sending my information to an imposter? What about the government? I mean, you don't have to be paranoid to be worried when the FBI calls their email surveylance system CARNIVORE. For Cripe's sake! They couldn't call it "PEACE" or "LOVE" or something? CARNIVORE?! And before you think that we don't need to worry about this sort of thing anymore, CARNIVORE was initiated by the Clinton administration, not Bush.You know that warrants aren't required, for intercepted emails, right?

So, I'm thinking about creating a blog for encryption-related stuff. Encryption for the lay-person, as it were. I'm not saying everyone is out to get you, but people buy car insurance even though they don't plan on ramming anything.

Would anyone out there find something like that useful? Like easy how-to's to set up encryption in different mail and IM clients, layman-level articles about how encryption works, and why you'd want to use it? It's a bit of work to set up a new web site (and write for it), so I'll only do it if people want it. Leave comments here! (http://2robots.com/2009/01/23/encryptonomicon)



]]></description>
			<content:encoded><![CDATA[<p>I find it interesting which sorts of things get encrypted on the Internet.</p>
<p>Most people know to encrypt their Wi-Fi router, for example. That&#8217;s because there&#8217;s been lots of press about it, and many people like to tell stories about how they bum internet service from their neighbors.</p>
<p>A few people know the difference between a regular website and an SSL-encrypted web site. That little lock icon in your browser means that communication between you and the site is relatively secure. However, few people know what it actually means. I won&#8217;t go down the road (in this post, anyway) of the value of SSL certificates and whether they actually do the job they are supposed to.</p>
<p>And that&#8217;s about it. SSL and WiFi is the limit of what most people deal with encryption. I&#8217;m talking about personal use here, not business. Of course the average IT worker uses a terminal session called SSH which is quite secure, and most businesses have secure VPN&#8217;s in to their private networks, which are generally also secure. Like WiFi encryption, the what I find interesting there is that the businesses use this mainly for protection of their own internal networks. Their outside communications are generally via email or IM, just like most people&#8217;s private ones.</p>
<p>And yet there are plenty of free, and not terribly difficult ways you can encrypt your emails and IM&#8217;s, and even phone calls so that only you and the receiver can communicate. Yet, hardly anyone uses them. In fact, so few people were interested that PGP, one of the best methods for sending emails securely, completely failed as a commercial product even before they started charging for it. Luckily, there is a free GPL replacement, so that the solution is still generally available for anyone who wants to use it (I do).</p>
<p>What am I talking about here? Well, any message you send over the Internet can be read by just about anybody. Any Email. Any IM. Any Skype call. Any message board posting. Now, I&#8217;m not paranoid. I agree that statistically speaking, no one really cares about the chain letter of jokes I forwarded to my cousin last week. Right?</p>
<p>Well, maybe not. But what if I sent a bank account number to my wife, so she could check it? You can bet there are bad people on the internet who are on the lookout for such information. What if my friend asks me for my phone number and address so he can send me a party invitation. How do I know it was really him, and that I&#8217;m not sending my information to an impostor? What about the government? I mean, you don&#8217;t have to be paranoid to be worried when the FBI calls their email surveillance system <a href="http://en.wikipedia.org/wiki/Carnivore_(FBI)">CARNIVORE</a>. For Cripe&#8217;s sake! They couldn&#8217;t call it &#8220;PEACE&#8221; or &#8220;LOVE&#8221; or something? CARNIVORE?! And before you think that we don&#8217;t need to worry about this sort of thing anymore, CARNIVORE was initiated by the Clinton administration, not Bush.</p>
<p>So, I&#8217;m thinking about creating a blog for encryption-related stuff. Encryption for the lay-person, as it were. I&#8217;m not saying everyone is out to get you, but people buy car insurance even though they don&#8217;t plan on ramming anything.</p>
<p>Would anyone out there find something like that useful? Like easy how-to&#8217;s to set up encryption in different mail and IM clients, layman-level articles about how encryption works, and why you&#8217;d want to use it? It&#8217;s a bit of work to set up a new web site (and write for it), so I&#8217;ll only do it if people want it. Leave comments here! (http://2robots.com/<span id="sample-permalink">2009/01/23/<span id="editable-post-name" title="Click to edit this part of the permalink">encryptonomicon</span><span id="editable-post-name-full">)</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2009/01/23/encrptonomicon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The submerged iPhone: 6 months later</title>
		<link>http://www.2robots.com/2008/12/23/the-submerged-iphone-6-months-later/</link>
		<comments>http://www.2robots.com/2008/12/23/the-submerged-iphone-6-months-later/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 13:18:37 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[Cell Phones]]></category>
		<category><![CDATA[Myself]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[water]]></category>
		<category><![CDATA[wet]]></category>

		<guid isPermaLink="false">http://www.2robots.com/2008/12/23/the-submerged-iphone-6-months-later/</guid>
		<description><![CDATA[Six months ago I took my iPhone into a hot tub with me. It wasn&#8217;t on purpose &#8211; I had it in my bathing suit pocket (because, where else would you carry it?). I immediately realized my mistake, and rushed to dry it off. If you search the Internet, you&#8217;ll find that the beat thing [...]]]></description>
			<content:encoded><![CDATA[<p>Six months ago I took my iPhone into a hot tub with me. It wasn&#8217;t on purpose &#8211; I had it in my bathing suit pocket (because, where else would you carry it?). </p>
<p>I immediately realized my mistake, and rushed to dry it off. If you search the Internet, you&#8217;ll find that the beat thing to do next is stick your iPhone (or other soggy electronics) into a bag of white rice. Rice absorbs water better than almost anything else. It will quick the moisture right out of your phone. </p>
<p>After 24 hours, I took the iphone a out of the rice and guess what? It worked perfectly! Well, almost perfectly. The screen was a little psychadellic, but that cleared up after a few more days as the cu al bits of water dried up, and then it was good as new. </p>
<p>Or so I thought. While I had survived the immediate risk of frying my phone, the moisture ha done some long term damage to the circuit board inside: it had allowed rust to start to set in. </p>
<p>Fast forward to today. 6 months later, my phone started acting funny. It claimed I had an incompatible device plugged in. All of a sudden, the battery only lasted a few hours. The circuit board had rusted and begin to short out. </p>
<p>Unfortunately, the water indicator was still bright orange, so apple wouldn&#8217;t fix it for me (rightly so). There&#8217;s nothing for it now; my iPhone is in the twilight of it&#8217;s life, ends early with electronic alzhimer&#8217;s. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2008/12/23/the-submerged-iphone-6-months-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VOX External Hard Drive (v1)</title>
		<link>http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/</link>
		<comments>http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 17:00:59 +0000</pubDate>
		<dc:creator>Daniel Eisner</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.2robots.com/?p=185</guid>
		<description><![CDATA[The VOX External Hard Drive (v1) is a solid is a great and near-silent external hard drive for almost any purpose. Like other external hard drives, it will work with all the major operating systems: Linux, OS X, Windows XP, and Windows Vista without any problems. It comes pre-formatted as a single NTFS partition. Read on for the full review.]]></description>
			<content:encoded><![CDATA[<p>The VOX External Hard Drive (v1) is a solid is a great and near-silent external hard drive for almost any purpose. Like other external hard drives, it will work with all the major operating systems: Linux, OS X, Windows XP, and Windows Vista without any problems. It comes pre-formatted as a single NTFS partition. The model I got was a 750 GB drive, and had 698.64 GB available, and of course you can reformat it using whatever filesystem is convenient to you. Nowadays, there are generally no problems reading and writing from an NTFS drive from OS X or Linux, so you may find no reason to do so. In fact, there&#8217;s a lot to like about this drive, and the only real problem I found was that there isn&#8217;t a clear model name to refer to it, and &#8220;VOX External Hard Drive v1 USB 2.0 &amp; SATA&#8221; is a mouthful, so I&#8217;ll be referring to it as the &#8220;V1&#8243; throughout this review.</p>
<p>First, there are currently two types of external hard drives in the market today. The first kind use laptop hard drives, which offer less storage and slower performance, but are physically small, light, and silent. The second type, which the V1 belongs to, use desktop hard drives. These offer much larger capacity and much higher performance than the first kind, but the tradeoff is that they are physically larger, usually more noisy, and require an external power plug in addition to a USB connection. The VOX V1 however bucks this generality. It is smaller than other external desktop drives (you can see a comparison picture in the photos), and also runs nearly silent. This is partially because the VOX V1 is a sealed case. There is no fan for airflow, and heat is dissipated through the walls of the enclosure. While I wouldn&#8217;t recommend putting the V1 in a desk drawer, this does mean that you generally don&#8217;t need to worry about available airflow where you place it as much as you would have to with a different brand.</p>
<p>The external hard drive market is very crowded, and vendors have to try to differentiate themselves from the competition. While the V1 supports all the standard things you would expect from a modern external enclosure, including an SATA connector, VOX also supplies a Windows-only backup software package. This software installs on Windows XP or Vista and allows you to push the (only) button on the V1 to initiate a system backup. This is a nice feature, and one really shouldn&#8217;t mind that this software is Windows-only as OS X has Time Machine, which is just about the best backup software for home computers in existence. Linux users are unfortunately left to find their own software solution for backups, although there are several solutions available for free.</p>
<p>As mentioned earlier, the VOX V1 includes both USB and E-SATA connectors. It&#8217;s nice to see the E-SATA connector as USB2 can&#8217;t supply data as fast as the drive can. Unfortunately, E-SATA was a standard that never really took off. It would have been better to include a newer SATA2 connector. Having said that, for whatever reason most modern laptops and desktops do not include external E-SATA or SATA2 ports, so either way you either need to purcahase an adapter card, or simply wait for the standard to catch on. What would have been really exciting was if the V1 included a Firewire 800 port, as those are much more common (especially on laptops) that any sort of SATA port. Regardless, this isn&#8217;t a problem just with the VOX V1, but with most external hard drives today. The takeaway here is that it is probably worth the investment for you to purchase an external SATA card rather than rely on the USB connection.</p>
<p>One additional comment is that, while the drive does come with a complete set of E-SATA, USB, and power cables, the included cables are on the short side. Even the power cable, which is typically the logest of the bunch, was under 6 feet long, including the power brick. This makes it a little annoying when using the V1 with a laptop, as you may not be that close to a socket (if the cord is 6 feet you need to be within 4 feet or less of the socket).</p>
<p>Another small note is that the manual said it was supposed to come with a screw driver and screw set, which mine didn&#8217;t. However, as there&#8217;s no reason to open the case, I don&#8217;t see why you would need one anyway. The only reason I mention it is because the manual said it should. Probably, they should just change the manual to not say that.</p>
<p>The above are relatively minor complaints however, and overall the V1 is a pleasure to work with. It is by far the quietest of the 7 other external drives I use, and 750GB of capacity provides a lot of space to use. The fact that it is more compact than my other drives is good (although it is a little bit taller), and the E-SATA port means that the drive will probably last me until my next computer. In fact, in several years or whenever it has reached the end of its lifetime, I&#8217;ll probably be able to upgrade the disk inside of it and re-use the case, which is a good thing.</p>
<p>Overall, the VOX External Hard Drive V1 USB 2.0 &amp; SATA has a silly (but descriptive) name. More importantly, it does exactly what it says it does by providing a compact, quiet, and high performing external hard drive. The build quality is excellent, and I look forward to using the V1 for a long time to come.</p>

<a href='http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/box/' title='box'><img width="150" height="115" src="http://www.2robots.com/wp-content/uploads/2008/08/box.jpg" class="attachment-thumbnail" alt="box" title="box" /></a>
<a href='http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/package/' title='package'><img width="150" height="112" src="http://www.2robots.com/wp-content/uploads/2008/08/package.jpg" class="attachment-thumbnail" alt="package" title="package" /></a>
<a href='http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/comparison/' title='comparison'><img width="150" height="112" src="http://www.2robots.com/wp-content/uploads/2008/08/comparison.jpg" class="attachment-thumbnail" alt="comparison" title="comparison" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.2robots.com/2008/08/16/vox-external-hard-drive-v1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

