Tag: Scripts

20 Python Scripts with Code to Automate Your Work

In this article, we’ll explore 20 Python scripts along with their code that can help you automate various tasks and boost your productivity. Whether you’re a developer, data analyst, or just someone looking to simplify their workflow, these scripts have got you covered. Table of Conte...

10 Amazing Automation Scripts You Need To Try Using Python

Automation refers to the execution of tasks without the need for human intervention. Numerous programming languages offer various approaches to automate tasks, but Python is often the preferred and primary choice. This preference stems from Python’s simplicity in syntax and its vast collection...

13 Fun Python Scripts

Hello friend, I hope you’re doing well! I’m writing to you today because I am truly passionate about sharing my knowledge and helping others learn. If you’ve found my articles to be valuable and they’ve made a positive impact on your life, I would be overjoyed if you could su...

20 Python Scripts with Code to Automate Your Work

Python is a popular programming language known for its simplicity and readability. It provides a vast collection of libraries and modules that make it an excellent choice for automating various tasks. Let’s dive into the world of automation and discover 20 Python scripts that can simplify y...

13 Fun Python Scripts

Hello friend, I hope you’re doing well! I’m writing to you today because I am truly passionate about sharing my knowledge and helping others learn. If you’ve found my articles to be valuable and they’ve made a positive impact on your life, I would be overjoyed if you could su...

Awesome Python Scripts

Higuys! Today I want to share with you some useful scripts for python. I am a big fan of scripts, because they facilitate routine work, improve projects, as well as give a visual representation of the use of knowledge in practice Let’s go! 1. Convert JSON to CSV import json if...

10 killer Python automation scripts

Repeating tasks are always time-consuming and boring. Imagine cutting 100 photos one by one or doing tasks such as Fetching APIs, correcting spelling and grammar, etc., all of which take a lot of time. Why not automate them? In today’s article, I will share with you 10 Python automation script...

Writing Versatile Python Scripts and Modules | __name__ and __main_

In Python, the __name__ variable is a special built-in variable that is used to determine whether a Python script is being run as the main program or if it is being imported as a module into another script. It allows us to write code that can be used both as a standalone script and as a mo...

Exploring Quantum Computing: From Essential Mathematical Equations to Python Scripts and…

We’re back to explore more of the quantum computing world, and guess what? Math is still our best buddy on this journey. In Part 1, we familiarized with complex numbers, matrix math, and even did some fun with Python. Now, in Part 2, we’re going deeper into quantum computing. TL;DR: ...

__all__ in Python and What It Does

Let’s say we have 2 Python scripts. main.py — the script that we want to run helper.py — main.py imports stuff from this script these 2 scripts are in the same folder # helper.py a = 4 b = 5 c = 6 def test(): print('test') # main.py from help...

13 Fun Python Scripts

Hello friend, I hope you’re doing well! I’m writing to you today because I am truly passionate about sharing my knowledge and helping others learn. If you’ve found my articles to be valuable and they’ve made a positive impact on your life, I would be overjoyed if you could su...

Running Python Scripts in Power BI Desktop: A Game-Changer for Data Visualization

Hey there, data enthusiasts! I’m Gabe A, and I’m thrilled to share some exciting news with you today. If you’re like me, someone deeply passionate about Python and data visualization, you’ll be ecstatic to know that you can now run Python scripts directly in Power BI Desktop....

10 Amazing Automation Scripts You Need To Try Using Python

Automation refers to the execution of tasks without the need for human intervention. Numerous programming languages offer various approaches to automate tasks, but Python is often the preferred and primary choice. This preference stems from Python’s simplicity in syntax and its vast collection...

My Tips and Tricks for Bash Scripting After Writing Hundreds of Scripts

As a DevOps engineer, I’ve often encountered with Bash. Doing something on a server, writing CI/CD pipelines, or automating some manual task are all regular activities that regularly include writing some Bash scripts. Here I’ll share my tips and best practices to follow when scripting in...

Turn your scripts into binaries using the awesome shc tool!

Assume the following scenario, you need to provide to a client a shell script to do a specific tasks, in the same time you have the following limitations you need to conform The script contains sensitive information (fo example a password) that the client must not learn The script must run o...

Server monitoring with PHP and Bash Scripts

We’re back!, I’m working on a service to monitor our servers and I want to share some concepts and ideas with you, my dear reader, a basic implementation that you can use if you are planning something similar. Why do I require a custom solution to monitor my servers? I like your qu...

Run Python Scripts On Windows Startup

Have you ever made a Python script that needs to run each time a computer is started? Or a script that needs to be running all the time, like a directory watcher or a good habit reminder? Then wouldn’t it be nice if those scripts would start automatically right when you start...

How to Run Scripts from Github

A “source code repository” is a place where code is stored. Developers love to use platforms like Github to ensure they have a remote place to store the code they’re working on. Side note — If you’re coding, using Photoshop, editing videos, or doing any other work on...