Step 1: Write Your First Python Program!

We have run through all the necessary set up to take first but small step in python programming to write first python program in Python Anaconda – Jupyter Notebook. If you still do not have python anaconda installed on your machine, then follow these quick steps to download & install in no time. I love python Jupyter Notebook interface … Read more

What is Python? And why is it the most loved programming language?

What is Python? Python is a high-level, interpreted programming language known for its simplicity, readability, and versatility. Created by Guido van Rossum and first released in 1991. Python is designed to emphasize code readability and reduce the cost of program maintenance. It uses an easy-to-understand syntax that allows developers to write clear and logical code … Read more

How to Connect Azure SQL Database from SSMS [SQL Server Management Studio]

In earlier articles, you’ve already learned how to create and activate a Microsoft Azure account, as well as how to set up a SQL Server and database in Azure. If you’ve completed those steps, you’re ready to connect to your Azure SQL Database using SQL Server Management Studio (SSMS). This guide will walk you through … Read more

How To Load Data Into Azure SQL Database [Azure SQL Query Editor]

You’ve already learned how to create a SQL Database in Azure and how to connect to it using SQL Server Management Studio (SSMS). Now, it’s time to load data into Azure SQL Database so you can run queries and analyze the results. For this demonstration, we’ll use sample test data provided by Microsoft. Before you … Read more

How to Create SQL Server Database in Azure?

In this tutorial, we’ll show you how to create a Microsoft SQL Server database in Azure. We assume you already have a Microsoft Azure account and the necessary subscription. If not, check out our previous article on the Microsoft Azure Pass – Free Subscription. Why Choose Microsoft Azure? Microsoft has heavily invested in Azure’s cloud … Read more

How to Activate Microsoft Azure Pass? (Free Subscription)

Introduction In this guide, we’ll show you how to activate the Microsoft Azure Pass – Free Subscription. You’ll learn about the features of Azure Pass and how to set up your Azure account using this free subscription. Microsoft provides a free subscription with limited resources and includes a basic credit of $100 USD. Assumption: We … Read more

Linux/Unix Parameterized Shell Script to Archive logs

You might already be familiar with the traditional, but more effective, log archiving script. If not, you may want to check out that script first. If you have several different jobs running, each creating large files in its own directory, you can modify the script slightly so it can be used for all these jobs … Read more

Linux Shell Script to Archive Log Files by Flushing Out Content

You’re probably wondering how to archive log files, especially when your system is running all the time and constantly updating these logs. Traditional Method: Usually, you’d move all the log files from their original location to an Archive directory and then clean up the original location. But there’s an issue—if your logs are continuously being … Read more

Linux Shell Script to Archive Log Files

Managing log files is a crucial task for Linux and Unix administrators. One of the most effective methods for handling these files involves setting up a script that automates the process of archiving logs. While there are numerous ways to achieve this, finding a solution that is both robust and adaptable to various scenarios can … Read more