Sai Praneethterraformiac.hashnode.dev·Jan 19, 2025ShellScript - 1What is a Shell? Shell is a program that takes the commands whatever the user is typing and it will give to the OS to execute. It acts as an interface between the user and the OS. In most of the Linux systems bash is the default shell., Linux support...shell script
Birendra Kumar Chaudharybiren.hashnode.dev·Jan 13, 2025Day 3: System Administration Tasks Using If-Else Statements in Shell Scripting.🎯you'll focus on practical scripting scenarios that are commonly required in system administration. These tasks will involve decision-making based on system conditions, using if, else, and elif statements. You will write scripts to automate routine ad...Scripting
RichGod Usenrichgodsblog.hashnode.dev·Jan 12, 2025My little adventure into the world of scriptingHow scripting made setting up Vite + React projects 100x easier for me How it all began Well, one afternoon at work, I had a couple of projects to set up and trust me, I’m no fan of the grueling process involved in setting up a folder/file structure...20 likesTech Journey Shenanigansvite
Aniket R Chateani-r.hashnode.dev·Jan 8, 2025scrcpy Wireless Connector: Automate Your Android Screen MirroringThis blog will introduce you to a simple Windows script that automates the process of connecting your Android device wirelessly over Wi-Fi and launching scrcpy to mirror your device’s screen. It’s specifically tested and optimized for Windows users, ...Windows
David Doddablog.daviddodda.com·Jan 7, 2025How I Automated My Job Application Process. (Part 3)Welcome to the final part of this series. In Part 1, I showed you the proof of concept. In Part 2, we dove into the actual application. Now it's time for the good stuff - all the ways everything went wrong before it went right. Remember when I said t...811 readsautomation
Birendra Kumar Chaudharybiren.hashnode.dev·Jan 6, 2025Day 2: Understanding Conditionals in Shell Scripting (if, else, elif).Conditionals allow us to make decisions in your shell scripts. They let you run different blocks of code depending on whether a condition is true or false. 1. if Statement #!/bin/bashx=5if [ $x -gt 3 ]; thenecho "x is greater than 3"fi — [ $x -gt 3 ]...Linux
Birendra Kumar Chaudharybiren.hashnode.dev·Jan 5, 2025Day-1: Introduction to Shell Scripting: Basic Syntax, Shebang, Comments, and Variables1. what is shell scripting? Shell scripting is writing commands in a file to automate tasks in a shell (command-line interface). It allows you to execute multiple commands in sequence to manage systems, automate processes, and perform repetitive task...Scripting
Platwoindiegamescreation.hashnode.dev·Dec 31, 2024Scripting as Part of Games DevelopmentIntroduction Welcome to this blog post! In the previous post, which was about JSON files, I mentioned that I was going to be writing about scripting next. Well here we are! This blog is going to be covering what scripting languages are, how I have us...31 readsPython
David Doddablog.daviddodda.com·Dec 31, 2024How I Automated My Job Application Process. (Part 2)Welcome back! In Part 1, I showed you how I built a proof of concept to automate job applications using Python scripts. Now it's time for the fun part - turning those scripts into a proper application. Here's what I learned: the gap between "it's a w...1.7K readsautomation
David Doddablog.daviddodda.com·Dec 27, 2024How I Automated My Job Application Process. (Part 1)Look, I'll be honest - job hunting sucks. It's this soul-crushing cycle of copying and pasting the same information over and over again, tweaking your resume for the 100th time, and writing cover letters that make you sound desperate without actually...9 likes·58.8K readsautomation