Skip to main content

Windows Updates And Cool New Features

Hi Friends, Yesterday I got heavy Window 10 updates and after these updates got installed into system the system looks somewhat different. The very first change that I notice was a new Icon on my task-bar. An icon of Mail application. When I click on this icon then I come to know this very good application and I personally looking for such kind of solution for my Gmail account. This app helps me to set up my Gmail account with ease.



The mail app also has a calendar app associated with it that helps me to get all google calendar events on my system that will work for when I will be offline.

The other great feature and what I think awesome new feature Paint 3D. Yes, you read it right paint 3d. Using this new application anyone can create 3D models and edit them from all angles. I think young boys are going to be mad with this creative application.



I am continuing to explore the new updates and try to update here as well.

Comments

Popular posts from this blog

The Great Architectures of Bijawar, Chhatarpur, M.P.

Bijawar, Temple Janki Niwash Bijawar, Temple Janki Niwash   Maharaja Palace of Bijawar - A very royal palace of the Great Maharaja Ji of Bijawar. The palace has a great eye caching architecture. It stands tall with its mirror image on a big Talab in front of it. The palace is become very old and loosing its age at a rapid pace. Unfortunately its to late to restore the Bijawar palace infrastructure but one should create Bijawar palace replica or model to preserve its beauty and architecture. This photo of the palace is the first photo taken and publish on the web. That time there was no good cameras available but as said Old is Gold.

You are running 'create-react-app' 4.0.3 which is behind the latest release (5.0.1).

I was trying to create a new React app with the following command. > npx create-react-app react-app Then I get the following error: You are running `create-react-app` 4.0.3, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. I also get some help instructions as well as: Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app I tried to run the floowing command multiple times as suggested: > npm uninstall -g create-react-app Which ran fine with no error that means my create-react-app glabal installation uninstalled successfully. Then I again tried the same command to install the React app: > npx create-react-app react-app But I again get the same errors and suggestions. I repeated the same procedure multiple times but it did not work. Then I decided to look for the solution over a search engine. By no much time, I got some useful help th...

Python Program To Find the Modulus with using modulus operator

  def cal_mod(dividend, divisor): # check the max divisor power of the dividend dividend_power = 1 while dividend > (divisor ** dividend_power) : dividend_power += 1 # reduce the dividend to the divisor_power + 1 # if dividend_power is greater then 2 if dividend_power > 2: while dividend > (divisor ** 2): dividend = cal_mod(dividend, (divisor ** (dividend_power - 1) )) dividend_power -= 1 while dividend >= divisor: dividend = dividend - divisor return dividend result = cal_mod(45645664566465456456878756765675699788866264623874682464, 16) print(result)