
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 26504 Articles for Server Side Programming

7K+ Views
In today's fast-paced digital world, being able to automate computer tasks can greatly enhance productivity and convenience. One such task is shutting down a computer, which can be time-consuming if done manually. Thankfully, Python provides us with a powerful set of tools to interact with the system and automate such tasks. In this blog post, we will explore how to write a Python script to shut down a computer with ease. Whether you want to schedule automatic shutdowns, initiate a shutdown remotely, or simply save time by avoiding manual shutdowns, this script will come in handy. Importing Required Modules Before ... Read More

5K+ Views
Restarting a computer is a common task that we often perform to troubleshoot issues, install updates, or apply system changes. While there are various ways to restart a computer, using a Python script can provide automation and convenience. In this article, we will explore how to create a Python script that can restart a computer with a simple execution. We will start by discussing the importance of restarting a computer and the benefits it can offer. Then, we will delve into the implementation details of the Python script, explaining the necessary modules and functions involved. Throughout the article, we will ... Read More

438 Views
In today's world of automation and smart devices, voice control has become increasingly popular. From smartphones to virtual assistants, voice commands offer a convenient and hands-free way to interact with technology. What if you could extend this convenience to your PC as well? Imagine being able to shut down your computer with a simple voice command, saving you the trouble of manually navigating through menus or using the mouse. In this blog post, we will explore how to use Python to create a script that allows you to shut down your PC using voice commands. By leveraging the power of ... Read More

949 Views
Monitoring the battery percentage of your laptop is essential to keep track of its power level and ensure uninterrupted usage. Whether you're working on the go or relying on your laptop for extended periods, having a Python script to display the battery percentage can be incredibly useful. In this blog post, we will explore how to create a Python script that shows the laptop battery percentage. In the following sections, we will discuss the prerequisites for running the script, explore how to retrieve the battery information, and demonstrate how to display the battery percentage in a graphical user interface (GUI). ... Read More

5K+ Views
In today's digital world, web browsing has become an integral part of our daily lives. Whether it's researching information, shopping online, or accessing web-based applications, we spend a significant amount of time using web browsers. As a Python developer, wouldn't it be great to automate web browser operations and save time and effort? In this blog post, we'll explore how to create a Python script that opens a web browser and performs various operations. With the help of the Selenium library, we can interact with web browsers programmatically, allowing us to automate tasks such as navigating to a specific URL, ... Read More

4K+ Views
In today's digital age, staying up to date with the latest changes on a website is crucial for various purposes, such as tracking updates on a competitor's site, monitoring product availability, or staying informed about important information. Manually checking websites for changes can be time-consuming and inefficient. That's where automation comes in. In this blog post, we will explore how to create a Python script to monitor website changes. By leveraging the power of Python and some handy libraries, we can automate the process of retrieving website content, comparing it with previous versions, and notifying us of any changes. This ... Read More

2K+ Views
Monitoring network connections is crucial for ensuring the stability and security of computer systems. Whether you're a network administrator or an individual user, having a way to track network connectivity and log relevant information can be invaluable. In this blog post, we'll explore how to create a Python script that monitors network connections and saves the data into a log file. By leveraging the power of Python and its extensive libraries, we can develop a script that periodically checks the network status, captures relevant details such as IP addresses, timestamps, and connection statuses, and stores them in a log file ... Read More

1K+ Views
In today's digital age, automation plays a crucial role in simplifying and streamlining various tasks. One such task is logging out of a computer, which is typically done manually by selecting the logout option from the operating system's user interface. However, what if we could automate this process using a Python script? In this blog post, we will explore how to create a Python script that can log out a computer with just a few lines of code. In this article, we will walk through the process of creating a Python script to logout a computer. We will cover the ... Read More

1K+ Views
In the world of networking, MAC addresses play a crucial role in identifying devices connected to a network. A MAC (Media Access Control) address is a unique identifier assigned to each network interface card (NIC) or network adapter. It consists of six groups of two hexadecimal digits, separated by colons or hyphens. MAC addresses are commonly used for various purposes, including network management, security, and troubleshooting. In this article, we will explore how to create a Python script to retrieve the device vendor name from a given MAC address. We will explore two approaches: using an API to query a ... Read More

549 Views
In the digital age, manipulating images and creating artistic effects has become a common practice. One intriguing effect is the generation of dotted text from an image. This process involves converting the pixels of an image into a pattern of dots, creating an intriguing visual representation of the text. In this blog post, we will explore how to create a Python script that can generate dotted text from any given image. By leveraging the power of Python and some essential libraries, we can automate the process and easily generate stunning dotted text effects. Understanding Dotted Text Before we jump into ... Read More