Technology and Science News - ABC News


"

newsbulletin.nbFooter = ""

//append widget header

$("#newsbulletin > .midcontainer").append("");

$("#newsbulletin > .midcontainer").append(newsbulletin.nbContainer);

$("#newsbulletin > .midcontainer").append(newsbulletin.nbFooter);

newsbulletin.nbDiv = document.getElementById('nbItemContainer');

nbjsId = 0;

newsbulletin.load = function()

//alert(newsbulletin.baseloc+'/xmldata/newsbulletin?id=15691212&twOverride=&lpos='+newsbulletin.lpos+'&section=&'+nbjsId)

//to try and handle caching in webkit browsers

dynamicJS.load('newsBulletin'+nbjsId, newsbulletin.baseloc+'/xmldata/newsbulletin?id=15691212&twOverride=&lpos='+newsbulletin.lpos2+'&section=&'+nbjsId);

//dynamicJS.load('newsBulletin','http://preview.abcnews.go.com/xmldata/newsbulletin?id=13564505');

//display items

newsbulletin.displayItems = function(nbItemObj)

//check if status update

this.isStatusUpdate = (nbItemObj.label == 'Status Update')?true:false;

//item type class

this.itemTypeClass = (this.isStatusUpdate)?'orange':'blue';

//bg position

this.itemBgPos = '100% 55%';

if(nbItemObj.bgPos != null)

this.itemBgPos = nbItemObj.bgPos;

//author image

this.nbItemStyle = '';

this.nbH4Class = 'class=nbheader';

this.nbH4Style = '';

this.nbItemStyleAuthor = '';

if(nbItemObj.authorimage != null && nbItemObj.authorimage != '')

this.nbH4Style = ' style=width:210px;';

this.nbItemStyle = 'background:url('+nbItemObj.authorimage+') no-repeat bottom right'//+ this.itemBgPos;

this.nbItemStyleAuthor = ' nbItemContentsAuthor'

//title

this.title = '

'+nbItemObj.title+'

';

if(nbItemObj.link != null && nbItemObj.link != '')

this.title = ''

//text

this.text = '';

this.textCapped = '';

this.morelink = 'More'

if(nbItemObj.text != null)

this.text = nbItemObj.text;

//if item is not expanded display capped text if applicable

if(nbItemObj.isExpanded != true)

if(nbItemObj.text.length > 63)

this.textCapped = nbItemObj.text.substring(0, 63);

this.text = this.textCapped + '...';

if(this.isStatusUpdate)

this.text = this.textCapped + '... ' + this.morelink;

//social

this.social = '';

this.socialStyle = '';

this.authorBlock = '';

this.divider = '';

this.fb = '';

if(nbItemObj.authorfb != null && nbItemObj.authorfb != '')

this.fb = ''

this.twitter = '';

if(nbItemObj.authortwitter != null && nbItemObj.authortwitter != '')

this.twitter = ''

this.bio = '';

if(nbItemObj.authorbio != null && nbItemObj.authorbio != '')

this.bio = ''+nbItemObj.author+''

this.authorBlock = '

'+this.bio+'

'

if(nbItemObj.author != null && nbItemObj.author != '')else

this.social = '';

this.textStyle = '';

if(nbItemObj.authorimage != null && nbItemObj.authorimage != '')

this.textStyle = ' style=width:208px;';

else

