Skip to main content

Google Fuchsia OS

Google Fuchsia Operating system

                                              
Google Fuchsia Operating system



Fuchsia is an open source capability-based operating system currently being developed by Google.
It first became known to the public when the project appeared on GitHub in August 2016 without any official announcement. The source documentation describes the reasoning behind the name as "Pink + Purple == Fuchsia". - Wikipedia

Fuchsia is an OS. Which can be used in all platforms. One OS for all your device you can use Fuchsia in TV, Laptops, Smartphones, Watch, Embedded Systems and even more devices. - Tech Bird

Its supports seamlessly on variety of devices, regardless of screen size.

The first and foremost factor that separates Fuchsia from other operating systems is its code base. Unlike Windows, Android and iOS/mac OS, Fuchsia is not based on existing open source kernels or foundation code architectures.

Rather, it uses its own open source kernel, which can have far larger implications than just being a differentiating factor. It uses the Zircon kernel, which was initially named Magenta, as its base protocol, which means that it is functionally different from all the operating systems out there.



In Simple terms from Tech Bird,
  • Google wants an Isolated and Independent Separate OS like what Apple has IOS for their own devices and perks.
  • Google thinks they want to support all hardware device with one OS.
  • Google wants more secured and more control OS for them which might lead them to make more revenue as an advertisement company so they are coming up with this new OS.


Stay Tuned for more Updates...on #fuchsia #google #news
--Tech Bird

Comments

Popular posts from this blog

BIG DATA ANALYTICS

BIG DATA ANALYTICS Have you ever hit upon how Amazon and Flip kart could possible verdict what we want; how the Google auto completes our search; how the YouTube looks into videos we want to watch? When we open YouTube, we will be at sixes and sevens, when we find ads related to what we have searched earlier in the past days. This is where we find ourselves in the era of big data analytics. More than 3 trillion bytes of information are being generated everyday through our smart phones, tablets, GPS devices, etc.  Have we thought about what can be done with all these information? This is where the data analytics comes into play. Big data analytics is just the study of future build up to store data in order to extract the behaviour patterns. The entire social networking website gathers our data which are related to our interest which is usually done by using our past search or any other social information. Data analytics will lead to a walkover in near future....

Python #23-Regex findall() and sub() in Python

Previous Post   :                            Python #22-Regex match() and search() in Python Next Post         :                            Coming soon........ re.findall(): It find all sub strings where the RE matches, and return them as a list. This function is used to catch all the matching patterns in the strings. Note Worthy: re.match() + re.search() = re.findall() Syntax:   re.findall(pattern, string) Source Code:   import re   variable = re.findall(r"Google", "Google Bird learn around Google and gives the best contents to the viewrs")   print variable Output:    ['Google', 'Google'] re.sub(): This is used to search a pattern in the string an replace with the new sub string. Syntax: re.sub(pattern, replac...

Python #19-Reversing of the given number

Previous Post   :                             Python #18-Counting the number of digits in the given number Next Post         :                             Python #20-Given number is Prime or Not Reversing of the given number Eg: 54321       The reversing of the given number will be 12345 Source Code: number  = int (input("Enter the number to reverse: ")) rev = 0 while(number > 0):     r =  number % 10     rev = (rev * 10)+r     number =  number / 10 print "Reversed of the given number is :", rev Output:    Enter the number to reverse: 54321    Reversed of the given number is : 12345 Explanation:   1. Getting the number to be reversed from the user by using input().   2. Initializing...