<?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>I.T News &#38; Stuff</title>
	<atom:link href="http://orange.id.au/wordpress/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://orange.id.au/wordpress</link>
	<description>Interesting Finds on the Internet</description>
	<lastBuildDate>Mon, 31 May 2010 23:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Top 10 Things That Annoy Programmers</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/top-10-things-that-annoy-programmers/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/top-10-things-that-annoy-programmers/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:25:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
<category>nuisances</category><category>pet peeves</category><category>programmers</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1951</guid>
		<description><![CDATA[Programmers all have their pet peeves. Whether it’s scope creep, Hungarian notation, or smelly coworkers, we’ve come to accept that there are certain nuisances that come with our line of work. The following is a list of the top 10 things that annoy programmers, compiled from the results of my recent question on StackOverflow along [...]]]></description>
			<content:encoded><![CDATA[<p>Programmers all have their pet peeves.  Whether it’s <a href="http://en.wikipedia.org/wiki/Scope_creep" target="_blank" rel="nofollow" class="liwikipedia">scope creep</a>, <a href="http://en.wikipedia.org/wiki/Hungarian_notation" target="_blank" rel="nofollow" class="liwikipedia">Hungarian  notation</a>, or smelly coworkers, we’ve come to accept that there are  certain nuisances that come with our line of work.  The following is a  list of the top 10 things that annoy programmers, compiled from the  results of <a href="http://beta.stackoverflow.com/questions/27347/what-annoys-you-as-a-programmer" target="_blank" class="liexternal broken_link">my  recent question on StackOverflow</a> along with some of my own  experiences:</p>
<h2>10.  Comments that explain the “how” but not the “why”</h2>
<p>Introductory-level programming courses teach students to comment  early and comment often.  The idea is that it’s better to have too many  comments than to have too few.  Unfortunately, many programmers seem to  take this as a personal challenge to comment <em>every single line of  code</em>.  This is why you will often see something like this code  snippit taken from Jeff Atwood’s post on <a href="http://www.codinghorror.com/blog/archives/001150.html" target="_blank" class="liexternal">Coding  Without Comments</a>:</p>
<pre>r = n / 2; // Set r to n divided by 2

// Loop while r - (n/r) is greater than t
while ( abs( r - (n/r) ) &gt; t ) {
    r = 0.5 * ( r + (n/r) ); // Set r to half of r + (n/r)
}</pre>
<p>Do you have any idea what this code does?  Me neither.  The problem  is that while there are plenty of comments describing <em>what </em>the  code is doing, there are none describing <em>why </em>it’s doing it.</p>
<p>Now, consider the same code with a different commenting methodology:</p>
<pre>// square root of n with Newton-Raphson approximation
r = n / 2;

while ( abs( r - (n/r) ) &gt; t ) {
    r = 0.5 * ( r + (n/r) );
}</pre>
<p>Much better!  We still might not understand exactly what’s going on  here, but at least we have a starting point.</p>
<p>Comments are supposed to help the reader understand the code, not the  syntax.  It’s a fair assumption that the reader has a basic  understanding of how a for loop works; there’s no need to add comments  such as “// iterate over a list of customers”.  What the reader is not  going to be familiar with is why your code works and why you chose to  write it the way you did.</p>
<h2>9.  Interruptions</h2>
<p>Very few programmers can go from 0 to code at the drop of a hat.  In  general, <strong>we tend to be more akin to locomotives than ferraris</strong>;  it may take us awhile to get started, but once we hit our stride we can  get an impressive amount of work done.  Unfortunately, it’s very hard  to get into a programming zone when your train of thought is constantly  being derailed by clients, managers, and fellow programmers.</p>
<p>There is simply too much information we need to keep in mind while  we’re working on a task to be able to drop the task, handle another  issue, then pick up the task without missing a beat.  Interruptions kill  our train of thought and getting it back is often a time-consuming,  frustrating, and worst of all, error-prone process.</p>
<h2>8.  Scope creep</h2>
<p>From <a href="http://en.wikipedia.org/wiki/Scope_creep" target="_blank" rel="nofollow" class="liwikipedia">Wikipedia</a>:</p>
<blockquote><p>Scope creep (also called focus creep, requirement creep,  feature creep, and sometimes kitchen sink syndrome) in project  management refers to uncontrolled changes in a project’s scope. This  phenomenon can occur when the scope of a project is not properly  defined, documented, or controlled. It is generally considered a  negative occurrence that is to be avoided.</p></blockquote>
<p>Scope creep turns relatively simple requests into horribly complex  and time consuming monsters.  It only takes a few innocent keystrokes by  the requirements guy for scope creep to happen:</p>
<ul>
<li>Version 1: Show a map of the location</li>
<li>Version 2: Show a <strong>3D</strong> map of the location</li>
<li>Version 3: Show a <strong>3D</strong> map of the location <strong>that  the user can fly through</strong></li>
</ul>
<p>Argh!  What used to be a 30 minute task just turned into a massively  complex system that could take hundreds of man hours.  Even worse, most  of the time scope creep happens <em>during</em> development, which  requires rewriting, refactoring, and sometimes throwing out code that  was developed just days prior.</p>
<h2>7.  Management that doesn’t understand programming</h2>
<div>
<p><img src="http://www.kevinwilliampang.com/wp-content/uploads/Compiling3.png" alt="Compiling" /><br />
<em>Ok, so maybe there are <a href="http://xkcd.com/303/" target="_blank" class="liexternal">some perks</a>.</em></p>
</div>
<p>Management is not an easy job.  People <strong>suck</strong>;  we’re fickle and fragile and we’re all out for #1.  Keeping a large  group of us content and cohesive is a mountain of a task.  However, that  doesn’t mean that managers should be able to get away without having  some basic understanding of what their subordinates are doing.  When  management cannot grasp the basic concepts of our jobs, we end up with  scope creep, unrealistic deadlines, and general frustration on both  sides of the table.  This is a pretty common complaint amongst  programmers and the source of a lot of angst (as well as one hilarious <a href="http://www.dilbert.com/" target="_blank" class="liexternal">cartoon</a>).</p>
<h2>6.  Documenting our applications</h2>
<p>Let me preface this by saying that yes, I know that there are a lot  of documentation-generating applications out there, but in my experience  those are usually only good for generating API documentation for other  programmers to read.  If you are working with an application that normal  everyday people are using, you’re going to have to write some  documentation that the average layman can understand (e.g. how your  application works, troubleshooting guides, etc.).</p>
<p>It’s not hard to see that this is something programmers dread doing.   Take a quick look at all the open-source projects out there.  What’s  the one thing that all of them are constantly asking for help with?   Documentation.</p>
<p>I think I can safely speak on behalf of all programmers everywhere  when I say, “<a href="http://en.wikipedia.org/wiki/Trash_of_the_Titans" target="_blank" rel="nofollow" class="liwikipedia">can’t  someone else do it?</a>“.</p>
<h2>5.  Applications without documentation</h2>
<p>I never said that we weren’t hypocrites.  <img src="http://www.kevinwilliampang.com/wp-includes/images/smilies/icon_smile.gif" alt=":-)" /> Programmers are constantly asked to  incorporate 3rd party libraries and applications into their work.  In  order to do that, <strong>we need documentation</strong>.   Unfortunately, as mentioned in item 6, programmers hate writing  documentation.  No, the irony is not lost on us.</p>
<p><strong>There is nothing more frustrating than trying to utilize a  3rd party library while having absolutely no fricken idea what half the  functions in the API do</strong>.  What’s the difference between  poorlyNamedFunctionA() and poorlyButSimilarlyNamedFunctionB()?  Do I  need to perform a null check before accessing PropertyX?  I guess I’ll  just have to find out through trial and error!  Ugh.</p>
<h2>4.  Hardware</h2>
<p>Any programmer who has ever been called upon to debug a strange crash  on the database server or why the RAID drives aren’t working properly  knows that hardware problems are a pain.  There seems to be a common  misconception that since programmers work with computers, we must know  how to fix them.  Granted, this may be true for some programmers, but I  reckon the vast majority of us don’t know or really care about what’s  going on after the code gets translated into assembly.  We just want the  stuff to work like it’s supposed to so we can focus on higher level  tasks.</p>
<h2>3.  Vagueness</h2>
<p>“The website is broken”.  “Feature X isn’t working properly”.  <strong>Vague  requests are a pain to deal with</strong>.  It’s always surprising to  me how exasperated non-programmers tend to get when they are asked to  reproduce a problem for a programmer.  They don’t seem to understand  that “it’s broken, fix it!” is <strong>not</strong> enough information  for us to work off of.</p>
<p>Software is (for the most part) deterministic. We like it that way.   Humor us by letting us figure out which step of the process is broken  instead of asking us to simply “fix it”.</p>
<h2>2.  Other programmers</h2>
<p>Programmers don’t always get along with other programmers.  Shocking,  but true.  This could easily be its own top 10 list, so I’m just going  to list some of the common traits programmers have that annoy their  fellow programmers and save going into detail for a separate post:</p>
<ul>
<li>Being grumpy to the point of being hostile.</li>
<li>Failing to understand that there is a time to debate system  architecture and a time to get things done.</li>
<li>Inability to communicate effectively and confusing terminology.</li>
<li>Failure to pull ones own weight.</li>
<li>Being apathetic towards the code base and project</li>
</ul>
<p>And last, but not least, the number 1 thing that annoys programmers…</p>
<h2>1.  Their own code, 6 months later</h2>
<div>
<p><img src="http://www.kevinwilliampang.com/wp-content/uploads/Sand-Mandala2.JPG" alt="" /><br />
<em>Don’t sneeze, I think I see a bug.</em></p>
</div>
<p>Ever look back at some of your old code and grimace in pain?  How  stupid you were!  How could you, who know so much <em>now</em>, have  written <em>that</em>?  Burn it!  Burn it with fire!</p>
<p>Well, good news.  You’re not alone.</p>
<p>The truth is, the programming world is one that is constantly  changing.  What we regard as a best practice today can be obsolete  tomorrow.  It’s simply not possible to write perfect code because the  standards upon which our code is judged is evolving every day.  It’s  tough to cope with the fact that your work, as beautiful as it may be <em>now</em>,  is probably going to be ridiculed later.  It’s frustrating because no  matter how much research we do into the latest and greatest tools,  designs, frameworks, and best practices, there’s always the sense that  what we’re truly after is slightly out of reach.  For me, this is the  most annoying thing about being a programmer.  The fragility of what we  do is necessary to facilitate improvement, but I can’t help feeling like  I’m one of those <a href="http://en.wikipedia.org/wiki/Sand_mandala" target="_blank" rel="nofollow" class="liwikipedia">sand-painting  monks</a>.</p>
<p>Well, there you have it.  The top 10 things that annoy programmers.   Again, if you feel that I missed anything please be sure to let me know  in the comments!</p>
<p><a href="http://www.kevinwilliampang.com/2008/08/28/top-10-things-that-annoy-programmers/" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/top-10-things-that-annoy-programmers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone vulnerability leaves your data wide open, even when using a PIN</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/iphone-vulnerability-leaves-your-data-wide-open-even-when-using-a-pin/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/iphone-vulnerability-leaves-your-data-wide-open-even-when-using-a-pin/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:24:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
		<category><![CDATA[Security]]></category>
<category>iphone</category><category>lynx</category><category>vulnerability</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1949</guid>
		<description><![CDATA[If you feel like going through the process of typing in your PIN every time you unlock your iPhone is worth it thanks to the unconquerable security it implies, you might want to read this report from Bernd Marienfeldt about the chosen one&#8217;s security model. Yes, a PIN will keep casual users from picking up [...]]]></description>
			<content:encoded><![CDATA[<p>If you feel like going through the process of typing in your PIN every  time you unlock your <a href="http://www.engadget.com/product/iphone-3gs" target="_blank" class="liexternal">iPhone</a> is worth it  thanks to the unconquerable security it implies, you might want to read  this report from Bernd Marienfeldt about the chosen one&#8217;s security  model. Yes, a PIN will keep casual users from picking up your phone and  making a call with it, or firing off an e-mail to your co-workers saying  that you&#8217;re quitting and becoming an exotic dancer, but it won&#8217;t keep  someone from accessing all your data. Bernd and fellow security guru Jim  Herbeck have discovered that plugging even a fully up-to-date,  non-jailbroken iPhone 3GS into a computer running Ubuntu Lucid Lynx  allows nearly full read access to the phone&#8217;s storage &#8212; even when it&#8217;s  locked. The belief is that they&#8217;re just a buffer overflow away from full  write access as well, which would surely open the door to making calls.  Bernd believes the iPhone&#8217;s lack of data encryption for content is a  real problem, and also cites the inability to digitally sign e-mails as  reasons why the iPhone is still not ready for prime time in the  enterprise.</p>
<p><a href="http://www.engadget.com/2010/05/27/iphone-vulnerability-leaves-your-data-wide-open-even-when-using/" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/iphone-vulnerability-leaves-your-data-wide-open-even-when-using-a-pin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple tops Microsoft as world&#8217;s most valuable tech firm</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/apple-tops-microsoft-as-worlds-most-valuable-tech-firm/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/apple-tops-microsoft-as-worlds-most-valuable-tech-firm/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:21:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1946</guid>
		<description><![CDATA[Apple passed a major milestone today, becoming the world&#8217;s largest technology company as measured by the total value of its shares. Near the close of trading on the Nasdaq exchange, Apple&#8217;s market capitalization stood at $223 billion, higher than No. 2 Microsoft, which had a market cap of $219.3 billion. It was the first time [...]]]></description>
			<content:encoded><![CDATA[<p>Apple passed a major milestone today, becoming the  world&#8217;s largest technology company as measured by the total value of its  shares.</p>
<p>Near the close of trading on the Nasdaq  exchange, Apple&#8217;s market capitalization stood at $223 billion, higher  than No. 2 Microsoft, which had a market cap of $219.3 billion.</p>
<p>It was the first time that Apple&#8217;s total share  worth climbed above its rival&#8217;s.</p>
<p>&#8220;Apple&#8217;s market cap just exceeded Microsoft&#8217;s  for the first time ever, making it the world&#8217;s largest tech company in  terms of market cap,&#8221; said Brian Marshall, an analyst with BroadPoint  AmTech. &#8220;It&#8217;s interesting that just seven years ago, the company traded  at less than cash.&#8221;</p>
<p>A company&#8217;s market cap is equal to its share  price times the number of shares outstanding. A year ago, Apple&#8217;s shares  closed at $130.78; today, the company&#8217;s shares fell in late afternoon  trading to $244.13, a one-year increase of 86.7%.</p>
<p>Microsoft&#8217;s shares, meanwhile, dropped to  $24.99 in late trading, off more than a dollar for the day.</p>
<p><a href="http://www.computerworld.com/s/article/9136345/Google_Update" target="_blank" class="liexternal">Google</a> , a competitor to both Apple and Microsoft,  closed the day with a market cap of $152 billion.</p>
<p>Oil giant Exxon Mobil is the U.S.&#8217;s largest  company, with a market cap of $278.6 billion.</p>
<p>According to BroadPoint&#8217;s Marshall, both <a href="http://www.computerworld.com/s/article/9137163/Apple_Update" target="_blank" class="liexternal">Apple</a> and <a href="http://www.computerworld.com/s/article/9137060/Microsoft_Update_Latest_news_features_reviews_opinions_and_more" target="_blank" class="liexternal">Microsoft</a> will generate in the neighborhood of $65  billion in revenues during the 2010 calendar year.</p>
<p><a href="http://www.techworld.com.au/article/348035/apple_tops_microsoft_world_most_valuable_tech_firm" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/apple-tops-microsoft-as-worlds-most-valuable-tech-firm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>44 million stolen gaming credentials found in online warehouse</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/44-million-stolen-gaming-credentials-found-in-online-warehouse/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/44-million-stolen-gaming-credentials-found-in-online-warehouse/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:20:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
<category>gaming accounts</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1944</guid>
		<description><![CDATA[Symantec says it has unearthed a server hosting the credentials of 44 million stolen gaming accounts &#8212; and one of the most surprising aspects of it is that the accounts were being validated by a Trojan distributed to compromised computers. The purpose of this Trojan-based validation is apparently to figure which credentials are valid and [...]]]></description>
			<content:encoded><![CDATA[<p>Symantec says it has unearthed a server hosting the  credentials of 44 million stolen gaming accounts &#8212; and one of the most  surprising aspects of it is that the accounts were being validated by a  Trojan distributed to compromised computers.</p>
<p>The purpose of this Trojan-based validation is  apparently to figure which credentials are valid and can be sold.  Symantec is calling this the Trojan.Loginck, and as described in a <a href="http://www.symantec.com/connect/blogs/44-million-stolen-gaming-credentials-uncovered" target="_blank" class="liexternal">blog post</a> by Symantec researcher Eoin Ward, the  database of stolen information includes about 210,000 stolen accounts  for <a href="http://www.networkworld.com/news/2007/072707-online-games-dirty-secrets.html" target="_blank" class="liexternal">World of Warcraft</a>, 60,000 for Aion, 2 million for  PlayNC and 16 million for Wayi Entertainment, all of which were being  sold online.</p>
<p>Symantec is recommending users of these sites  change their passwords.</p>
<p>&#8220;The particular database server we uncovered  seems very much at the heart of this operation &#8212; part of a distributed  password checker aimed at Chinese gaming sites. The stolen login  credentials are not just from particular online games, but include user  login accounts associated with sites that host a variety of online  games,&#8221; Ward writes.</p>
<p>In his blog, Ward says to turn the gaming  credentials into cash, the cybercrooks have apparently written a program  that checks the login details using Trojan.Loginck to make sure they  are valid, which is easier than trying to log into gaming sites 44  million times.</p>
<p>The value of stolen accounts credentials can  range from $35 to several thousand dollars, according to Symantec&#8217;s  research, which sought a rough market value based on prices associated  with <a href="http://www.playerauctions.com/" target="_blank" class="liexternal">www.playerauctions.com</a>,  described as a legitimate Web site to protect buyer and seller against  fraud.</p>
<p>&#8220;Most botnets have the ability to download and  run files, so why not push a custom piece of malware to each bot? The  malware could log on to the database and download a group of user names  and passwords in order to check them for validity,&#8221; Ward writes. The  database in question was holding 17GB of flat file data, and Symantec  analyzed its attempts to validate passwords for Wayi Entertainment.  There are said to be credentials for at least 18 gaming Web sites in the  database.</p>
<p><a href="http://www.techworld.com.au/article/348047/44_million_stolen_gaming_credentials_found_online_warehouse" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/44-million-stolen-gaming-credentials-found-in-online-warehouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How (and Why) to Stop Multitasking</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/how-and-why-to-stop-multitasking/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/how-and-why-to-stop-multitasking/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
<category>multitasking</category><category>productivity</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1942</guid>
		<description><![CDATA[During a conference call with the executive committee of a nonprofit board on which I sit I decided to send an email to a client. I know, I know. You&#8217;d think I&#8217;d have learned. Last week I wrote about the dangers of using a cell phone while driving. Multitasking is dangerous. And so I proposed [...]]]></description>
			<content:encoded><![CDATA[<div id="articleBody">
<p>During a conference call with the executive committee of a  nonprofit board on which I sit I decided to send an email to a client.</p>
<p>I know, I know. You&#8217;d think I&#8217;d have learned.</p>
<p>Last week I wrote about the <a href="http://blogs.hbr.org/bregman/2010/05/a-two-step-plan-for-changing-y.html" target="_blank" class="liexternal">dangers  of using a cell phone while driving</a>. Multitasking is dangerous. And  so I proposed a way to stop.</p>
<p>But when I sent that email, I wasn&#8217;t in a car. I was safe at my desk.  What could go wrong?</p>
<p>Well, I sent the client the message. Then I had to send him another  one, this time with the attachment I had forgotten to append. Finally,  my third email to him explained why that attachment wasn&#8217;t what he was  expecting. When I eventually refocused on the call, I realized I hadn&#8217;t  heard a question the Chair of the Board had asked me.</p>
<p>I swear I wasn&#8217;t smoking anything.  But I might as well have been.  <a href="http://news.bbc.co.uk/2/hi/uk_news/4471607.stm" target="_blank" class="liexternal">A study showed  that people distracted by incoming email and phone calls saw a 10-point  fall in their IQs</a>. What&#8217;s the impact of a 10-point drop? The same as  losing a night of sleep. More than twice the effect of smoking  marijuana.</p>
<p>Doing several things at once is a trick we play on ourselves,  thinking we&#8217;re getting more done. In reality, <a href="http://www.dailymail.co.uk/health/article-1205669/Is-multi-tasking-bad-brain-Experts-reveal-hidden-perils-juggling-jobs.html" target="_blank" class="liexternal">our  productivity goes down by as much as 40%</a>.  We don&#8217;t actually  multitask. We switch-task, rapidly shifting from one thing to another,  interrupting ourselves unproductively, and losing time in the process.</p>
<p>You might think you&#8217;re different, that you&#8217;ve done it so much you&#8217;ve  become good at it. Practice makes perfect and all that.</p>
<p>But you&#8217;d be wrong. Research shows that <a href="http://www.scribd.com/doc/19081547/Cognitive-control-in-media-multitaskers" target="_blank" class="liexternal">heavy  multitaskers are <em>less competent</em> at doing several things at  once than light multitaskers</a>. In other words, in contrast to almost  everything else in your life, the more you multitask, the worse you are  at it. Practice, in this case, works against you.</p>
<p>I decided to do an experiment.  For one week I would do no  multitasking and see  what happened. What techniques would help?  Could I  sustain a focus on one thing at a time for that long?</p>
<p>For the most part, I succeeded. If I was on the phone, all I did was  talk or listen on the phone. In a meeting I did nothing but focus on the  meeting. Any interruptions — email, a knock on the door — I held off  until I finished what I was working on.</p>
<p>During the week I discovered six things:</p>
<p><strong>First, it was delightful.</strong> I noticed this most  dramatically when I was with my children. I shut my cell phone off and  found myself much more deeply engaged and present with them. I never  realized how significantly a short moment of checking my email  disengaged me from the people and things right there in front of me.   Don&#8217;t laugh, but I actually — for the first time in a while — noticed  the beauty of leaves blowing in the wind.</p>
<p><strong>Second, I made significant progress on challenging projects</strong>,  the kind that — like writing or strategizing — require thought and  persistence. The kind I usually try to distract myself from.  I stayed  with each project when it got hard, and experienced a number of  breakthroughs.</p>
<p><strong>Third, my stress dropped dramatically.</strong> <a href="http://seattletimes.nwsource.com/pacificnw/2004/1128/cover.html" target="_blank" class="liexternal">Research  shows that multitasking isn&#8217;t just inefficient, it&#8217;s stressful</a>. And  I found that to be true. It was a relief to do only one thing at a  time. I felt liberated from the strain of keeping so many balls in the  air at each moment. It felt reassuring to finish one thing before going  to the next.</p>
<p><strong>Fourth, I lost all patience for things I felt were not a good  use of my time. </strong>An hour-long meeting seemed interminably long.  A meandering pointless conversation was excruciating. II became  laser-focused on getting things done. Since I wasn&#8217;t doing anything  else, I got bored much more quickly. I had no tolerance for wasted time.</p>
<p><strong>Fifth, I had tremendous patience for things I felt were  useful and enjoyable. </strong>When I listened to my wife Eleanor, I was  in no rush. When I was brainstorming about a difficult problem, I stuck  with it. Nothing else was competing for my attention so I was able to  settle into the one thing I was doing.</p>
<p><strong>Sixth, there was no downside.</strong> I lost nothing by not  multitasking. No projects were left unfinished. No one became frustrated  with me for not answering a call or failing to return an email the  second I received it.</p>
<p>That&#8217;s why it&#8217;s so surprising that multitasking is so hard to resist.  If there&#8217;s no downside to stopping, why don&#8217;t we all just stop?</p>
<p>I think it&#8217;s because our minds move considerably faster than the  outside world. You can hear far more words a minute than someone else  can speak.  We have so much to do, why waste any time? So, while you&#8217;re  on the phone listening to someone, why not use that <em>extra</em> brain  power to book a trip to Florence?</p>
<p>What we neglect to realize is that we&#8217;re already using that brain  power to pick up nuance, think about what we&#8217;re hearing, access our  creativity, and stay connected to what&#8217;s happening around us. It&#8217;s not  really extra brain power.  And diverting it has negative consequences.</p>
<p>So how do we resist the temptation?</p>
<p>First, the obvious: the best way to avoid interruptions is to turn  them off. Often I write at 6 am when there&#8217;s nothing to distract me, I  disconnect my computer from its wireless connection and turn my phone  off. In my car, I leave my phone in the trunk.  Drastic?  Maybe. But  most of us shouldn&#8217;t trust ourselves.</p>
<p>Second, the less obvious: Use your loss of patience to your  advantage. Create unrealistically short deadlines. Cut all meetings in  half. Give yourself a third of the time you think you need to accomplish  something.</p>
<p>There&#8217;s nothing like a deadline to keep things moving. And when  things are moving fast, we can&#8217;t help but focus on them. How many people  run a race while texting? If you really only have 30 minutes to finish a  presentation you thought would take an hour, are you really going to  answer an interrupting call?</p>
<p>Interestingly, because multitasking is so stressful, single-tasking  to meet a tight deadline will actually reduce your stress. In other  words, giving yourself less time to do things could make you more  productive and relaxed.</p>
<p>Finally, it&#8217;s good to remember that we&#8217;re not perfect. Every once in a  while it might be OK to allow for a little multitasking. As I was  writing this, Daniel, my two-year-old son, walked into my office,  climbed on my lap, and said &#8220;<em>Monsters, Inc.</em> movie please.&#8221;</p>
<p>So, here we are, I&#8217;m finishing this piece on the left side of my  computer screen while Daniel is on my lap watching a movie on the right  side of my computer screen.</p>
<p>Sometimes, it is simply impossible to resist a little multitasking.</p>
<p><a href="http://blogs.hbr.org/bregman/2010/05/how-and-why-to-stop-multitaski.html" target="_blank" class="liexternal">Link</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/how-and-why-to-stop-multitasking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A delicate balance: New study shows how networks keep themselves in synch</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/a-delicate-balance-new-study-shows-how-networks-keep-themselves-in-synch/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/a-delicate-balance-new-study-shows-how-networks-keep-themselves-in-synch/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:18:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[colleague]]></category>
		<category><![CDATA[consumers]]></category>
		<category><![CDATA[EFF]]></category>
		<category><![CDATA[engineering]]></category>
		<category><![CDATA[entire network]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[i]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[mccormick school]]></category>
		<category><![CDATA[MIT]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[plants]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[power plants]]></category>
		<category><![CDATA[real time]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[rsi]]></category>
		<category><![CDATA[rta]]></category>
		<category><![CDATA[sa]]></category>
		<category><![CDATA[school of engineering]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[study]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1940</guid>
		<description><![CDATA[Synchronization is all around us. Think of fireflies flashing together, crickets chirping in unison, neurons firing together and power plants generating electrical currents with the exact same frequency all across the power grid. These important collective behaviors happen spontaneously in both natural and engineered networks composed of a large number of interacting parts, but how? [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Synchronization is all around us. Think of  fireflies flashing together, crickets chirping in unison, neurons  firing together and power plants generating electrical currents with the  exact same frequency all across the power grid.</strong></p>
<p>These important collective behaviors happen spontaneously  in both natural and engineered networks composed of a large number of  interacting parts, but how?</p>
<p>Two Northwestern University researchers examined how a network&#8217;s  structure governs its synchronization and found that different factors  interact antagonistically for a network to optimize, or efficiently  perform, its task. For example, using a smaller number of interactions,  or even negative interactions, can &#8212; contrary to expectations &#8212;  improve synchronization. They also discovered that very similar networks  can behave very differently.</p>
<p>The findings, which are published by the journal <em>Proceedings of the National Academy of  Sciences</em> (<em>PNAS</em>), contribute a new understanding of the  interplay between the parts of networks and their synchronization.</p>
<p>The general mathematical framework developed by the researchers  is very flexible and can be applied to a large variety of network  systems, ranging from those with a few nodes to networks with millions  of nodes of various types.</p>
<p>&#8220;The network we are very interested in is the power grid, especially  considering the ongoing efforts to develop a Smart Grid,&#8221; said Adilson  E. Motter, an author of the paper and an assistant professor of physics  and astronomy at the Weinberg College of Arts and Sciences. &#8220;A Smart  Grid not only will increase harnessing of intermittent sources such as  solar and wind but also may allow real-time pricing and give customers  the option to choose their power supplier.&#8221;</p>
<p>&#8220;While it can be argued that a new system will undergo new  perturbations, it also offers the possibility of exploiting the to prevent or recover from  failures in real time, thus adding a new dimension to the concept of  smart network,&#8221; Motter said. &#8220;We want to know how such a system can be  kept stable, and our research is helping us understand what parameters  affect the stability of synchronous states.&#8221; </p>
<p>Motter also is an assistant professor of engineering sciences and  applied mathematics at the McCormick School of Engineering and Applied  Science and a member of the executive committee of the Northwestern  Institute on Complex Systems (NICO). He conducted the research with  colleague Takashi Nishikawa, a sabbatical visitor from Clarkson  University.</p>
<p>The results of the study are:</p>
<p>- Synchronization often can be enhanced not by reducing the size of  the network or making it more densely connected, but instead by  increasing the number of parts to synchronize and reducing the number of  interactions between them. For example, even if it is not possible to  synchronize 1,000 nodes it may be possible to synchronize 2,000 of them.</p>
<p>&#8220;A network out of synch also may be made to synchronize by taking  out, or obstructing, some of the interactions,&#8221; Nishikawa said. &#8220;This  illustrates that ‘less can be more&#8217; in synchronization phenomena.&#8221;</p>
<p>- Contrary to the prevailing paradigm, network structures that in  isolation would inhibit synchronization can, in fact, facilitate  synchronization when in the presence of other synchronization-inhibiting  structures. For example, negative interactions cause the nodes to  distance their activities from each other, thus inhibiting  synchronization. But when the entire network is taken into account,  negative interactions can cancel the effect of heterogeneities in the  network and lead to synchronous behavior that would not be possible  without them.</p>
<p>- The researchers identified for the first time the networks that can  most easily lead to synchronous activity and found, surprisingly, that  very similar networks can behave very differently. For example, sets of  networks with only slightly different sizes or differing by only one or a  few interactions can include very good and very bad &#8220;synchronizers.&#8221;</p>
<p>&#8220;This sensitive dependence on the network structure is the network  analogue of chaos,&#8221; Motter said. &#8220;Small perturbations in the network can  have far-reaching and counterintuitive consequences for  synchronization.&#8221; The fall of a tree on a power line in Canada could set  off a blackout in Florida, but the twist is that it also may prevent  one, he says.</p>
<p>Motter and Nishikawa&#8217;s research opens up new possibilities on how to  develop controllers for engineered systems. Consumers&#8217; daily needs  depend on tightly controlled systems. In the power  grid in the eastern U.S., for example, nearly 4,000 power  generators must oscillate &#8220;up and down&#8221; in synch more than five million  times a day to keep houses lighted.</p>
<p><strong> More information:</strong> The paper is titled &#8220;Network  Synchronization Landscape Reveals Compensatory Structures, Quantization,  and the Positive Effect of Negative Interactions.&#8221; The full article is  available on PNAS&#8217; website at <a href="http://www.pnas.org/" target="_blank" class="liexternal">http://www.pnas.org/</a> .</p>
<p><a href="http://www.physorg.com/news194024510.html" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/a-delicate-balance-new-study-shows-how-networks-keep-themselves-in-synch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network admin&#8217;s vacation checklist</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/network-admins-vacation-checklist/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/network-admins-vacation-checklist/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:17:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
		<category><![CDATA[i]]></category>
		<category><![CDATA[network]]></category>
<category>going away</category><category>holiday</category><category>network administrator</category><category>vacation</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1938</guid>
		<description><![CDATA[Summer is here — well not quite officially — but it is time to consider getting out of the office for a vacation! For the network administrator, this can be a challenging task. And if you are the only person of the IT shop, it can be a little daunting for your users. Here are [...]]]></description>
			<content:encoded><![CDATA[<p>Summer is here — well not quite officially — but it is time to  consider getting out of the office for a vacation! For the network  administrator, this can be a challenging task. And if you are the only  person of the IT shop, it can be a little daunting for your users. Here  are a few tips I will share on how you can get away!</p>
<li><strong>Find your help.</strong></li>
<p>This can be a person in the office that has casual IT interest or  someone whom you feel can step in to assist in a pinch. Get this person  what they need, including access to systems. For the case of “if you  need it” access, consider an envelope for each system and an  administrator-level password in it. If the envelope is opened, then  change the password or remove the additional account when you return. If  elevated permissions can be added (such as to an Active Directory  account) during the time-frame, that can easily be removed. This also  may be a good idea to set up a <a href="http://skype.com/" target="_blank" class="liexternal">Skype</a> account for you and the temporary helper for  quick questions should you be traveling internationally.</p>
<li><strong>Address what you know will be an issue. </strong></li>
<p>Chances are, there is something that regularly needs interaction.  Whether this be changing the tape, a periodic reboot of a system, or  moving a file through a system that gets hung up; it should be something  you address. If you can, write up a procedure for each of these  situations, especially the most common situations like restoring a file  or resetting a system.</p>
<li><strong>Move schedules around.</strong></li>
<p>If there is something that is somewhat regular yet requires  interaction above what you can comfortably hand off, maybe move the  schedule so that it happens right before you leave or upon your return.  In the backup tape example, maybe tweak the schedule so that a full  backup happens right before you leave and incremental backups happen  daily for 10 days instead of 7. Of course, make sure the overall level  of protection is not affected!</p>
<li><strong>Upgrade the phone. </strong></li>
<p>If your organization has a commercial wireless account, you may be  able to add additional features to your phone’s data plan to be fully  connected during your absence without incurring fees on your personal  account. This can also include international dialing.</p>
<li><strong>Clear the calendar. </strong></li>
<p>Don’t just blindly decline meetings, but try to push them to occur  before or after your absence. For regular meetings, get the frequent  attendees up to speed on your availability.</p>
<li><strong>Change passwords </strong></li>
<p>If you give someone privileged access to an admin account, prevent  the password for changing during the vacation period and reset it upon  your return. The same goes for your own user account, if by chance  anything is using your user account &#8211; you would like to know about it  beforehand. Change your own password as well a week or so before the  vacation.</p>
<li><strong>Set up email auto responder and give some alternate contact. </strong></li>
<p>When I go on vacation, I’ll check in to both my work and personal  accounts but still have an auto responder in place. The auto responder  must state when you will return, how to get in touch with someone if  this is urgent, and whether or not you expect this email to be replied  to during your absence. You also may share your mobile phone with the  helping person so that they can get you, even if only via a text  message.</p>
<p>You can add more specific application and system tasks via  automation. I’ve used Windows Scheduled Tasks or other scripts to do  something that I know will be an issue, such as restart a delicate  system, preemptively.</p>
<p>The systems will survive, but will you survive the vacation? How do  you go about getting out of the office? Share your tips below.</p>
<p><a href="http://blogs.techrepublic.com.com/networking/?p=3042" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/network-admins-vacation-checklist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eye Tracking for Mobile Control</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/eye-tracking-for-mobile-control/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/eye-tracking-for-mobile-control/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:15:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
<category>eye movement</category><category>eye tracking system</category><category>gaze</category><category>mobile devices</category><category>mobile phone users</category><category>smart phone</category><category>voice control</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1936</guid>
		<description><![CDATA[It&#8217;s hard sending a text message with arms full of groceries or while wearing winter gloves. Voice control is one alternative to using your fingers, but researchers are also working on other hands-free ways to control mobile devices. A team at Dartmouth College has now created an eye-tracking system that lets a user operate a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s hard sending a text message with arms full of groceries or while  wearing winter gloves. Voice control is one alternative to using your  fingers, but researchers are also working on other hands-free ways to  control mobile devices. A team at Dartmouth College has now created an  eye-tracking system that lets a user operate a smart phone with eye  movement.</p>
<p>Eye tracking has been used for years, primarily as a way for people  with disabilities to use computers and to enable advertisers to track a  person&#8217;s focus of interest. &#8220;The naturalness of gaze interaction makes  eye tracking promising,&#8221; says <a href="http://www.itu.dk/research/inc/?page_id=49" target="_blank" class="liexternal">John  Hansen</a>, an associate professor at the IT University of Copenhagen in  Denmark who works on gaze tracking. &#8220;Most of the time we are looking at  the information we find most interesting.&#8221;</p>
<p>Mobile eye tracking could be useful for all mobile phone users, says  Dartmouth professor <a href="http://www.cs.dartmouth.edu/%7Ecampbell/" target="_blank" class="liexternal">Andrew Campbell</a>, who led the development of the new  system, called EyePhone. But so far, little work has been done on eye  tracking on mobile phones. This isn&#8217;t surprising&#8211;keeping track of a  gaze via a mobile phone is much more challenging than on a desktop  computer because both the user and the phone are moving, and the  surrounding environment is so changeable.</p>
<p>&#8220;Existing algorithms were highly inaccurate in mobile  conditions&#8211;even if you are standing and there&#8217;s a small movement in  your arm, you&#8217;d get a large amount of blurring and error,&#8221; says  Campbell. The Dartmouth researchers got around this with an algorithm  that learns to identify a person&#8217;s eye under different conditions.  During a learning phase, the system is trained to identify a person&#8217;s  eye at varying distances and under different lighting. A user must  calibrate the system by taking a picture of the left or right eye both  indoors and outdoors.</p>
<p>EyePhone runs on a Nokia 810 smart phone. The program tracks the  position of an eye relative to the screen (rather than where a person is  looking). A user must move the phone slightly so the icon is directly  in front of her eye and then select an application by blinking. The  program places an &#8220;error box&#8221; virtually around an eye, and can recognize  the eye as long as it doesn&#8217;t move outside of this box. The phone app  divides the camera frame into nine regions and looks for the eye in one  of these regions. While the eye tracking approach is rudimentary, the  researchers hope to develop more sophisticated methods soon. The system  is at least 76 percent accurate in daylight and while the user is  standing still and 60 percent accurate when a person is walking, says  Campbell.</p>
<p>&#8220;This is a good step forward,&#8221; says <a href="http://www.cs.tufts.edu/%7Ejacob/" target="_blank" class="liexternal">Robert Jacob</a>,  a professor of computer science at Tufts University who also works on  eye tracking. &#8220;One of the problems with the cell phone is that there&#8217;s  no place for the user interface. Eye tracking seems like a very clever  idea.&#8221;</p>
<p>However, Jacob points out that tracking a user&#8217;s gaze will be more  challenging on a cell phone. This is because the eye barely moves when a  person&#8217;s gaze shifts between items close together on a small screen.</p>
<p>Hansen says the Dartmouth work is interesting, but says, &#8220;it&#8217;s a hard  problem they are facing here and I expect a lot of work in this area  for years to come.</p>
<p><a href="http://www.technologyreview.com/computing/25369/?a=f" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/eye-tracking-for-mobile-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPS is getting an $8-billion upgrade</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/gps-is-getting-an-8-billion-upgrade/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/gps-is-getting-an-8-billion-upgrade/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:14:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[accuracy]]></category>
		<category><![CDATA[aerospace]]></category>
		<category><![CDATA[AI]]></category>
		<category><![CDATA[air force]]></category>
		<category><![CDATA[Arm]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[cars]]></category>
		<category><![CDATA[cellphones]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[cold war]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[face]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[i]]></category>
		<category><![CDATA[industry]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[IQ]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[MIT]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Phone]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[navigation devices]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[ning]]></category>
		<category><![CDATA[outage]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[pki]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[rsi]]></category>
		<category><![CDATA[russia]]></category>
		<category><![CDATA[sa]]></category>
		<category><![CDATA[satellite]]></category>
		<category><![CDATA[satellites]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[vic]]></category>
		<category><![CDATA[www]]></category>
<category>global positioning system</category><category>navigation devices</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1934</guid>
		<description><![CDATA[Without it, ATMs would stop spitting out cash, Wall Street could blunder billions of dollars in stock trades and clueless drivers would get lost. It&#8217;s GPS, and it&#8217;s everywhere. » Don&#8217;t miss a thing. Get breaking news alerts delivered to your inbox. Although most people may associate the Global Positioning System with the navigation devices [...]]]></description>
			<content:encoded><![CDATA[<p>Without it, ATMs would stop spitting out cash, Wall Street could  blunder billions of dollars in stock trades and clueless drivers would  get lost.</p>
<p>It&#8217;s GPS, and it&#8217;s everywhere.</p>
<div id="article-promo"><a href="http://www.latimes.com/la-email-splash-page,0,121618.htmlstory" target="_blank" class="liexternal">» Don&#8217;t miss a thing. Get breaking news alerts delivered to  your inbox.</a></div>
<p>Although most people may associate the Global  Positioning System with the navigation devices that are becoming  standard equipment on new cars, GPS has become a nerve center for the  21st century rivaling the Internet — enabling cargo companies to track  shipments, guiding firefighters to hot spots and even helping people  find lost dogs.</p>
<p>&#8220;It&#8217;s a ubiquitous utility that everybody takes  for granted now,&#8221; said Bradford W. Parkinson.</p>
<p>He should know.  Three decades ago, as a baby-faced Air Force colonel just out of the  Vietnam War, Parkinson led the Pentagon team that developed GPS at a  military base in El Segundo.</p>
<p>Now, scientists and engineers —  including those at a sprawling satellite-making factory in El Segundo —  are developing an $8-billion GPS upgrade that will make the system more  reliable, more widespread and much more accurate.</p>
<p>The new system  is designed to pinpoint someone&#8217;s location within an arm&#8217;s length,  compared  with a margin of error of 20 feet or more today. With that  kind of precision, a GPS-enabled mobile phone could guide you right to  the front steps of Starbucks, rather than somewhere on the block.</p>
<p>&#8220;This  new system has the potential to deliver capabilities we haven&#8217;t seen  yet,&#8221; said Marco Caceres, senior space analyst for aerospace research  firm Teal Group. &#8220;Because GPS touches so many industries, it&#8217;s hard to  imagine what industry wouldn&#8217;t be affected.&#8221;</p>
<p>The 24 satellites  that make up the GPS constellation — many of them built at the former  Rockwell  plant in Seal Beach — will be replaced one by one.  The first  replacement was scheduled to be launched from Cape Canaveral this  weekend. The overhaul will take a decade and is being overseen by  engineers at  Los Angeles Air Force Base in El Segundo, where Parkinson  and his team developed the current system.</p>
<p>&#8220;We know that the world  relies on GPS,&#8221; said Col. David B. Goldstein, the chief engineer for  the upgrade.</p>
<p>San Diego found out firsthand in 2007, when the Navy accidentally  jammed GPS signals in the area, knocking out cellphone service and a  hospital&#8217;s emergency hospital paging system for doctors. New York  experienced a similar problem a year later.</p>
<p>The upgrade is  designed in part to prevent such outages by increasing the number of  signals beamed to Earth from satellites that orbit 12,000 miles above.  By triangulating the signals from four satellites, GPS receivers — and  there are now more than a billion of them — can pinpoint your location  on the ground.</p>
<p>Although &#8220;positioning&#8221; is an obvious application of  the technology, it&#8217;s also become a crucial timekeeper for the financial  industry. Transactions made everywhere, from ATMs to Wall Street stock  trades, are time-stamped using precise atomic clocks ticking within the  GPS satellites. The clocks are accurate to one-billionth of a second.  It&#8217;s a  crucial technology for Wall Street, where a fraction of a second  could mean billions of dollars.</p>
<p>Before GPS, explorers and  seafarers figured out where they were by looking at the sun and the  stars. Even with the advent of gyroscopes and radios, navigation was  still imprecise, with an average  margin of error of  a mile or two.</p>
<p>The  Cold War sparked the necessity for something better.</p>
<p>When the  Soviet Union launched the world&#8217;s first orbiting satellite, Sputnik, in  1957, scientists at Johns Hopkins University scrambled to track it. They  soon realized they could determine Sputnik&#8217;s position by monitoring the  radio waves  it emitted.</p>
<p>That led to a breakthrough concept. If  radio waves could be used to track a satellite from  Earth, the radio  waves from the satellite could also be used to determine the position of  an object on the ground.</p>
<p>The Pentagon jumped at the idea. The  Navy in particular needed help guiding its submarines that carried  nuclear missiles. Because the submarines spent months underwater and  only surfaced sporadically, they did not have a precise way of knowing  where they were, which diminished the accuracy of the missiles.</p>
<p>In  the 1960s, the Pentagon launched more than a dozen satellites under a  program called Transit to help the submarines, which were outfitted with  an antenna that could receive satellite signals when they surfaced.</p>
<p>But  the system was  accurate only to within 100 feet — and only when a  submarine wasn&#8217;t moving. The government needed something better.</p>
<p>That&#8217;s  where Parkinson came in. In 1972, the Pentagon tapped him to develop a  satellite-based navigation system that had more naysayers than  supporters. Parkinson recalled frequent trips to Washington to deflect  criticism from politicians and even some Pentagon brass that decried the  project as a waste of taxpayers&#8217; money.</p>
<p>&#8220;I was told that the  system was useless and that it had no future,&#8221; said Parkinson, 75, who  is now professor emeritus at Stanford University. &#8220;I guess we proved  them wrong.&#8221;</p>
<p>In addition to Rockwell, Parkinson enlisted engineers  at  Aerospace Corp., also in El Segundo. The first satellite was  launched in 1978 and the system began partially operating with 21  satellites in 1993.</p>
<p>The military seized on the technology quickly,  using GPS to guide troops through sand storms during the first Gulf  War. A few years later, in 1995, GPS became a household name after Air  Force Capt. Scott F. O&#8217;Grady used his hand-held unit to guide rescuers  to his position after his jet was shot down over Bosnia-Herzegovina.</p>
<p>Since  then, GPS has revolutionized warfare. GPS is used to direct the drones  seeking out insurgents in Afghanistan, and has made &#8220;smart bombs&#8221; so  accurate that they can be dropped from 40,000 feet and still land within  10 feet of  their target.</p>
<p>The Pentagon operates and controls the  GPS satellite system used in every country around the world. Until 2000  it deliberately degraded the signals that could be read by civilian  devices. Commercial applications soared in 2000, when President Bill  Clinton ordered the Pentagon to stop  making the signals fuzzy.</p>
<p>Worried  that the U.S. could flip the switch and shut off GPS to the rest of the  world, several countries are developing their own satellites to wean  themselves from relying on technology controlled by the U.S. military.  The European Union, China and Russia are spending billions of dollars to  develop their own versions.</p>
<p>Commercial applications, meanwhile,  continue to multiply.</p>
<p>NavCom Technology Inc. in Torrance makes a  remote-control system for tractors  that steers by GPS. The company  refines GPS signals with other ground-based navigation devices so that  farmers can watch their tractors plant seeds in straight rows without  overlapping in their fields.</p>
<p>Oil riggers pay a monthly  subscription for a GPS service that enables them to zero in on oil   fields that lay thousands of feet below the surface on the ocean floor.</p>
<p>The  number of users who subscribe to such services is expected to balloon  to at least 15 million this year, up from 100,000 six years ago,  according to Frost &amp; Sullivan, a San Antonio research firm.</p>
<p>&#8220;That&#8217;s  not including the hundreds of millions of people who get the signals  for free on applications through their cellphones,&#8221; said Daniel  Longfield, industry analyst with Frost &amp; Sullivan.</p>
<p>Under the  $8-billion upgrade, Boeing Co.&#8217;s Space and Intelligence Systems in El  Segundo is building 12  satellites the size of sport-utility vehicles,  and  18 others will be assembled by Lockheed Martin Corp. in Denver.  Twenty-four will go into orbit and six will be reserved as spares.</p>
<p>The  first phase is more than three years behind schedule, costing taxpayers  about $1 billion. Much of the delay has been blamed on Air Force  demands for new features, including the ability to upgrade  the  satellites&#8217; software while they are in space.</p>
<p>The new satellites  will also triple the amount of signals available for commercial use and  will have atomic clocks that are even more precise — keeping time to a  fraction of a billionth of a second.</p>
<p>&#8220;GPS has truly become the  lighthouse of the world,&#8221; Parkinson said. &#8220;It&#8217;s just remarkable how the  system has evolved over the past 30 years. It&#8217;ll be just as interesting  to see what will come in the next 30.&#8221;</p>
<p><a href="http://www.latimes.com/business/la-fi-gps-20100523,0,3054578.story" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/gps-is-getting-an-8-billion-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seagate hybrid drive delivers SSD performance at HDD price</title>
		<link>http://orange.id.au/wordpress/index.php/2010/05/31/seagate-hybrid-drive-delivers-ssd-performance-at-hdd-price/</link>
		<comments>http://orange.id.au/wordpress/index.php/2010/05/31/seagate-hybrid-drive-delivers-ssd-performance-at-hdd-price/#comments</comments>
		<pubDate>Mon, 31 May 2010 00:12:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[I.T News]]></category>
<category>cache memory</category><category>combination drive</category><category>hard disk drive</category><category>seagate momentus</category><category>ssd</category>
		<guid isPermaLink="false">http://orange.id.au/wordpress/?p=1931</guid>
		<description><![CDATA[After failing to gain market traction with its first iteration of hybrid drives three years ago, Seagate today announced a new hard-disk and solid-state combination drive with as much as 500GB of capacity, but with a 250GB model starting at $113. While Seagate&#8217;s last attempt to market a hybrid drive focused on energy savings, its [...]]]></description>
			<content:encoded><![CDATA[<p>After failing to gain market traction with its  first iteration of hybrid drives three years ago, Seagate today  announced a new hard-disk and solid-state combination drive with as much  as 500GB of capacity, but with a 250GB model starting at $113.</p>
<p>While Seagate&#8217;s last attempt to market a hybrid  drive focused on energy savings, its new Momentus XT is all about  performance and capacity.</p>
<p>The drive has special software that tracks a  person&#8217;s use trends and then uses the SSD component of the drive to  optimize performance, and it can adjust that performance over time with  changes in user behavior.</p>
<p>The Momentus XT is a 7200-rpm serial ATA (SATA)  hard-disk drive combined with 4GB of SSD capacity and 32MB of DDR3  cache memory. Seagate was unable to offer read, write speeds on the  drive.</p>
<p>The combination, Seagate said, blows by  traditional 7,200-rpm and 10,000-rpm hard-disk drives for read and write  speeds, and nearly matches pure-SSD performance for the same.</p>
<p>&#8220;We heard loud and clear from our user&#8217;s  feedback back [on our last hybrid drive] that our next drive had better  be a high performance one,&#8221; said Mark Wojtasiak, senior product  marketing manager at Seagate.</p>
<p>Seagate said it tested the Momentus XT against  three other industry-leading drives, included a pure-SSD, a  10,000-rpmWestern Digital Velociraptor hard drive, and its own 7200-rpm  Momentus hard-disk drive. It used ASUS G51-series gaming notebooks  running <a href="http://www.computerworld.com/s/article/9119998/Continuing_Coverage_Microsoft_Windows_7_Vista_Reloaded" target="_blank" class="liexternal">Windows 7</a> Home Premium, running identical scripts  on each.</p>
<p>&#8220;We booted within 5 seconds of an SSDs boot  time, and we were 15 seconds faster than a 300GB Velociraptor and 36  seconds faster than our 7200-rpm [Momentus] drive,&#8221; Wojtasiak said.</p>
<p>When it came to loading applications, the  Seagate Momentus XT was within range of a SSD drive, and it was  &#8220;significantly&#8221; faster than the Velociraptor or Momentus hard drives, he  said.</p>
<p>In the fall of 2007, Seagate launched its first  and only hybrid drive, the <a href="http://www.computerworld.com/s/article/9041320/Seagate_rolls_out_hybrid_disk_flash_memory_drive" target="_blank" class="liexternal">Momentus 5400 PSD</a>, or Power Savings Drive. The  2.5-in. PSD had a spindle speed of 5,400 rpm and only 256MB NAND flash  capacity. That drive failed to sell well.</p>
<p>The purpose of the PSD&#8217;s SSD component was to  act as a type of cache so that boot times would be improved and the hard  drive platters would only spin up about 10% of the time, consuming up  to 50% less power than traditional 5400-rpm spinning drives. But the  drive offered little capacity compared with hard-disk drives of its day,  and performance was only modestly better.</p>
<p>Stephen Baker, vice president of computer  hardware industry analysis at research firm NPD Group, said, &#8220;I think  they&#8217;ve tried to address some of the issues around price, and they&#8217;ve  tried to address the fact that pure SSD drives are pretty expensive, and  hybrids in the past didn&#8217;t offer you a lot of value &#8212; they didn&#8217;t  perform mush better than SSDs, but they cost much more.&#8221;</p>
<p>Baker said from a price-point perspective, the  Momentus XT is very competitive with hard drives and SSDs. For example,  an <a href="http://www.computerworld.com/s/article/9142443/Intel_Update" target="_blank" class="liexternal">Intel</a> X25-M (consumer-class) SSD with 80GB of  capacity costs about $215 on online retail sites such as Newegg.com.</p>
<p>The new Momentus XT comes in 250GB, 320GB and  500GB capacities and has a manufacturer&#8217;s suggested retail price of  $113, $132, and $156, respectively. ASUS said it will be the first PC  maker to ship systems featuring Seagate&#8217;s Momentus XT drive.</p>
<p>The drive is targeted at PC gamers, work  groups, or developers and other computer enthusiasts who want to build  their own high-performance computer. If it catches on, eventually, the  product is expected to be marketed at the general laptop computer  market, Wojtasiak said.</p>
<h2>Secret sauce</h2>
<p>Along with the Momentus XT, Seagate announced its  Adaptive Memory software, an algorithm that maps user patterns and  optimizes the drive&#8217;s performance based on those patterns.</p>
<p>Wojtasiak said the first time a user boots a  system with the Momentum XT drive, the Adaptive Memory kicks in and  begins learning use patters, booting the OS and then the most frequently  used applications first.</p>
<p>By second boot, the system knows about 80% of a  users system preferences and habits, and by the third boot, the drive&#8217;s  performance optimization peaks and remains topped out, he said.</p>
<p>The Momentus XT also performs the same  regardless of the operating system, Wojtasiak said. &#8220;This is operating  system and application independent,&#8221; he said.</p>
<p>According to Seagate, OS independent means that  the operating system does not determine what data should be written to  flash memory versus the disk platters. Data placement is decided by the  Momentum XT&#8217;s algorithms, which monitor accesses to the disc and  identify the data that would see the biggest performance benefit from  being be put in flash memory. It also means that the solid state hybrid  drive will show a performance benefit when installed in a system with  any operating systems: XP, Vista, Windows 7, Linux, Mac, etc.</p>
<p>&#8220;I think Seagate has done a good job of  acknowledging they have had two pitches that they swung at in this  product segment and they missed both,&#8221; said Mark Geenen, an analyst with  research firm Trendfocus.</p>
<p>&#8220;With this product, it looks like they&#8217;ve made  some good design adjustments so that without a fully optimized OS this  product can still learn over time user tendencies and adjust  performance,&#8221; he said.</p>
<p>Geenen said he was impressed with performance  demonstrations of the Momentus XT by Seagate. &#8220;I think they&#8217;ve made it  an attractive product,&#8221; he said.</p>
<p>A year and a half ago, Seagate announced its  first SSD, the <a href="http://www.computerworld.com/s/article/print/9141893/Seagate_announces_its_first_solid_state_drive" target="_blank" class="liexternal">2.5-in Pulsar</a>, an <a href="http://www.computerworld.com/s/article/9140456" target="_blank" class="liexternal">enterprise-class</a> drive that uses single-level cell (SLC) NAND flash chips. The PSD  offered up to 240MB/sec. sequential read speeds and 200MB/sec.  sequential write speeds or peak performance of up to 30,000 read IOPS  and 25,000 write IOPS.</p>
<p>It also claimed the Pulsar was as much as 20%  faster than standard 5400-rpm hard drive technology, cuts energy  consumption by 50% and improves mean time between failure (MBTF) by 50%  compared with traditional drives.</p>
<h2>Stuck on SLC SSD</h2>
<p>The company has yet to <a href="http://www.computerworld.com/s/article/9119820/As_SSDs_ascend_how_does_Seagate_plan_to_stay_relevant_" target="_blank" class="liexternal">produce</a> a consumer-class SSD using less expensive  multi-level cell (MLC) NAND flash chip technology, however.</p>
<p>Like with the Pulsar SSD, Wojtasiak said  Seagate stuck with SLD NAND flash for the Momentus XT. SLC NAND flash  memory, which stores just one bit per cell, natively has higher  performance and vastly better endurance than MLC NAND flash.</p>
<p>SLC typically can sustain 10 times the number  of write-erase cycles as MLC NAND flash, even though newer wear-leveling  software is helping to even that playing field.</p>
<p>&#8220;What&#8217;s important to note about the SSD is that  data is always written to disk first and then mirrored to the flash  memory,&#8221; Wojtasiak said. &#8220;So there is no risk of losing that data should  something happen to the flash.&#8221;</p>
<p>In its own tests, Seagate said it emulated  writing 250GB of data to the Momentum XT over a five-year span, and &#8220;saw  very little to no SSD degredation.&#8221;</p>
<p>The Momentus XT uses USB 3.0 interconnect with  up to 4.8 Gbit/sec. throughput and native command queuing (NCQ), and  also has an eSATA port for use of the drive in an external enclosure.</p>
<p>While Baker was impressed with changes made for  the Momentum XT, he said the biggest hurdle facing its uptake is  building a market for such a product.</p>
<p>&#8220;It&#8217;s about the value proposition as they try  to take over more of the 2.5-in drive market because 2.5-in. drives are  not as popular a product as 3.5-in. drives for your specialty users who  like to build their own systems,&#8221; Baker said.</p>
<p>&#8220;The key is to develop a culture of buying big  and cheap drives for capacity and then supplementing them with products  like [the Momentus XT] to boost the performance,&#8221; he said.</p>
<p>Seagate has also announced two new versions of  its 5400-rpmand 7200-rpm Momentus traditional hard drive, with up to  750GB of capacity.</p>
<p><a href="http://www.techworld.com.au/article/347654/seagate_hybrid_drive_delivers_ssd_performance_hdd_price?pp=2" target="_blank" class="liexternal">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orange.id.au/wordpress/index.php/2010/05/31/seagate-hybrid-drive-delivers-ssd-performance-at-hdd-price/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->