https://github.com/voitau/system-design-primer/blob/master/README-ru.md -пособите по проектированию систем
#architecture #system_design
#architecture #system_design
GitHub
system-design-primer/README-ru.md at master · voitau/system-design-primer
Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. - voitau/system-design-primer
https://snyk.io/blog/guide-to-python-pickle/?utm_campaign=AOM-UA-2022&utm_medium=Paid-Email&utm_source=PyCoders&utm_content=guide-to-python-pickle - статья о безопасном использовании pickle
#pickle #security
#pickle #security
Snyk
The ultimate guide to Python pickle | Snyk
This article will teach you how to safely use Python’s built-in pickle library to maintain persistence within complex data structures.
https://www.heurekadevs.com/a-brief-look-at-cpython-string - как устроены строки в cpython
#str #cpython
#str #cpython
Heurekadevs
A Brief Look at CPython String
Have you ever noticed that a string with just a few characters in Python uses several dozen bytes of memory? We handle a lot of short strings, that works on matching offers of the same products together, and I have been wondering why Python seems to store…
https://stackoverflow.com/questions/24752395/python-raise-from-usage - об использовании raise from
#exception #raise
#exception #raise
Stack Overflow
Python "raise from" usage
What's the difference between raise and raise from in Python?
try:
raise ValueError
except Exception as e:
raise IndexError
which yields
Traceback (most recent call last):
File "tmp.py"...
try:
raise ValueError
except Exception as e:
raise IndexError
which yields
Traceback (most recent call last):
File "tmp.py"...
https://habr.com/ru/companies/vsk_insurance/articles/780500/ - сравнение скорости парсеров
#parser #benchmark
#parser #benchmark
Хабр
Бенчмарк HTML парсеров в Python: сравнение скорости
Привет, Хабр! Меня зовут Вадим Москаленко и я разработчик инновационных технологий Страхового Дома ВСК. В этой статье хочу поделиться с вами информацией по проведенному сравнению производительности...