Jun 24Ways To Select The Theme Color In Visual Studio CodeIf you are using Visual Studio Code, then you might have heard about themes. Basically there are two types of themes — Dark color theme and Light color theme. In this article, I’ll show you multiple ways to select theme of your choice. Using Settings One way to open Color Theme, is…Visual Studio Code2 min read
Jun 17Install Python Package On Per User BasisMany times it may happen that you want to install a Python package, but you do not have permission to do so at system level. Then how can we create or run our Python application? How to make that package available for use? This article focuses on solving this problem…Python1 min read
Jun 10Getting The Terminal Size In PythonMany times our output doesn’t get fit into the terminal of default size. In that case we have to pull it accordingly and make the size as per our need. In this article, I’ll show you those few lines of Python code using which you can get the size of…Python1 min read
Jun 6Get Your Horoscope Using PythonIf you are a person who believes in horoscopes and also know Python, then this article is for you. Horoscope is a way to forecast future. In this article, I’ll show you how to get your horoscope based on your zodiac sign. Required Packages Beautiful soup: We will use this to extract data out…Python2 min read
Jun 2Get User Name And Password At Runtime Using PythonIt is quite common that you need to grab a logged in user name and ask for the password from a user on an application launch. The biggest question that comes here is — Can we grab password from user in plain text? …Python2 min read
Jun 1Search For A File Using PythonIf you are a coder, then surely you must have came across a requirement wherein you need to search for a file in a given directory. Now, this directory could be any directory — it could be your immediate parent directory or it could be a grand grand parent. In…Python1 min read
May 20Highlighting Errors And Warnings In VS Code Without Clicking AnywhereWhile doing development, it is quite obvious that you will see some errors and warnings. …2 min read
May 19Multiple Ways To Get Current Working Directory In PythonIf you are a programmer, you must have come across a requirement wherein you need to access the current working directory. The current working directory is the folder where your application is running from. In this article, I’ll show you three different ways to get current working directory using Python. Using os.getcwd …Python1 min read
May 14Getting Started With Matplotlib Using PythonMatplotlib is a multi-platform library for data visualization built on top of NumPy arrays. It works very well with all the operating systems and supports many output types and backend systems. Before we begin with Matplotlib, we need to pull in the required package. Required Package We need to install matplotlib and…Python2 min read
May 11Extracting News From Google Using PythonThe situation, wherein you are running out of time but still do not want to miss your doze of daily news. Then this article is for you. When it comes to reading news, not everyone is interested in every topic. Few may be interested in sports, others may be interested…Python2 min read