this post was submitted on 04 Aug 2023
6 points (87.5% liked)
Web Development
3434 readers
1 users here now
Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development
What is web development?
Web development is the process of creating websites or web applications
Rules/Guidelines
- Follow the programming.dev site rules
- Keep content related to web development
- If what you're posting relates to one of the related communities, crosspost it into there to help them grow
- If youre posting an article older than two years put the year it was made in brackets after the title
Related Communities
- !html@programming.dev
- !css@programming.dev
- !uiux@programming.dev
- !a11y@programming.dev
- !react@programming.dev
- !vuejs@programming.dev
- !webassembly@programming.dev
- !javascript@programming.dev
- !typescript@programming.dev
- !nodejs@programming.dev
- !astro@programming.dev
- !angular@programming.dev
- !tauri@programming.dev
- !sveltejs@programming.dev
- !pwa@programming.dev
Wormhole
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
- https://frontendfoc.us/ - [RSS]
- https://wesbos.com/blog
- https://davidwalsh.name/ - [RSS]
- https://www.nngroup.com/articles/
- https://sia.codes/posts/ - [RSS]
- https://www.smashingmagazine.com/ - [RSS]
- https://www.bennadel.com/ - [RSS]
- https://web.dev/ - [RSS]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I actually worked with Django for years. At one point I was a technical reviewer for the book Two Scoops of Django.
Today I basically refuse to go back to Python (and by extension Django). I am not a fan of the Python community, and I am not a fan of the “configuration over convention” philosophy that Python tends to take.
My experience is that Rails apps are infinitely easier to jump into and understand because convention is enforced at the framework level, and this seems to have influenced the Ruby community in very positive ways. I always seemed to find constructive, useful answers faster from the Ruby community than I ever did from the Python community.
The worse dev job I ever had was doing contracting for Django apps. Every single Django app that was brought to us was configured, architected, organized, and deployed in completely different ways and it made just getting to the actual business logic far too difficult.
Between Ruby/Rails and Python/Django it’s Ruby/Rails all the way.
Thanks for the reply. I've only had to use Django solo, so haven't had that issue since I know my own configuration, but I can see that would be problematic. What you say about the community though is certainly not what I would expect. Quite interesting, I suppose I'll have to have a better look now... Or, rather, add it to the list of things to have a look at.
I think my main complaint about the python community is I saw a huge amount of “I know better than everyone else so it’s ok for me to do something in a completely unique way”.
The ruby community leans very much the opposite way, with “you don’t know better than the community, just do what they do”.
Both are bad at the extreme ends, but it seems like the Ruby community is acting in good faith here most of the time. They want to make their lives and other devs lives easier and they want to crowd source the right way to do that.