Skip to main content

Apple CEO on Palm Pre :"if others rip off our intellectual property, we will go after them."

Palm Pre is making big noise as REAL iPhone competitor and apparently it is designed by one of ex-Apple engineer !!!!  

Can Apple really patent the Multi touch ? If it does what's the big deal for other manufacturers. Don't you think that patenting on Multitouch is something like patenting mouse device which i feel is general device and preventing others to replicate can have dangerous monopoly issues. Anyways .. read on!!!!!!

For those of you who weren't listening in to Apple's earnings call today, you missed a prime moment of defensiveness when Tim Cook fielded a question about how the company plans to stay competitive amidst new entries from the likes of Google and, more recently, Palm. What seemed like an answer due to end with a "we've got some great new stuff on the way" slant, Cook dovetailed into how the company views its new smartphone competition. In his words:

Q: "There are other iPhone competitors coming to the market: Android, Palm Pre. How do you think about sustaining leadership in the face of these competitors?"

A: "It's difficult to compare to products that are not yet in the market. iPhone has seen terrific rating from customers. Software is the key ingredient, and we believe that we are years ahead of our competitors. Having different screen sizes, different input methods, and different hardware makes things difficult for developers. We view iPhone as primarily a software platform, which is different from our competitors. We don't mind competition, but if others rip off our intellectual property, we will go after them."


And then the follow-up:

Q: "The Palm device seems to directly emulate the iPhone's innovative interface. Is that what you're referring to?"

A: "We don't want to refer to any specific companies, so that was a general statement. We like competition because it makes us better, but we will not stand for companies infringing on our IP."


Now, we've heard Apple sound off on its intellectual property before, but the way a somewhat innocuous question about new challengers in the mobile arena got turned into a not-so vague threat of legal action is a bit stunning. Could it be that the Pre is Apple's first real multitouch, capacitive-screen competition, and the device just happened to be co-developed by Jon Rubinstein... formerly of Apple? We're not taking any flying leaps here, but the preempted initial answer seems to suggest that the folks in Cupertino may not take every new threat so coolly.

Comments

Popular posts from this blog

What is the Current Directory in Windows CE & Windows Mobile ?

Lately i encountered  a situation where i had to find the current directory from where my application is running and all my config files reside. Question is "How do I find the current directory?" on Windows CE/Mobile devices. Desktop / PC it is just piece of cake but Windows CE / Mobile devices don't have a concept of a current directory.  Which means all pats are absolute and there is no concept called relative path. Due to lack of relative paths most of the files are loaded to the "Windows" directory and that is how Windows directory is crowded. Alternatively you can hard code directory path and insist user to load files always there. But i hate to hard code values or copy files to Windows directory.  So this has triggered to find a solution to identify my current directory. Since there is no concept of a current directory on a Windows CE / Windows Mobile device how would one locate a resource for which only a relative path is known?  That is what following c...

Android Bluedroid debugging

Android Bluedroid Debugging  i.e New BT Stack from Android Community: Wow ... its been more than 2 years i updated my blog ... Am i too lazy or too busy or combination of both. Combination of both -:).  Anyways today i see a need to update my blog with some important info regarding Bluedroid debugging. Bluedroid is the latest and greatest Bluetooth stack from Android developed by Google & Broadcom jointly. So obviously Google does not have interest or resources to maintain two stacks hence they are going to drop famous BlueZ stack for good reasons.  BlueZ stack comes with lot of good tools like hcidump for debugging and i see all those tools no more work starting with Android JB MR2 a.k.a 4.3 which has Bluedroid integrated full-fledged.  So Bluedroid got to have new tools or some tools to debug but as usual Google is very poor at documenting the things and they leave finding puzzles to developers out there. SO today's quest is fining the debugging tools ...

Video Tutorial - Programming Languages

As promised earlier that i will try to present some useful information on this blog, Here I present to you my findings on programming language video tutorials . I love C/C++ language and i believe it is mandatory for any enthusiastic programmer to learn C and C++. I found some good introductory video lectures on C++, Java, Perl, and Python. Needles to say i have collected these links from various websites and blog spots. Please post your findings so that others can benefit. Have fun!!!!!!!!!!! C/C++ Related video: ___________________ C++ Programming Tutorial C++ Video Tutorial 1 This video gives a brief introduction to basic commands and you get to make a program that takes 3 numbers that a user inputs and averages them. C++ Video Tutorial 2a C++ Video Tutorial 2b Tutorial going through loops, switch statements, if else statements and applying them to another fairly simple program. C++ Video Tutorial 3 C++ Video Tutorial 4a C++ Video Tutorial 4b Goi...