this post was submitted on 22 Apr 2026
5 points (100.0% liked)

Programming

26803 readers
269 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
top 4 comments
sorted by: hot top controversial new old
[–] xia@lemmy.ca 2 points 1 week ago

Fascinating. What comes to mind is frameworks that enforce horizontal separations... and the whole "convention over configuration" opine/meme.

[–] ICastFist@programming.dev 1 points 1 week ago

TLDR; don't group files by "what they do in common" but rather the ones that "work with the same thing". So instead of components, libraries, icons folders, group them like table1, table2, etc

[–] idriss@lemmy.ml 0 points 1 week ago (1 children)

if you are following DDD and/or clean architecture, this article would be giving you terrible advice. You go vertical but the moment you need a type/utility from another place it stops making sense.