Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
What do you guys use it for? I use it as a pre loader for my main applications. The pre loader downloads all the needed stuff and keeps the app up to date. Small efficient native stub.
-
benrooke848y@enchance it depends on what your project(s) are. I like to use Python for smaller projects, since its duck typed and doesn't compile. When projects get larger, you'd probably want to use a compiled language.
But on the other hand, Python can work if you write lots of tests and have good code coverage. I don't want to come off as being an absolutist 😝 -
benrooke848y@enchance If you want to tell me what you want to learn more about, I could provide some information.
If you are not a fan of OO programming, Go might be more suitable (there are no objects). In Python, everything is an object! But one could easily get away with writing Python without using classes, much like what the YouTube development team did with their backend. -
@benrooke Didn't know Go wasn't OOP. I'm using PHP right now so I'm guessing Python. What kind of software does Go make?
I'm curious how many people on DevRant use GoLang.
undefined