Skip to main content

MeeGo OS from Nokia and Intel



It looks like yet another operating system is going to be developed for smartphones and mobiles and released to the world. Doing the rounds on the news sites and blogs is that story that Nokia and Intel have joined forces to work on a new OS. The spin is that this Linux based OS will not just be aimed at one hardware platform but can be scaled to be used on smartphones , TVs and in-vehicle infotainment systems, or netbooks and anything in between. MeeGo is a merging of Intel's Moblin and Nokia's Maemo projects.

With the successful uptake of Android in the mobile world and the related Chrome OS to be released, Windows 7 Mobile doing something to restore Microsoft's credibility, Palm entering the fray with their WebOS, the iPhone OS being so successful with the iPhone, and Symbian to mention but a few, how much more room in the market is there for OSs or is this two global corporations trying to emulate Google's success in their release of Android.

Unless, of course, they have hit on something and can build a platform that will allow developers access to a whole range of devices. After all, the project is being hosted by the Linux Foundation whose aim is to promote the growth of Linux.

BBC News story: http://news.bbc.co.uk/1/hi/technology/8516368.stm
Intel Press Release: http://www.intel.com/pressroom/archive/releases/2010/20100215corp.htm
Linux foundation info : http://www.linuxfoundation.org/news-media/announcements/2010/02/linux-foundation-host-meego-project

Comments

Popular posts from this blog

Which blog engine?

So the time has come to move to a more advanced blog engine for my blog. blogger.com , Google's blogging service, has served me well. It's incredibly easy to use and to get started with, along with having some great features such as inbuilt stats; however now I need a few more advanced features and greater control over the blog. There's a vast array of blog engines out there, some free, some paid for, some hosted, some self-hosted, and picking which one is best or the right choice could be a little bit tricky. This article from Mashable lists most of the main options and bigger players -  http://mashable.com/2007/08/06/free-blog-hosts/ . There are a few parameters that I've kind of decided on Ease of installation/compatibility and support with web hosts Simple to use. I don't want to spend ages clicking around just to add a post or format it. Feature rich and well supported. Most blog engines should have a fairly standard set of features now such RSS/ATOM fe

Enable .NET 8 Preview in Visual Studio

Download the SDK using Download .NET 8.0 (Linux, macOS, and Windows) (microsoft.com)  and install it. To enable projects to target the .NET 8 preview framework, the preview option in Visual Studio needs to be enabled, otherwise the option to target .NET 8 will not be available as shown below when setting up a new project (or trying to upgrade an existing one). To allow .NET 8 Preview to be used as a target framework for projects, the preview option needs to be enabled in Visual Studio. Open Visual Studio and select "Continue without code" In Visual Studio, select Tools then Options In Options, under Environment, select Preview Features and enable Use previews of the .NET SDK.

SQL Server - Remove Non-Alphanumeric Characters from String

The following SQL function will remove and strip all non-alphanumeric characters from a string. CREATE FUNCTION [dbo].[fncRemoveNonAlphanumericChars](@Temp VarChar(1000)) RETURNS VarChar(1000) AS BEGIN WHILE PatIndex('%[^A-Za-z0-9]%', @Temp) > 0 SET @Temp = Stuff(@Temp, PatIndex('%[^A-Za-z0-9]%', @Temp), 1, '') RETURN @TEmp END Example: SELECT dbo.fncRemoveNonAlphanumericChars('abc...DEF,,,GHI(((123)))456jklmn') Result: abcDEFGHI123456jklmn