Posts

Showing posts from 2021

Basic command lines for the developers

Image
Command Line: an essential tool for software development. useful to execute a wide variety of programs on your computer. a tool for interacting with a computer using text (also known as a text interface). Unix Commands is a type of command that is used in Linux and macOS. Commands are instruction given to the computer into what is called a terminal. NOTE: 1. For Windows, we use POWERSHELL or GIT BASH. NOTE: 2. Here we will use the word directory (plural: directories) in place of folder often. They both are the same thing, and they’re used interchangeably. Be Motivated! Commands: $ start . (for windows) or $ open . (for Linux/macOS) — Opens File Explorer where we use GUI to manipulate the Files or Folders/Directories. $ pwd — stands for Print Working Directory. — On the command line, it is important to know the directory you’re working. Here comes pwd command to check that. — When you execute the pwd command, all the directories from the root directory to the current directory are displ...

Python | Text to Speech by using pyttsx3

Image
Introduction Text With Speech Conversion Using NLP  Text To Speech Conversion Using NLP implies changing content over to the voice discourse utilizing NLP. NLP is a field of man-made reasoning that enables the machines to peruse, comprehend, and get significance from human dialects. Top MNC Companies and Start-up organizations are investing more energy and a large number of cash in the NLP field. Wherever is an information researcher is attempting to comprehend the NLP area and its cycle with superb application. The majority of the business attempting to robotized with NLP.  Why NLP?  In Industry 4.0 now going towards the computerization business like foster a robot for clinical guiding, identify the illness, and substantially more application dependent on NLP. So,many NLP analysts had invested energy, normal language preparing has advanced into another amazing method to clean a crude content into different cycles dependent on application. On the off chance that you need ...

Want to start learning python?

Image
As of now, Python is perhaps the most flexible and requested programming dialects in the IT world. Measurably, there are around 8-9 Million of Python designers across the world and the number is expanding quickly. In the interim, the normal compensation of an Entry-Level Python Developer in India is around 4-6 LPA, and its rich highlights like simpler language structure, progressively composed, and so on make it the most suggested programming language for fledglings. Besides, there are various state of the art advances like Artificial Intelligence, Machine Learning, Big Data, and so on that are intensely depending upon Python. Without a doubt, in the event that you begin to learn Python by following the right methodologies, the language has much more to bring to the table you to construct an effective vocation!! Introduction  Prior to moving further, we should have a concise prologue to Python Language. Python, planned by Guido Van Rossum in 1991, is a broadly useful programming la...

Pong Game in Python

Image
We all must be familiar with a game called ping pong from our childhood. It is a game where it gives an essence of virtual way of playing a table tennis. The only condition is that the user should not miss the ball. This game which I created has tap sound when the ball is being tapped on the bar or bouncing on the screen. In order to create a Ping Pong Game everything has to be acquired though few steps, keeping in mind about the features that we would like to have in our game we can vary the code accordingly but the steps remain the same: - 1. Import the packages like turtle and winsound (For the sound effects) 2. Initial set up of the background colors as it acts like a pillar for our code. 3. Paddle A and B (This particular code will concentrate on the speed, shape, color of the paddle) 4. Ball (the shape of the ball, speed and these kind of preferences will be defined in this code) 5.  Score count feature code 6. Keyboard code (As this would be a 2 player game there has to be...

Internet of Things : Everything you need to know about IOT

Image
What is Internet of Things (IOT)? The Internet of Things, or IoT, alludes to the billions of actual gadgets all throughout the planet that are currently associated with the web, all gathering and sharing information. Because of the appearance of super-modest central processors and the universality of remote organizations, it's feasible to turn anything, from something as little as a pill to something as large as a plane, into a piece of the IoT. Associating up this load of various items and adding sensors to them adds a degree of advanced insight to gadgets that would be generally idiotic, empowering them to convey continuous information without including an individual. The Internet of Things is making the texture of our general surroundings more astute and more responsive, blending the computerized and actual universes.  How enormous is the Internet of Things?  Enormous and getting greater - there are as of now more associated things than individuals on the planet. Tech exami...

Introduction to Web Scraping and tools

Image
  Data is a fundamental piece of any exploration, possibly it tends to be scholarly, showcasing or logical. Individuals may need to gather and examine information from numerous sites. The various sites which have a place with the particular class shows data in various organizations. Indeed, even with a solitary site you will be unable to see all the information without a moment's delay.            Web scraping is basically a process through which the system uses bots to extract the data or the information from a website. Unlike screen scraping, which only copies pixels displayed onscreen, web scraping extracts underlying HTML code and, with it, data stored in a database. The scraper can then replicate entire website content elsewhere. in this process it allows one to save the extracted information in whichever data form like it can be converted to CSV file. this is the process where one can easily crack the data from the websit...

Ethical Web Scraping

Image
Web scraping is basically a process through which the system uses bots to extract the data or the information from a website. Unlike screen scraping, which only copies pixels displayed onscreen, web scraping extracts underlying HTML code and, with it, data stored in a database. The scraper can then replicate entire website content elsewhere. in this process it allows one to save the extracted information in whichever data form like it can be converted to CSV file. this is the process where one can easily crack the data from the websites. we get get various types of information from the website like title, heading, images etc. Web scratching is utilized for contact scratching, and as a segment of uses utilized for web ordering, web mining and information mining, online value change checking and value examination, item survey scratching (to watch the opposition), assembling land postings, climate information observing, site change discovery, research, following on the web presence and no...