Live data from Hacker News

Python programming is drowning in red tape

stefanoborini.com

181–183 of 183 posts

Re: Python programming is drowning in red tape

#181
post #169

Earlier quoted context omitted.

I have to disagree regarding asyncio. If existing code uses it that you need to interface with, your sensible options are basically to rewrite all of your code to use asyncio, or try a hacky third-party library that'll try to bridge them. I'm personally not a fan of it (I'm still a gevent proponent; Go seems to be doing fine with a green thread model), but a lot of libraries I use are written with it, so it's pretty…

> I have to disagree regarding asyncio. If existing code uses it that you need to interface with, your sensible options are basically to rewrite all of your code to use asyncio, or try a hacky third-party library that'll try to bridge them. Yes, this is true. I don't think there's a lot of existing code using it at this point since it's still a fairly new feature. But of course that will change as time goes on. > I'm…

I do find the mandatory "async" peppering everywhere annoying, but I'm honestly not a fan of the whole paradigm. I don't actually think it's that important to explicitly specify "await" when you want to await. It's also extremely prone to obscure, frequently-missed errors; a missing await or unnecessary/incorrect await can affect performance or logic in a massive way.

Re: Python programming is drowning in red tape

#182
post #140

Earlier quoted context omitted.

ahahahah now you are telling me that the node ecosystem and the tooling and pre/post compilation/translation phases are simpler than python? (and I'm not talking about the languages themself)

Compilation? I write a JS file and then do node myfile.js...

what do you call the various phases of bundling, minification, obfuscation...? or using babel to use the latest version of the spec? or the various passages of type/coffescript and whatnot... or the jsx stuff... or wasm, webassembly... ... and on and on...

Re: Python programming is drowning in red tape

#183
post #182

Earlier quoted context omitted.

Compilation? I write a JS file and then do node myfile.js...

what do you call the various phases of bundling, minification, obfuscation...? or using babel to use the latest version of the spec? or the various passages of type/coffescript and whatnot... or the jsx stuff... or wasm, webassembly... ... and on and on...

Like I said: I write a .js file and run node. I need none of what you mention.
Post reply on HN