Life in Commits πŸ’»
57 subscribers
194 photos
3 videos
16 files
46 links
Download Telegram
Forwarded from Dagmawi Babi
What is this personality 😭
❀2😁1
This is so sad .
Forwarded from Jabez
Owner of Jiji marketplace is from Poland!
πŸ‘2
Forwarded from Solomon Insight (Π…Οƒβ„“ΟƒΠΌΟƒΠΈ.G)
40+ free vibe coding tools to use in 2026 πŸ”₯

More productive less $


Save this for later πŸ™Œ
@solomon_insight
❀1πŸ”₯1
Forwarded from Ubeyidah
HTML ???
πŸ‘1
Heard the term 100x but lowkey I've no clue how they actually work under the hood .
#!/usr/bin/env bash

DEV_DIR="$HOME/Desktop/chaos_projects"

echo "Scanning Git repositories in: $DEV_DIR"
echo "--------------------------------------------------"

find "$DEV_DIR" -type d -name ".git" 2>/dev/null | while read gitdir; do

repo_dir=$(dirname "$gitdir")
cd "$repo_dir" || continue

repo_name=$(basename "$repo_dir")
branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)

echo ""
echo "πŸ“¦ Repository: $repo_name"
echo " Path: $repo_dir"
echo " Branch: $branch"

if ! git remote get-url origin &>/dev/null; then
echo " ⚠ No remote configured"
continue
fi

git fetch origin &>/dev/null

if [ -n "$(git status --porcelain)" ]; then
echo " ✏ Uncommitted changes"
fi

ahead=$(git rev-list --count @{u}..HEAD 2>/dev/null)
behind=$(git rev-list --count HEAD..@{u} 2>/dev/null)

if [ "$ahead" -gt 0 ]; then
echo " ⬆ $ahead commit(s) NOT pushed"
fi

if [ "$behind" -gt 0 ]; then
echo " ⬇ $behind commit(s) behind remote"
fi

if [ "$ahead" -eq 0 ] && [ "$behind" -eq 0 ] && [ -z "$(git status --porcelain)" ]; then
echo " βœ” Clean & fully pushed"
fi

done

echo ""
echo "Done."

What this script does:
β€’ Scans all Git repos inside your projects folder
β€’ Detects current branch
β€’ Checks for uncommitted changes
β€’ Shows commits ahead/behind origin
β€’ Tells you which repos are clean & fully pushed
❀2
any idea on how to make the pwa installable on android ?
πŸ‘1
Forwarded from Josad Software Jobs
Full Stack | OpenClaw AI automation Expert
Company: AfriDev
Company DescriptionAfriDev is a leading software development and digital innovation company dedicated to designing scalable, intelligent, and user focused solutions for businesses and startups across Africa and the global market. Specializing in full-stack web and mobile development, AI-powered applications, automation tools, and modern cloud systems, AfriDev integrates technical expertise with creative design and agile project management. The companys mission is to help clients innovate, grow, ...view detail

#Linkedin #full #stack #openclaw #ai #automation #expert #josad #tech_jobs

View on source

@josad_software