Skip to main content

Windows 10 Creators Update rolling out today

Microsoft has officially announced and is rolling out today the "Windows 10 Creators Update" build 15063. Previously we had Windows 10 Anniversary Update in which several new features were available and now its I think the 3rd threshold update Microsoft is pushing today onwards.

This build was rumoured to have new tools for importing and handling 3D artwork, as well as integration with a new online community called Remix3D where users can share and search for assets to use in their own creations. The community is integrated with the massive 3D Warehouse, the repository for Trimble's popular Sketch Up software, and already contains millions of 3D objects.

Users can import objects using a Windows 10 Mobile app which was demonstrated running on a Windows 10 smartphone but will soon come to other platforms. Anything created in Minecraft can also be pulled in. Paint 3D has simple tools for manipulation, sharing, and even 3D printing. 2D imagery can be stamped onto 3D objects like textures, and simple doodles instantly turn into fully independent 3D objects.

The 3D community is also integrated into PowerPoint, allowing users to create slides and progressions with the exact required perspective or perspectives of an object. Users can create Pinterest-style boards in order to collect and sort objects for their own use later.

A new HoloLens integration with interior design app Houzz was also demonstrated. Users will be able to choose items such as furniture and place them within a room, in amongst existing objects, to see how they will fit and look at their exact size and scale.

Watch This Week on Windows: Windows 10 Creators Update
https://www.youtube.com/watch?v=h86ZgiGkPCg
and
https://www.microsoft.com/en-us/windows/features for Windows Official features update.

Now take a look at the new creators update:

1. Create in new Paint 3D and publish in Remix 3D community
2. Windows Mixed Reality
3. Cortana - Personal Digital Assistant, Sticky Notes with Cortana
4. X-Box gaming experience
5. Books in Windows store Stuff & Microsoft Edge
6. Blue Light/Dark Mode
7. Windows Ink Workspace to use Sticky Notes, Sketchpad, and Screen Sketch
8. Windows Hello
9. New Windows Defender Security
10. Emoji keyboard
11. Action Centre
12. Music controls in lock screen






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