Skip to main content

Windows 8.1 ready to Boom,Say Good bye to XP .!

Windows 8.1 Update available now.

 
 

Say Good Bye to Windows XP and Let's Update your Windows to Windows 8.1 First Update..!



It's been a long time that Microsoft warns the Windows XP user to upgrade their system. They also provided 70% off for Windows 8.1.Now, today is the last day for Windows XP  i.e. 8th April 2014 and launch of first time Windows 8.1 update.However, there is no doubt that 'Windows XP' is still the best Programming environment for programmers. Also, it is dominating operating system than any other Windows versions in the market.
 

Let's check out what's new features available for Windows 8.1:


 
#1. First, talk about whether you are working on desktop or on your tablet. It will automatically sense your presence. As it was available in Windows 8.1 that whether you boot or resume directly to your desktop rather than the start screen. Here are the steps how to do this settings:
 
Go to Personalization > Taskbar and Navigation (Lower left corner)
 
New window will open and then click to Navigation option > Start screen
 
Select "When I sign in or close all apps on a screen, go to the desktop instead of Start" option box.
 
#2. All power given to your 'Taskbar' .Run all your Store Apps or Inbuilt Apps and it will be minimised on your taskbar like Xbox-Music, video player, People-Facebook etc.. 
 
 
#3. Close and Minimise options available for Apps at the tittle bar on the Start screen.

#4. 'Change PC settings' , App Installation Info, Shutting down/Restart and Search options are now on the Start Screen too. No need to hover your mouse on lower right/upper corner.


 
 
 
 
 
 
#5. Supporting of 'right click' context menu ,selecting of multiple tiles by holding 'Ctrl key'  and you can drag them at any location on your Start screen.
 
#6. Really awesome App provided for Windows 8.1 Bing Smart Search.
 Just type what you thinking of and Bing will collect it from Windows 'Store App' too and you can install it right there.
 
 
 
 
 

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...