Posts

Showing posts from May, 2020

Flutter the upcoming generation software development kit which uses Dart language

Image
What is Flutter Flutter is an open-source UI software development kit created by Google. It is used to develop applications for Android, iOS, Windows, Mac, Linux, Google Fuchsia and the web.  Flutter works with existing code, is used by developers and organizations around the world, and is free and open sour ce. Flutter is a solution for creating cross-platform mobile applications with beautiful UI. Flutter’s way of designing views is similar to the web applications, so you can find many analog ies to HTML/CSS. its a new open source library for creating mobile applications. History The first version of Flutter was known as codename "Sky" which ran on the Android operating system I n 2015 Dart developer summit the flutter was announced by the google  During the keynote of Google Developer Days in Shanghai, Google announced Flutter Release Preview 2 which is the last big release before Flutter 1.0.  Flutter 1.0 was released at the Flutter Live event, denoting the first "...

Rectangle with pencil in paint with the help of Python programming

Image
How to create rectangle with the help of pencil in python as per below? Here is the answer. Requirements :- PYAUTOGUI Library of the Python  Code import pyautogui import time pyautogui.moveTo(320,320) time.sleep(0.1) pyautogui.mouseDown() x=320 y=320 while y<=420: pyautogui.moveTo(x,y) while x<=540: x=x+110 pyautogui.moveTo(x,y) x=320 y=y+1 pyautogui.mouseUp() Steps to perform operation: !)     Open Visual Studio Code (if not installed download from here ) 2)     Create python file then Copy and paste the code 3)     Open paint -> select pencil or brush and arrange window as given below 4)     Run the code . 5)     wait for the code to stop Done ! you had drawn rectangle with the help of the pencil comment down below for any query. (Caution : Modifying code can make code operate in infinite loop so perform operation with caution)

Visual Studio Code - the code editor for Python with great features

Image
        Visual Studio Code is a source-code editor developed by Microsoft for Windows, Linux and macOS. This code editors has many features like  debugging, syntax highlighting, intelligent code completion, snippets, and code refactoring .we can add more functionality to editor with the help of extensions. The code editor is free to use .         Visual Studio Code was ranked the most popular developer environment tool In the Stack Overflow 2019 Developer Survey         VS code(Visual Studio Code)supports C++, C#, CSS, Dockerfile, Go, HTML, Java, JavaScript, JSON,  Less, Markdown, PHP, PowerShell, Python, SCSS, T-SQL, Typescript. Prerequisites Python 3 installed on your machine and a local development environment set up Setup of vs code for python in windows 1)      Download visual studio code from  https://code.visualstudio.com/  for windows 2)    Open Visual Studio Code...