if(nbItemObj.author == null

this.categoryTag = '';

this.nbTextOverride = '';

this.rowTemp = ''+this.authorBlock+'

'+nbItemObj.date+'

'+this.title+'

'+this.text+'

'+this.social+'

';

if (nbItemObj.notes)

nbNotes = nbItemObj.notes;

nbNoteStr = '';

nbNoteDivider = '';

$.each(nbNotes, function(idx)

nbNote = nbNotes[idx];

this.noteAuthorBlock = '';

this.notefb = '';

if(nbNote.noteAuthor.facebook != null && nbNote.noteAuthor.facebook != '')

this.notefb = ''

this.notetwitter = '';

if(nbNote.noteAuthor.twitter != null && nbNote.noteAuthor.twitter != '')

this.notetwitter = ''

this.notebio = '';

if(nbNote.noteAuthor.bio != null && nbNote.noteAuthor.bio != '')

this.notebio = ''+nbNote.noteAuthor.name+''

this.noteAuthorBlock = '

'+this.notebio+'

'

this.notesocial = '';

this.noteSocialStyle = '';

if(nbNote.noteAuthor.name != null && nbNote.noteAuthor.name != '')else

this.notesocial = '';

if (idx == nbNotes.length-1)

nbNoteDivider = '';

this.nbNoteDiv = '

'+nbNote.noteHeadline+'

'+this.noteAuthorBlock+'

'+nbNote.noteOverview+'

'+this.notesocial+'

';

nbNoteStr += this.nbNoteDiv;

);

this.rowTemp += nbNoteStr;

return this.rowTemp;

function showMoreText(id)

//grab old item height

var oldItemHeight = $('#nbItem_'+id).height();

//retrieve the content from the array

$('#text_'+id).html(contentObject[id])

//store id a list of opened objects

fullTextList.push(id.toString());



var newContainerHeight = $("#nbItemContainer").height() + ($('#nbItem_'+id).height()-oldItemHeight);

$("#nbItemContainer").css('height', newContainerHeight);

//reinitialize scroll

window.api.reinitialise();

lastNBObjStr = '';

function isNewData(data)

isNewTemp = false;

currNBObjStr = '';

$.each(data.updates, function(ind)

currNBObjStr = currNBObjStr + data.updates[ind].objId + data.updates[ind].date;

);

//console.log('x'+currNBObjStr);

//console.log('y'+lastNBObjStr);

if(currNBObjStr != lastNBObjStr)

isNewTemp = true;

else

//console.log('no refresh');

lastNBObjStr = currNBObjStr;

return isNewTemp;

isHeaderLinkLoaded = false; // flag to check if the header link is loaded

isShareLinkLoaded = false; // flag to check if the share link is loaded

isDoneLoading = false; // flag to check if the html is done loading in the jScrollPane

function newsBulletin(data)

if(data)

isNewDataFlag = isNewData(data);

if(isNewDataFlag)

//clear contents first

newsbulletin.nbDiv.innerHTML = '';

//console.log('refresh');

updates = data.updates;

headerLink = data.widgetLink;

shareLink = data.shareLink;

if (headerLink != '' && headerLink != null && !isHeaderLinkLoaded)

var twitterImg = ""

$("#newsbulletin > .midcontainer > .widget_head").append("");

$("#newsbulletin > .midcontainer > .widget_head > .twitterLink a > .twitterContent").append("" + twitterImg + "");

isHeaderLinkLoaded = true;

//clear the author cutouts array

newsbulletin.authorCutouts = [];

// check to see if there is a height set for container, if so clear it

// prevents cacheing

var hasHeight = $('#nbItemContainer').attr('style');

if (typeof hasHeight != 'undefined')

$('#nbItemContainer').removeAttr('style');

$.each(updates, function(ind)

var itemDetails = new Object();

it = updates[ind];

//populate the itemDetails object

itemDetails.id = it.objId;

itemDetails.title = it.title;

itemDetails.objType = it.objType;

itemDetails.link = it.link;

itemDetails.date = it.date;

itemDetails.label = it.label;

itemDetails.author = it.author.name;

itemDetails.authorbio = it.author.bio;

itemDetails.authorfb = it.author.facebook;

itemDetails.authortwitter = it.author.twitter;

itemDetails.feed = it.feed;

itemDetails.category = it.category;

//set defaults if item is a status update

if(itemDetails.label == 'Status Update')

if(it.author.image == '')

it.author.image = 'http://a.abcnews.com/assets/images/abc_news_logo_84x84.png'

if(it.author.name == '')

itemDetails.author = 'ABC News'

itemDetails.authorfb = 'http://www.facebook.com/abcnews'

itemDetails.authortwitter = 'http://twitter.com/abc'

//only pass the author image if it's not displayed in any of the items yet

if($.inArray(it.author.image, newsbulletin.authorCutouts) == -1)

itemDetails.authorimage = it.author.image;

//add to ignore list

if(it.author.image != '' &&($.inArray(it.author.image, newsbulletin.authorCutouts) == -1))

newsbulletin.authorCutouts.push(it.author.image);

if(it.text != '')

itemDetails.text = it.text;

else

itemDetails.bgPos = 'bottom right';

if (it.notes)

itemDetails.notes = it.notes;

//build a name value pair list of id/text

contentObject[itemDetails.id] = itemDetails.text

itemDetails.isExpanded = ($.inArray(itemDetails.id, fullTextList) > -1) ? true : false;

//build markup

$("#nbItemContainer").append(newsbulletin.displayItems(itemDetails));

);

$("#nbItemContainer").append('');

//set the height of container div

$("#nbItemContainer").css('height',$("#nbItemContainer").height());

if (shareLink != '' && shareLink != null && !isShareLinkLoaded)

$("#newsbulletin > .midcontainer > .nbFooter").css("height":"35px", "border-top":"1px solid #d5d5d5", "border-bottom":"border-bottom:1px solid #eaeaea");

$("#newsbulletin > .midcontainer > .nbFooter").append("");

isShareLinkLoaded = true;

if($.browser.msie)

if ($.browser.version .midcontainer > .nbFooter").css("display":"none");

var timeoutId = setTimeout(function()

$("#newsbulletin > .midcontainer > .nbFooter").css("display":"block");

clearTimeout(timeoutId);

, 3000);

dynamicJS.unload('newsBulletin'+nbjsId, newsbulletin.baseloc+'/xmldata/newsbulletin?id=15691212&'+nbjsId);

isDoneLoading = true;

if ($.browser.webkit)

if(nbjsId .midcontainer > .nbFooter").css("display":"none");

var timeoutId = setTimeout(function()

$("#newsbulletin > .midcontainer > .nbFooter").css("display":"block");

clearTimeout(timeoutId);

, 3000);

7500)

setInterval(

function()

window.api.getContentPane().html(

newsbulletin.load()

);

,

60000

);

setInterval(function()

// we could call "pane.jScrollPane(settings)" again but it is

// more convenient to call via the API as then the original

// settings we passed in are automatically remembered.

// Initialization of the container should be done after all the markup has been loaded

// since there is no master data management architecture listener that could be passed into reinitialise() for callback

if (isDoneLoading)

window.api.reinitialise();

isDoneLoading = false;

, 5000);

;

addOnload(newsbulletin.load());

http://abcnews.go.com/Technology

Rachelle Williams on HubPages


The Disturbing Sodder Mystery - The Children Who Disappeared in a Cloud of Smoke (True Story)11 months ago

On Christmas Eve in 1945, a house catches on fire. Five out of the nine children in the house completely vanished into thin air. Ten Years later, their mother receives a disturbing photograph...

The Great Lie of the Last Century: George W. Bush and the "Search" for Weapons of Mass Destruction11 months ago

If you aren't old enough to remember, or aran't sure of exactly how President George W. Bush lied to America and shamed the whoule country, view this fact-based timeline & unravel his web of lies

Viral YouTube Clip: Ain't Nobody Got Time for That!11 months ago

Kimberly "Sweet Brown" Wilkins made the phrase, "Aint Nobody Got Time for That!" world famous - Here is your chance to view the original viral YouTube clip & learn more about "Sweet...

Whatever Happened to Kristy McNichol?23 months ago

Catch up with 70's Teen Idol, Kristy McNichol

Justice Gone Wrong: Trevis Austin3 years ago

Here are the Stats Name: Trevis Austin Occupation: University of South Alabama Campus Police Officer Crime: (No Charges Filed) Sentence: (No Charges Filed) *Civil Case Pending Trevis Austin is the campus...

Abuse of Power: David W. Lanier3 years ago

The Stats Name: David W. Lanier Occupation: Judge Crime: Sexual Assault, Violation of Civil Rights Sentence: Prison, 25 Years Judge David W. Lanier had his hands on the pulse of the law in Dyersburg,...

How Aldrich Ames Beat the Lie Detector Test4 years ago

During the mid 80s through the mid 90s (the height of the Cold War), the Russians paid $4.6 million dollars to Aldrich Ames. Ames was a spy (CIA Agent) who later pleaded guilty to espionage, which involved selling...

Whatever Happened to Bern Nadette Stanis? (Thelma from Good Times)3 years ago

Thelma! Thelma! Thelma! That was one of the most memorable lines from an episode of the popular black sitcom, Good Times. On the show, Thelma Evans was the epitome of a good girl. She had good grades, she had a good...

Whatever Happened to Jayne Kennedy?4 years ago

Jayne Kennedy first came onto the Hollywood scene as a dancer for Rowan and Martins Laugh In, alongside Goldie Hawn. Afterwards, she was lucky enough to be one of the hardest working black actresses in film and...

The Child Molester (1964) - A Controversial Public Service Announcement4 years ago

The Child Molester (1964) was more like a public service announcement rather than a full-fledged film or documentary on the taboo subject. The Highway Safety Foundation (HSF) produced the film short, and it was...

One Step Beyond: The Secret - Ghost Story or Mental Illness3 years ago

What Happened to Sylvia Ackroyd? Actor and director, John Newland, opens this eerie episode of One Step Beyond with a question about the disturbing and perhaps paranormal circumstances under which British housewife,...

Cleopatra VII Biography4 years ago

In ancient Egypt there were seven female heads of Egypt named Cleopatra, six queens and one pharaoh. The pharaoh was the ruler of Egypt who claims the lion's share of the fame and glory. Cleopatra VII Philopator (69...

What is Quantitative Ability?4 years ago

If you are currently seeking a job, you might have encountered a position that requires quantitative ability. If you are unfamiliar with the term, you might have wondered "What is quantitative analysis?" ...

Top Five Most Annoying Reality TV Stars of All Time4 years ago

Reality TV has taken over the airways and it is here to stay. Many television audience member's first experience with reality TV came way back in 1992 when Mary-Ellen Bunim brought us The Real World on MTV. The...

Kim Zolciak - Call Her What You Want, But You Cant Call Her Dumb4 years ago

Fans of Bravo TVs Real Housewives of Atlanta (RHOA) are well familiar with Kim Zolciak. She started off on RHOA dating a married man who is rumored to be one of the thousands of Atlanta's big tycoons. We all...

Forever Changed: A Story of Childhood Sexual Abuse (Flash Fiction)4 years ago

Child sexual abuse is perhaps the worst offense a human being can commit. Given that strong statment, it is incomprehensible for mentally healthy people to believe that child sexual abuse is prevalent in society, and...

Who Was Florence Nightingale and What Did She Do?4 years ago

Many people have heard of the name Florence Nightingale, and they know that she is a historic figure. However, there are not a lot of people who know exactly who she was, or how she left her mark on future...

When Animals Attack - Travis the Chimp4 years ago

At one time, Travis the Chimp was the most famous Chimpanzee in America. He appeared in television commercials, daytime talk shows and even a television pilot. He was adopted by Sandra Herold when he was just three...

Food Stamps at Fast Food Restaurants4 years ago

One of the most basic rules of the Supplemental Nutrition Assistance Program (SNAP), better known by its old name, Food Stamps, is that you cannot buy hot prepared food with SNAP benefits. However, in Phoenix, and in...

Types of Homeless Shelters4 years ago

Homeless shelters are pretty much self-explanatory. If you get evicted, or you lose your housing some other way, and you might have to find a homeless shelter until you can get yourself together. Before you decide to...



EDITOR'S CHOICETax-Credit and Income-Based Apartments13 days ago

Of all the low income housing programs, tax credit apartment, or income based apartments are the most hassle free. You will not find long waiting lists, and there are no lengthy application rituals like the ones...

Top Five Classic TV Show Theme Songs4 years ago

We all grew up watching classic TV shows, the Baby Boomers watched them on their first run, and those of us who are members of Generation X and beyond, viewed them as re-runs, courtesy of Nick at Nite or TV Land. The...

What Happened to Elisabeth Mandala?11 months ago

Elisabeth Mandala was an 18 year old senior at Kempner High School, in Sugar Land, Texas. The Ft. Bend County teen was pretty, popular (the prom queen type of popular), and only weeks away from her high school...

Current Human Trafficking Issues in the United States4 years ago

Human trafficking, also referred to as trafficking in persons, is the third largest and fastest growing criminal enterprise in the world. Disgusting, isn't it? Human trafficking is a modern day form of slavery that...

70s TV Update: Catching Up with the Cast of Family (TV Series)4 years ago

Family was an early brainchild of Aaron Spelling that began in 1976, and ran until 1980. The show was a dramatic television series that chronicled the trials and tribulations of the Lawrence family. Family was an...

Five Easily Recognizable Black Character Actors4 years ago

Hey, I know him... He's that guy who played in.... Rachelle Williams A character actor is an actor who routinely portrays unusual or eccentric roles. They are often typecast into playing specific types of roles,...

Help with OUC Electricity Bill4 years ago

Get Help Paying Your OUC Bill with OUC Project Care There are basically two companies that provide Orlando, and the Orlando Metropolitan area with power: Orlando Utilities Commission (OUC), and Progress Energy. ...

Temporary Assistance to Needy Families Application Information (TANF Info)3 years ago

Temporary Assistance to Needy Families (TANF) is financial assistance, or cash assistance allocated to low income families with children, and all states operate a TANF program. Back in the day, TANF used to be...

Florida Utility Bill Assistance Programs - FPL Care to Share4 years ago

If you need Florida utility bill assistance, and you reside within the Florida Power and Light (FPL) service area, you might be in luck. FPL provides utility bill payment asistance through its FPL Care to Share...

EDITOR'S CHOICEFood Stamps (SNAP) Application & Elgibility Info4 years ago

In early 2009, the food stamp program was officially renamed the supplemental nutrition assistance program, or SNAP for short. Most people are already familiar with the food stamp program, but many people are suprised...

Unexplained Mysteries: The Dyatlov Pass Incident (9 Russian Hikers)4 years ago

The Dyatlov Pass is located in the Ural Mountains of Western Russia. On February 2, 1959, 9 experienced ski hikers died under extremely strange and somewhat frightening circumstances. At the point of their...

EDITOR'S CHOICEGeorgia On My Mind (Why I Love Atlanta)4 years ago

This is partly a story about how I came to fall in love with the city of Atlanta, and the other part is sort of like a walking tour of the city. This is a journal entry that I first wrote nearly 15 years ago, so some...

Alaska Eviction Help and Rental Help Agencies4 years ago

When many of us think about Alaska, we think in terms of the great beauty of the frozen landscape, we think about Alaskan cruises that allow us to casually view the breathtaking, ice-filled wilderness. We also think...

EDITOR'S CHOICELegitimate Work At Home Job Opportunities4 years ago

Believe it or not, legitimate work at home jobs really do exist. Plenty of companies have discovered how easy it is to hire workers who want to telecommute. I honestly believe that people should work for themselves in...

Low-Cost Extended Stay Hotels4 years ago

Weekly hotels might be the answer to your housing situation if you have low income and you do not have the money to get your own apartment, or if you have an eviction dogging your credit and your apartment applications...

EDITOR'S CHOICEHow to Find Housing with an Eviction on Your Credit4 years ago

Having an eviction or foreclosure on your credit can seriously impair your ability to rent another apartment, or home. I am not going to mention that you should try to avoid an eviction or foreclosure at all costs,...

'70s TV - Catching up with the Cast of Happy Days4 years ago

If you are a child of the 80s, there is no doubt you grew up with the cast of crazy characters from the TV show, Happy Days. Even if you did not grow up in the 70s or 80s, you still may have some idea of...

"Contagion" (2011) May Be Just a Movie, But How Real is the Threat of a Global Pandemic?4 years ago

It has been said that the greatest threat to the continued existence of humankind is viral infection. I do not have proof that the saying is factual, but I do know that history reflects catastrophic losses of human...

Task Specific Focal Dystonia (Hand Cramps) - Dealing with Disability Discrimination4 years ago

About four years ago, I found out I have a neurological condition called Task Specific Focal Dystonia (TSFD) - well, Task Specific Focal Dystonia of the Hand to be exact. The condition is very rare, and the signs and...

Beautiful Black Actresses Over Fifty (50)4 years ago

It seems that every time one of those Top 50 hottest Actress list type of articles is produced, the writer forgets to make mention of more than one or two black actresses. And even then, the two black...

All About PrePaid WiFi4 years ago

Prepaid wireless internet is an excellent alternative for consumers who want to be able to get online on the go, without the high cost monthly costs and the obligations of a wireless contract. In addition, if you have...

EDITOR'S CHOICEHow to Know When You Are Dealing With a Psychopath & What to Do4 years ago

An in-depth look at psychopaths that includes a list of characteristics and things to do if there is a psychopathic person in your life.

How to Get into Law School with a Low LSAT Score4 years ago

Contrary to popular belief, there are many law schools who will accept applicants with low Law School Admissions Test (LSAT) scores. To be clear, the type of low LSAT scores that are discussed here start in the 137...

'80s Soap Opera Super Couples4 years ago

If you are a child of the '80s, you probably remember the soap opera couples who ruled the airwaves. When a daytime TV couple gained massive popularity , they soon became known as a "super couple" or ...



Enduring Black Celebrity Couples5 years ago

Celebrity couples like Brangelina (Brad Pitt and Angelina Jolie), and the TomKat (Tom Cruise and Katie Holmes) garner hordes of media attention wherever they go, but most of the time, black celebrity couples never...

EDITOR'S CHOICEUltimate Planet of the Apes Fan Page4 years ago

The Planet of the Apes is a movie franchise that grew out of the original, 1968 film adaptation of Pierre Boulle's 1963 sci-fi, dystopian fantasy novel, La Plante des singes (Monkey Planet). The story of the...

All About the Cancer Registrar Career (Tumor Registrar)4 years ago

A Tumor Registrar is a healthinformation professional who analyzes a cancer patient's chart, and abstractsspecific information from the chart in order to aid in vital cancer research. Once the information is...

Planning Satisfying Vegetarian Meals For Non-Vegetarians3 years ago

For most Americans, a meal is not fulfilling unless it ismeat centered, and vegetarian options are discounted, and considered as sidesto compliment the meat. There is a current trend toward healthy...

http://hubpages.com/@rachellewilliams

Why Right Now the Future Belongs to Google, Not Apple


When I first read that Google, the company that seems to know everything about us, was swooping in to acquire Nest, the company that strives to make home automation a cinch, for a hefty $3.2 billion, it wasn't the money that left me stunned, the amount is now only a sixth of what Facebook recently splurged; it was something else.

A company which began operating out of a garage 15 years ago, with a humble search engine as its only offering, has suddenly become the epicenter of our digital universe. Even before I could realize, Search was omnipresent, Chrome was my gateway to the web, Gmail was my go-to email service, YouTube was called upon to catch up on missed episodes, Maps was summoned every time I stepped into an unknown territory, Drive was backing up my photos as soon as I clicked them, and my brilliant Nexus 5 simply became an extension of myself.



Google had taken over, even before I could press pause.

The search giant has infiltrated almost every sphere of our digital interaction and made the experience richer, more satisfying and rather beautiful. Their suite of services simply feels all-encompassing, with your Google ID being the key to a thousand doors. There are many big-name brands which often try to achieve this, but either their endeavor feels too intrusive or they just fail without a whimper.

This one though, this particular one, seems to be nailing it.

Why the Nest acquisition seems like a watershed event is because of the avenue Google is trying to open up -- this is not your game-changing smartphone app, or an eye-popping web service, but a solid tangible product that Google aims to weave into its ecosystem. It's their first foray into something so different from their core services, something which is popularly and rather pompously called the Internet of Things. Yes, you could almost hear the cacophony around the term settle down as soon as this acquisition was made, and another multi-billion dollar industry was born.

And with this, Google one upped all its rivals, all in one fell swoop.

Offhand, it's rash to say that Google is winning the race. To better discern the tussle within the Valley, many files need to be decoded.

Stuck in 1 Infinite Loop

The address of Apple's headquarters seems to typify its dilemma somewhat accurately. To begin with, they have vehemently refused to liberalize its notorious iTunes software, sadly our only (legal) way to get data flowing to and from an iOS device. Only the other day I had to restore my iPad to its original state and trusted iTunes to run the errand for me. I use the word "trusted" because I was not trying to attempt something which Apple throttles me to. After wasting a lot of time and a handful of bandwidth, iTunes refused to install the software package it had downloaded -- iOS 6.1.3. It was only later that I realised that Apple had a peculiar penchant for not allowing even a slightly outmoded version of iTunes to download their latest version of iOS -- iOS 7 in this case. And since Apple's servers are hardcoded to prevent anyone from legally installing any other OS than their newest one, their trusted lieutenant iTunes was denied permission to install it on my iPad.

Ingenious. Shrewd. Dumb.

For all their attention to detail and obsession with precision crafted products, all Apple could have done is have iTunes give me a short staccato message asking for an update in order to restore my iPad. Simple.

But iTunes is only a small part of the argument. If a company is making more money than the whole of Microsoft from only one of their products, it must be doing something right.

The iPhone. It enjoys an exalted status among the sea of smartphones, maybe because it started the juggernaut, and warrants a beefy study of its own.

When Steve Jobs asked his engineers to design a phone which doesn't require physical buttons to receive and end calls, they didn't know what had hit them. But it was precisely this level of brilliance and skill which Jobs demanded that gave birth to one of the most iconic devices in world history, a cult classic. On June 29, 2007, Apple effectively blew every phone manufacturer's socks off and left consumers in awe. The media went as far as calling it the "Jesus phone." It is conjectured that Android, now the world's most used smartphone OS, is said to have been tweaked generously following the iPhone's announcement.

It's not difficult to see why. A touchscreen which renounced styli, pinch to zoom, flick to scroll; it was almost bewildering why such beautifully simple innovations ever evaded the developers' mind. Suddenly, the competition's best offerings looked like a tribute to a bygone era. Apple had done to the smartphone what they had accomplished with the MP3 player. They had changed the game yet again. Everyone wanted an iPhone.

But seven years, half a billion iPhones and the sad demise of a CEO later, Apple is, let's admit it, starting to look jaded. It's almost like that venerated magician who seems to have run out of tricks & keeps running the same show to please gullible children.

It's easy to say that a new iPhone still generates the kind of hysteria which any other phone could only dream of. But truth to be told, even if Apple sat on its haunches and re-branded the iPhone 5s as the iPhone 6 this fall, it would still sell in the same, if not better numbers.

The company which took the world by storm with its revolutionary iPhone 4 has sadly skimped on true innovation ever since. We had expected iPhone 4S to be as groundbreaking as its predecessor. Much to our chagrin though, 4S suffered first from a rejigged launch cycle & second, from the absence of anything even remotely breathtaking. Admit it, Siri is a fizzled firework.

Apple's creation seemed all the more uninspiring when only a few months ago, Samsung had launched the Galaxy SII, a widely acclaimed device which heralded the onslaught of Android.

Jobs departed only a couple of days after the 4S was unveiled. Amid the torrent of due encomiums, it was secretly rumored that he was in fact working on the iPhone 5, and that the 4S was always supposed to be a minor update. "Great" I thought, dismissing the 4S as a mere aberration in Apple's glorious pedigree of devices.

Longer screen, slimmer profile, chamfered edges: iPhone 5 -- aging wine in a shiny new bottle.



The sheen had come off, and the Apple's magnum opus had slipped from being the industry's gold standard to something that was more in demand for the bitten fruit seared on its back.

With the iPhone 5c, Apple employed what seems like one of their more devious marketing moves -- Pulling the plug on a classier ex flagship and sneaking in a plastic toy in its place only to make the current, more expensive flagship look more covetous. Whatever happened to creating a groundbreaking product and letting it speak for itself?

Don't get me wrong -- I am a huge fan of their iMacs and Macbooks and the gorgeous new Mac Pro. I think OS X is still the desktop OS to beat. And with the iPad mini, they've nailed the mini tablet like it's the best thing since sliced bread. I wish, alas, that I could say the same about iOS7 as well. It's full of bugs, the animations are choppy, the gradients are whacked out and it looks like it's been designed keeping the kitschy iPhone 5c in mind. It's funny, almost cartoonish.

But again, Apple sells. It sells its wares in huge numbers, like HUGE. The iMac recently completed 30 years and Apple did their best to cash in on the occasion. Financially at least, things were looking skywards.

Investors were expecting outstanding returns from Apple's Q4 2013 sales. They were left disappointed, once again; and their stock dipped once again, and once again Tim Cook came out and proclaimed that they have some great stuff lined up for the year. Good old rhetoric.

Some argue that Apple is paying the price for their "walled garden" approach, while others quip that Apple's mojo departed with Jobs. I just think that they've been averse to taking risks while the competition has leapfrogged way ahead.

Their loyalists might call it an Apples to Oranges comparison; eerily though, Apple's logo is almost beginning to look like an accidentally designed prophecy symbolizing a healthy bite taken out of their monopoly.

Right Out of the Window

They launched a tablet when it was still a term used mostly for therapeutic advice, their smartphone OS once powered almost every touchscreen phone in the market. Its desktop OS was loved by users and praised by critics, and its portable music player was being billed as the definitive iPod killer.

Years later, the Surface tablet is still finding its feet in the tablet market, Windows Phone 8 is still just warming up, Windows 8 has been criticized by users and well, critics, and the Zune has completely ceased to exist.

So where did Microsoft, a brand which inspired fierce devotion, and in its heyday, had people queuing up to buy the next best version of Windows, go wrong?

They got hung (pun intended) on a BSOD obsessed Windows Vista. Yes, nothing else.

Why, you ask? So after developing a rock solid and visually pleasant Windows XP, Microsoft and their developers merrily incubated the next version of Windows, only to come out after half a decade with an OS which was half as robust as its predecessor, had scorn inducing issues with software and hardware compatibility, and consumed more memory than most could afford.

It had without a doubt received a fresh coat of paint (those hate-it-or-love-it frosted glass effects) and looked nothing like Windows XP. But, alas, if it isn't skin deep, it isn't beauty. Unsurprisingly then, it was widely panned not only for its shortcomings but also for how it ripped off Mac OS X in some ways. The contempt against Vista reached a crescendo when OEMs had to bow to users' demands to downgrade their newly purchased computers from Vista to XP.

3D icons was Vista's leitmotif.

It was a jolt to Microsoft, like a stationary Bentley being hit by an invisible force, like a giant been wrenched out of a bad dream. Only, it wasn't a dream. They knew that quick amends were in order and soon got back to their drawing board to unveil, two years down the line, Windows 7. It was widely adopted by the still wailing users of Windows Vista and smugly accepted by Windows XP loyalists. Pride salvaged, Microsoft thought.

What they didn't realize was that they had totally, entirely and comprehensively missed the bus which carried a huge placard saying "Smartphones and tablets this way. So long computers!"

So when smartphones and tablets did eventually take over and computer sales dwindled, Microsoft was like a deer caught in the headlights. It was unbelievable. They had failed to spot a trend which is cannibalizing the market they thrive on. They were in daze, clueless and hapless.

Enter Windows 8, Microsoft's ambitious move to unite phones, computers and tablets. Can one really do that? Maybe sometime in the future, or maybe never, but with the existing ecosystem, certainly not today. Windows 8 seems to be suffering the same disdain as Vista, with users clamoring for the traditional Windows experience over the pastel dyed one which Microsoft is desperately trying to push down everyone's throat. It's almost too radical a change for an average Joe coming off Windows 7. They've already issued a bevy of updates to assuage customers, but Windows 8's vision and an average PC user's utilitarian needs simply do not fall in line.

Of course their Windows Phone 8 and Windows RT are doing a good job of running its hardware but here's a blunt truth -- ever since the market for handheld devices exploded, Microsoft has always been playing catch-up. Why? One, their Windows Phone OS arrived a little too late and that too half baked -- no copy paste remember? Second, the much needed updates have been terribly scant. For comparison, Android received at least 3 major updates in the last year and a half, while Windows Phone basically stagnated. It's excruciatingly hard, as they realise now, to proselytize an Android or iOS user into an altogether different ecosystem.

Nokia, Microsoft's obtainment, is trying to keep afloat with a heavily forked version of Android in Nokia X. What defies logic is their plan to lure users to a high end Windows Phone device if they savour using the company's mid-range droid. Wouldn't I just buy a high end Droid from the competition's offerings instead? Best of luck Elop. But the Finns have to be lauded for pulling out all stops and creating Android totting handsets which most consumers hoped for but never quite expected. Also, it'll be interesting to see how this Android experiment pans out under Microsoft's umbrella when the acquisition becomes official sometime later this year. But I digress.

The question remains -- why couldn't a company of Microsoft's scale and resources, despite their best efforts, could do nothing to stem first, the ebbing PC sales, and then the user base lost to Apple and Google.

The rot for Microsoft started soon after Bill Gates went out figuring waterless toilets and free vaccines while heads like Tim Cook and Larry Page spent every waking second of their lives on driving growth in their organizations. Steve Ballmer's bombastic mannerisms (never before or since has a CEO leapt out of a cake at a company bash!), scathing product reviews which often left the developers shattered and the products scrapped, and the lack of a fresh perspective has eroded a chunk of their core user base. He's a sales guy heading a tech company after all! "Maybe I'm an emblem of an old era, and I have to move on," Ballmer told the Wall Street Journal. "As much as I love everything about what I'm doing," he added, "the best way for Microsoft to enter a new era is a new leader who will accelerate change."

2013 will go down in history as the year when Mac sales finally overtook PC sales. And Apple should pat themselves for this because even after all its foibles Windows still rules the roost when it comes to market share, and it will, in all probability continue to do so for years to come, just without the halo around a newly purchased PC.

Satya Nadella, the newly crowned CEO of the tech giant has already proved his mettle in the cloud and enterprise division of Microsoft and has his task cut out. He has reiterated that Microsoft needs to reinvent itself in a "cloud and mobile first world." Led by someone who has risen through the ranks, and shepherded by the genial Gates himself, Microsoft is expected to shed all baggage and begin afresh, looking for new peaks to conquer, in weather that is at best, inclement. The climb will still be a steep one.

Mudit is an engineer, analyst and writer. Register for the soon to be launched ProsePot.com

http://www.huffingtonpost.com/mudit-kakkar/why-the-future-belongs-to-google_b_5003352.html

Big Data could generate millions of new jobs


FORTUNE With data analytics now one of the fastest growing fields in IT, it stands to reason that data scientists are in demand. Thats great for people with the requisite skills. The problem, according to Peter Sondergaard, a senior vice president at IT research firm Gartner, is that there arent enough of them.

Of the almost 2 million openings he expects over the next three years in the U.S. alone (4 million worldwide), Sondergaard predicts that only about one-third will be filled, making analytics software whizzes a scarce, valuable commodity that employers will have to fight to hire and retain.

Not all analytics talent is on the tech side. People who can translate mathematical models into English mdm wikipedia are needed, too. Among IT mavens, though, its clear which skills are shaping up to be the hottest in Big Data, says a new report from job site Dice.com.



Far and away the leader on the list is Hadoop. Originally developed in 2005, Hadoop is a Java-based open-source platform that was named after one of its inventors small sons stuffed toy elephant. Hadoop powers Yahoo YHOO web searches, and Amazon amzn, eBay ebay, Google goog, LinkedIn lnkd, Twitter, and lots of other companies use it too.

Dice.coms ranking of the top 10 tech skills Big Data needs now:



1. Hadoop plus Java the Number One combination by a large margin, notes the report, adding thats not surprising given that [Hadoop] is a Java-based framework.

2. Developer

3. NoSQL

4. Map Reduce

5. Big Data

6. Pig

7. Linux

8. Python

9. Hive

10. Scala

The shortage of professionals with experience in Hadoop and NoSQL has already given rise to higher pay for qualified hires, topping $100,000 on average, the report says.

But the real winner could be the U.S. economy as a whole. Anticipating a multiplier effect like that of the pre-recession auto industry, Peter Sondergaard predicts that every Big Data-related role in the U.S. will create employment for three people outside of IT. So over the next three years, a total of 6 million jobs will be generated by the information economy. Heres hoping hes right.

http://management.fortune.cnn.com/2013/05/21/big-data-jobs-2/

Apple mobile device management guide


For Apple, the name of the mobile device management game is simplicity. The capabilities in iOS let IT administrators control users' devices, defend against threats and lower operating costs with as few What is Master Data Management? hoops to jump through as possible.

To deliver on this promise of simplicity, Apple lets IT admins manage and secure both corporate and user-owned tablets and smartphones through the cloud or with on-premises deployments. And starting with iOS 7, Apple gives admins the power to enroll user devices in mobile device management (MDM), instead of relying on users to do it themselves.



Take a look at Apple mobile device management tools, including the Profile Manager and Apple Configurator to see how well the company delivers on its promise of simplicity.

What is Profile Manager?

Profile Manager, an OS X server-based application, allows IT admins to configure and enforce policies on Macs and iOS devices through user profiles. Admins can use Profile Manager to track how much data and bandwidth each device uses and to keep an eye on application licensing and VPN connections. IT can also enable user self-service for tasks such as password management. Admins can also prevent users from working with certain iOS features, such as iCloud and AirDrop, and remotely lock or wipe devices.

On the negative side, Profile Manager does not offer support for non-iOS mobile devices.

How do users get configuration profiles and what can the profiles do?

Apple's configuration profiles are XML files so users can easily install them on their devices with a USB, email attachment or website link or IT admins can install the profiles themselves on a user's device by connecting the device to a remote server with the iOS MDM protocol.

With Apple mobile device management, simplicity is the name of the game.

Once a device is enrolled, IT admins can lock or wipe data, reset passcodes, install apps and more. They can also divide profiles into smaller sections so they can deliver a specific group of existing settings to another user or device. The profiles also separate work and personal data with app-level capabilities that allow IT to decide who can share corporate data and with what apps. They can also push apps, content and accounts to devices. If a device is no longer enrolled with MDM, all of the enterprise information is automatically erased. Users don't have to worry, though, because the wipe does not touch their personal data.

What is Apple Configurator?

Apple Configurator is free to download from the Mac App Store, and admins can configure up to 30 different devices at once with it. Apple Configurator has three options. First is Prepare, which is where admins actually create the configurations for each device and apply them to devices.

The next option is Supervise. When Supervise is on, IT has complete control over the device, which is ideal when devices are shared among multiple users. Last but not least, Assign allows admins to, as the name suggests, assign supervised devices to users. They can also backup user profile data so users can access their data the next time they use a shared device.

What MDM features are built into Apple devices?

Apple's built-in MDM frameworks allow admins to manage user accounts and gather device usage information.

The Device Enrollment Program (DEP), which applies to devices qualified organizations purchase directly from Apple, adds to the existing Apple mobile device management foundation without requiring any third-party products. If they choose to use third-party MDM product or rely on Apple's built-in MDM frameworks, admins can use DEP to automatically enroll user devices. IT admins simply create a DEP account and preconfigure the device settings so when users activate their devices for the first time certain applications are restricted and others are installed. The DEP also automatically sends any existing profile information to the user's device.



How can admins take control of the data itself?

With a good MDM product, IT admins can deliver data access to specific users and apps while limiting access for other users and apps and encrypt data at rest on a device and in motion between devices. Managed Open In helps admins take things a step further by ensuring corporate data stays safely within IT-approved apps. To get the most out of MDM and Open In admins can pair them together to whitelist certain apps for use and blacklist any apps they consider to be dangerous.

http://searchmobilecomputing.techtarget.com/feature/Apple-mobile-device-management-guide

Grade 12 Data Management Help?


Report Abuse Additional Details If you believe your intellectual property has been infringed and would like to file a complaint, please see our Copyright/IP Policy

Report Abuse

Cancel

Report Abuse Additional Details If you believe your intellectual property has been infringed and would like to file a complaint, please see our Copyright/IP Policy

Report Abuse

Cancel

Report Abuse Additional Details If you believe your Big Data intellectual Data Management property has been infringed and would like to file a complaint, please Data Management see our Copyright/IP Policy

Report Abuse

Cancel

https://ca.answers.yahoo.com/question/index?qid=20141227183239AAfmMY0