Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Hhere is quick survey :

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
For Frontend Choices :

  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


Wow, now curl is doing pretty well in the rankings!


C is winning


R really ramped up its rankings and seems to be running ahead of the rest ;)


. is doing best actually


tangent: asked ChatGPT to update your code to use for loops and voila:

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


Ask chatgpt to collect every possible frontend and backend frameworks form this post.


Should include Laravel too, which would also be my answer.


Laravel is just as big as Django and Rails in adoption, definitely should be included


   curl "https://news.ycombinator.com/item?id=34530052" | grep -i Go | wc -l
   891
Do you all believe me now when I say Go is an unfortunate name for an otherwise wonderful programming language?


  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


But doesn't that ignore the negative comments, e.g. don't use rails! /s


for that case we need to build a language model :D


Grepgpt? ;)

Edit:

apt install grepgpt

Downloading 0% of 5GB #......


you left out at least vuejs for frontend


still collecting frontend parts


Deno didnt make the list...


For good reason.


Curious! Can you please elaborate?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: