this post was submitted on 09 Sep 2024
1 points (100.0% liked)
Programming
2 readers
1 users here now
A magazine created for the discussion of computer programming-related topics.
Rules
Please keep submissions on topic and of high quality. No image posts, no memes, no politics. Keep the magazine focused on programming topics not general computing topics. Direct links to app demos (unrelated to programming) will be removed. No surveys.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
This of course begs the question, what are us senior level folks standing in the way of for innovation from the next generation?
Oddly, one thing I've seen is junior devs discovering older methods, like using a mysql or postgresql RDBMS engine with actual SQL, to be an effective way to solve a problem and having to justify not using some fancy expensive cloud SaaS DB instead.
I think they may be on to something there.
@vwbusguy@mastodon.online I was doing some PostgreSQL related refactoring on my hobby project this weekend and found that it's really fun to re-discover the software/processes behind the SaaS services (everyone cooks with water π§). It's sad to watch once simple and good services go to waste, but it inspires to find out how things could work behind the scenes. A really satisfying process.
@vwbusguy@mastodon.online Another corollary: a lot of professional Python programmers today are using Python because their managers told them itβs the default tech stack. Iβm not sure what the implications are long-term, but Iβm pretty sure it means a declining in code quality.
This is coincident with Python itself becoming quite a bit more complex over time, even as its standard library becomes less useful.
@bouncing Having worked in front end and backend development when php was king, I very much would like to push back on blaming python for anything with regard to bad coding. PHP5 let you get away with so much worse than python ever did.
You definitely can write bad python code, but it is still opinionated about a good many things that are good to be opinionated about.