(no title)
Tipewryter | 4 years ago
The one thing I dislike about Python projects is that Python plasters the compile cache files all over the place. Is there a reason to change that? Currently I use the -B flag for all my scripts. But that makes it slow. I wish Python would have an option to perform like PHP and keep cached compilations in memory instead on disk. Or at least somewhere in /tmp/.
bpicolo|4 years ago
Tipewryter|4 years ago
Tenoke|4 years ago
ed_balls|4 years ago
Tipewryter|4 years ago
0x008|4 years ago
willis936|4 years ago
Also at what point do people just realize that all of this overhead is a gigantic waste of time and just use a better language?
Tipewryter|4 years ago
There is not much overhead in running a project in a container. The project has a setup file that turns a fresh Debian 10 into whatever environment it needs. And thats it. Run that setup script in your Dockerfile to create a container and you are all set. Want to run the project in a VM or on bare metal? Just install Debian 10, run the setup script and you all set.
evgen|4 years ago
Probably some time shortly after your developer time costs less than your cloud compute time. Until you hit that point (if ever) there are few options as cost-effective as Python.
Spivak|4 years ago
skohan|4 years ago