Forwarded from Находки в опенсорсе
Simple real time visualisation of the execution of a #python program: https://github.com/alexmojaki/heartrate
Forwarded from Записки админа
📊 Тут вот человек набросал скрипт, для визуализации данных, собранных vmstat. https://tuxstash.de/gist/2019/08/16/vmstatvis-py.html
#vmstat #напочитать #python
#vmstat #напочитать #python
Forwarded from L̶u̵m̶i̵n̷o̴u̶s̶m̶e̵n̵B̶l̵o̵g̵
A series of articles about the internal structure of .pyc files. The author’s goal is to create a programming language compatible with the Python interpreter. http://blog.braulio.me/2018/06/28/internal-structure-pyc-files.html
#python
#python
Type-Level Memes
Targeting The Python Virtual Machine I: The Internal Structure of .pyc Files
When the cpython python interpreter imports a module, it has to compile your code into an internal representation called bytecode. That bytecode is then executed by the cpython virtual machine. In order to avoid performing that compilation step every time…