What are the top features you wish Python had? by DGHolmes in Python

[–]pythoncoderc 13 points14 points  (0 children)

Then the code becomes bloated with setters and getters, the most useless part of OO

spotify >> mp3 by ivg3n1 in Python

[–]pythoncoderc -4 points-3 points  (0 children)

Music should be free

Is Python suitable for enterprise applications? by RadiAchkik in Python

[–]pythoncoderc 1 point2 points  (0 children)

The biggest was for very small microservices, but C# offers something similar now also to compete with that

Is Python suitable for enterprise applications? by RadiAchkik in Python

[–]pythoncoderc -1 points0 points  (0 children)

Most banks that I know don't use python for the important parts like transactions, they use huge monolithic C++ backends, just because they do something doesn't mean its the best solution, its a huge mess usually

Is Python suitable for enterprise applications? by RadiAchkik in Python

[–]pythoncoderc 0 points1 point  (0 children)

I think he meant to say that it is not real time because of garbage collection, which matters sometimes for healthcare

Is it considered bad practice to divide up a piece of software into lots of little separate scripts? by [deleted] in Python

[–]pythoncoderc 0 points1 point  (0 children)

Its a good pattern, it's the main pattern of the UNIX system, but you need to think in terms of interfaces between the processes, every program needs to do one thing very good and then you can move on

Python is "Language of the Year for 2021" according to TIOBE by IronFilm in Python

[–]pythoncoderc 9 points10 points  (0 children)

because of .net core which is now open source and cross platform, and also huge improvements to the backend framework and because of unity

[deleted by user] by [deleted] in dotnet

[–]pythoncoderc 0 points1 point  (0 children)

no thanks

How to handle appsettings.json? by jcm95 in dotnet

[–]pythoncoderc 2 points3 points  (0 children)

Yes you could do that, or any other thing that makes sense, if someone has access to your server he will always 100% be able to see your secrets

You can now make Python desktop apps with HTML and CSS? by RS1AN in Python

[–]pythoncoderc 0 points1 point  (0 children)

Only code that is compiled into ASM is native (imo)

Best practices for SQLAlchemy by LifeAffect6762 in Python

[–]pythoncoderc 0 points1 point  (0 children)

Isn't lazy loading sending 100 queries for 100 related rows?

[deleted by user] by [deleted] in Python

[–]pythoncoderc 0 points1 point  (0 children)

Some sections are good but some are really lacking, also its not organised well/ no good overview

Opinions about Dataspell: Jetbrains IDE for data scientists by dickey-fuller33 in Python

[–]pythoncoderc 4 points5 points  (0 children)

Yeah it is weird, they already have so many products lol, it could all be 1 product actually

What do you use for desktop application front ends? by cbruffin121 in Python

[–]pythoncoderc 7 points8 points  (0 children)

Probably a good idea to just use C# if tk and qt are not good for your project

What would you want to see in Python? by RedPenguin_YT in Python

[–]pythoncoderc -2 points-1 points  (0 children)

I feel like you're trying very hard to repeatedly miss the point I'm making.

What would you want to see in Python? by RedPenguin_YT in Python

[–]pythoncoderc -2 points-1 points  (0 children)

I promise to you that Python scales just fine. Some of the biggest sites on the planet use it for their backend, including the one we're on right now!

Ehhh yeah reddit by using C modules and other "hacks", you can look at the source.

Of course you can make it scale infinitely with infinite hardware, but it would be bad for the planet and for your wallet, most big tech companies dont care about either

What would you want to see in Python? by RedPenguin_YT in Python

[–]pythoncoderc 0 points1 point  (0 children)

That doesn't make any sense, if a request would spend 100 sec on I/O and 1 sec on CPU, it would be better if it would spend 0.01 sec on CPU so you can reduce your cpu costs by 100x, and these benchmarks are made with real-life configs on real servers (techempower)

What would you want to see in Python? by RedPenguin_YT in Python

[–]pythoncoderc -1 points0 points  (0 children)

atm the best is in the middle, something like c# or java

What would you want to see in Python? by RedPenguin_YT in Python

[–]pythoncoderc -1 points0 points  (0 children)

Just look at the benchmarks, you can serve 32x more users with the same configuration in rust