Tag: Scripts

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...

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...

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...

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...

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...

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...

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....

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...

__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...