eh?
# **!/bin/bash**
end=$((SECONDS+300))
mkdir -p samay
cd samay
while [ $SECONDS -lt $end ]; do
# Do what you want.
touch $(date "+%F-%T")_file.txt
sleep 60
aws s3 sync ../samay s3://gaddagi-testing-files/ --region ap-south-1
:
done
# **!/bin/bash**
end=$((SECONDS+300))
mkdir -p samay
cd samay
while [ $SECONDS -lt $end ]; do
# Do what you want.
touch $(date "+%F-%T")_file.txt
sleep 60
aws s3 sync ../samay s3://gaddagi-testing-files/ --region ap-south-1
:
done
Why nslookup works but ping says “Name or service not known”? Let’s get basic terminology straight up — and it’s assumed you already understand how DNS resolution works. In my quest to understand how tools like nslookup and ping behave differently, I was honestly confused by the terms DNS
In my experience, I've revisited this topic multiple times — and every single time, I’ve learned something new. So here’s a simple visual walkthrough for those who want to understand what really happens when you type a domain name into your browser. We’ll break this into
An entry from my journal, just some combined thoughts and reflections. Felt internet could read it. A life in India can only be fully understood when viewed through the lens of community. In this deeply religious land and more, lives are intertwined like threads in an intricate tapestry, with little
In Go, there are several ways to allocate and initialize memory. Pre-requisite: undertsand types in Go var Declaration When you declare a variable using var: var x int var s string var m map[string]int var sl []int * The variable is zero-valued (0 for numeric types, "" for