Regarding backend choices:
curl "https://news.ycombinator.com/item?id=34530052" | grep -i Django | wc -l 36 curl "https://news.ycombinator.com/item?id=34530052" | grep -i supabase | wc -l 17 curl "https://news.ycombinator.com/item?id=34530052" | grep -i rails | wc -l 28 curl "https://news.ycombinator.com/item?id=34530052" | grep -i node | wc -l 15 curl "https://news.ycombinator.com/item?id=34530052" | grep -i elixir| wc -l 14 curl "https://news.ycombinator.com/item?id=34530052" | grep -i phoenix | wc -l 7 curl "https://news.ycombinator.com/item?id=34530052" | grep -i fastapi | wc -l 7
curl "https://news.ycombinator.com/item?id=34530052" | grep -i svelte | wc -l 9 curl "https://news.ycombinator.com/item?id=34530052" | grep -i React | wc -l 34 curl "https://news.ycombinator.com/item?id=34530052" | grep -i htmx | wc -l 15
Backend Choices:
for backend in "Django" "supabase" "rails" "node" "elixir" "phoenix" "fastapi"; do count=$(curl -s "https://news.ycombinator.com/item?id=34530052" | grep -i "$backend" | wc -l) echo "$backend: $count" done Frontend Choices: for frontend in "svelte" "React" "htmx"; do count=$(curl -s "https://news.ycombinator.com/item?id=34530052" | grep -i "$frontend" | wc -l) echo "$frontend: $count" done
curl "https://news.ycombinator.com/item?id=34530052" | grep -i Go | wc -l 891
curl "https://news.ycombinator.com/item?id=34530052" | grep -i vue | wc -l 14 curl "https://news.ycombinator.com/item?id=34530052" | grep -i laravel | wc -l 10
Edit:
apt install grepgpt
Downloading 0% of 5GB #......
Regarding backend choices:
For Frontend Choices :