HackerTrans
TopNewTrendsCommentsPastAskShowJobs

justinc-md

no profile record

comments

justinc-md
·w zeszłym roku·discuss
The Netflix Cease and Desist (https://www.eicoff.com/drtv-blog/netflix-cease-and-desist) for a Stranger Things themed pop-up bar also comes to mind.
justinc-md
·3 lata temu·discuss
I used PyPy extensively at a previous employer. The use case was to accelerate an application that was CPU-bound because of serde, which could not be offloaded using multiprocessing. PyPy resulted in a 10x increase in message throughput, and made the project viable in python. Without PyPy, we would have rebuilt the application in Java.
justinc-md
·3 lata temu·discuss
gc.freeze prevents considering the objects in gc, but doesn’t disable reference counting so you’ll still have CoW issues. PEP 683 introduces a way to make an object immortal which disables reference counting, which will address that issue.