Life in Commits πŸ’»
57 subscribers
194 photos
3 videos
16 files
46 links
Download Telegram
Life in Commits πŸ’»
https://vt.tiktok.com/ZSaLj9HRD/
Just saw this πŸ”₯ TikTok about the future of coding β€” basically saying raw coding is dying and β€œvibe coding” with AI agents like Claude is taking over 😎


I honestly agree that writing code is becoming less of a bottleneck thanks to these crazy AI tools ⚑

But here’s my take πŸ‘‡

This is how I see the *REAL* future of software development πŸš€

We’re moving toward a world where what actually matters is:

β€’ System design πŸ—οΈ 
β€’ User experience ✨ 
β€’ Product thinking πŸ’‘

Being a strong generalist > mastering one language or framework.

With agents like Claude handling most of the raw code, the real differentiator becomes:

πŸ”Ή How systems are architected 
πŸ”Ή How users actually feel when using a product 
πŸ”Ή How ideas turn into real, lovable, shippable things 

If you can think clearly at that level, the tools will handle the rest πŸͺ„

Developers who only memorize syntax and frameworks? 
They might get left behind 😬

The future belongs to devs who vibe code, think holistically, and operate above the code 🌌

What do you think ? πŸ‘‡
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