Skip to main content

Microsoft Windows 10 Main Event: The Next Chapter

      Microsoft’s Windows 10 Main Event: The Next Chapter 21st January 2015

PC: Softpedia

Finally after a long waiting and long rumored Windows 10: The Next Chapter is here. Using Windows 10 preview built was great experience. Microsoft released five preview versions in last few months in which 9901 was the latest and more impressive than the previous builds. This built was full of new interface and was released in January 2015.One more thing friends my PC was crashed during running my Windows 10 Technical Preview.So I am unable to attach pictures here but later I'll provide it. Features like multiple desktop, improved & transparent Taskbar, much more modern taskbar icons hovering of mouse experience. Applying personalization colour setting with little bit more dipper colour. 

            Cortana..! Yeah, the all new Windows devices personal assistant Cortana was found and working fine in this build. You can search everything whatever you want and it is synchronised with all your Microsoft products. Also, the other enhancements were improved folder- files icons, registry settings, whole new Control Panel, camera app, calculator with new charm bar, context support app, Get Started as app, photo app, and much more...! 

Okay, now take a look on what new concepts and upgrades were provided on the main event day 21st January 2015 by World’s second Software giant Microsoft. The event was organised in Redmond headquarters. Initially I didn’t found any Live-streaming video for this event and finally downloaded the video from The verge and some contents from ABC News. The presentation was around 135 minutes as mentioned by ABC News. Windows team unveiled Six new things yesterday:


1.Free Upgrade :
 Windows 8.1 users, Windows 8.1 Phone users and all devices running Windows 8.1. People running others versions of Windows don’t have to worry about b’coz there is good news for them, they can also free upgrade their OS to Windows 10.Its really nice..!


2.Personal Assistant - Cortana: 
Inbuilt in Windows 10.I noticed there’s a new icon and search bar for Cortana. Now Cortana can be educated by you for your PC. Cortana can search the whole computer using your voice. There’s a setting for Cortana if you want to place it or not on your PC taskbar.


PC: Theverge


 3.Spartan Browser:
#Joe Belfiore VP Windows also mentioned about the whole new Browser as ‘Project Spartan’. Internet Explorer lovers will not miss their browser cause it is still in Windows 10 edition. This browser is made to meet and work on modern websites. One of the most interesting features what I like is ability to write anywhere on a window save it as personal and there’s a reading list available that will be available offline on any of devices to easy share the pages.

PC: Neowin


4.The new Gaming Experience: Social & Interactive
Share and compete with your friends all in one app support ‘Xbox app’. This app includes friends list no matter where you are you shall be connected, comment, voice & text chat, share your score.  Live-streaming facility will provide to tablet and PC later this year.  

  
5.Microsoft Surface Hub: 
It’s a new product for the company and deals with Workplace productivity enhancement. The Surface Hub is like a White board, an 84”- 4K display with inbuilt cameras, speakers, sensors that detect your presence and speakers to support your work-play experience.

PC:Windows Central


6.The Last & the Most : HoloLens
Microsoft’s Holographic processing unit’s combination HoloLens is a device that can built 3D creation in few moments using Holographic studio. It can understand your hand gestures, voice, collect TB of information all these working in Windows 10. HoloLens release date has not been announced yet.
PC:Windows Central


PC: ABC News
                                

Comments

Popular posts from this blog

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...

DBMS ACID Properties

 1. Atomicity states that database modifications must follow an all or nothing rule 2. Consistency states that only valid data will be written to the database. If, for some reason, a transaction is executed that violates the database's consistency rules, the entire transaction will be rolled back and the database will be restored to a state consistent with those rules.  3. Isolation requires that multiple transactions occurring at the same time not impact each other's execution. For example, if Joe issues a transaction against a database at the same time that Mary issues a different transaction, both transactions should operate on the database in an isolated manner. The database should either perform Joe's entire transaction before executing Mary's or vice-versa. 4.  Durability ensures that any transaction committed to the database will not be lost. Durability is ensured through the use of database backups and transaction logs that facilitate the restoration of committe...

Git Commands

  Git commands sorted. Reference: https://git-scm.com/docs Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name . git config --global user.name "Sam Smith" git config --global user.email sam@example.com Create a new local repository   git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository For a remote server, use: git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add <filename> git add * Commit Commit changes to head (but not yet to the remote repository): git commit -m "Commit message" Commit any files you've added with git add , and also commit any files you've changed since then: git commit -a Push Send changes to the master branch of your remote repository: git push origin master Status List the...