The Curious Case of Pydantic and the 1970s Timestamps
https://dev.arie.bovenberg.net/blog/pydantic-timestamps/
https://dev.arie.bovenberg.net/blog/pydantic-timestamps/
Arie Bovenberg
The curious case of Pydantic and the 1970s timestamps
When parsing Unix timestamps, Pydantic guesses whether to interpret them in seconds or milliseconds. While this is certainly convenient and works most of the time, it can drastically (and silently) distort timestamps from a few decades ago.
A Critical Supply Chain Attack on PyTorch
https://johnstawinski.com/2024/01/11/playing-with-fire-how-we-executed-a-critical-supply-chain-attack-on-pytorch/
https://johnstawinski.com/2024/01/11/playing-with-fire-how-we-executed-a-critical-supply-chain-attack-on-pytorch/
John Stawinski IV
Playing with Fire – How We Executed a Critical Supply Chain Attack on PyTorch
Security tends to lag behind adoption, and AI/ML is no exception. Four months ago, Adnan Khan and I exploited a critical CI/CD vulnerability in PyTorch, one of the world’s leading ML platform…
Python Gotcha: Modifying a List While Iterating
https://andrewwegner.com/python-gotcha-modify-list-while-iterating.html
https://andrewwegner.com/python-gotcha-modify-list-while-iterating.html
Ponderings of an Andy
Python Gotcha: Modifying a list while iterating
Python makes it easy to modify a list while you are iterating through it's elements. This will bite you. Read on to find out how and what can be done about it.
A Deep Dive Into Python’s functools.wraps Decorator
https://jacobpadilla.com/articles/Functools-Deep-Dive
https://jacobpadilla.com/articles/Functools-Deep-Dive
Jacob Padilla
A Deep Dive Into Python's functools.wraps Decorator
Take a deep dive into Python's functools.wraps decorator to learn how it maintains metadata in your code. A concise guide to effective decorator use.
All PyCon 2023 (US and AU) Talks Sorted by the View Count
https://techtalksweekly.substack.com/p/all-pycon-2023-talks-sorted-by-views
https://techtalksweekly.substack.com/p/all-pycon-2023-talks-sorted-by-views
Tech Talks Weekly
All PyCon 2023 (US and AU) talks sorted by the view count
Hi👋! I think the 2023 edition of both PyCons were awesome and I've compiled a list of the most watched talks including PyCon US and PyCon AU. I’ve built this list as a part of the 📭 Tech Talks Weekly newsletter where I’m collecting the most notable recent…
A Developer’s Guide to Using PodcastIndex.org, FastAPI, and FastUI
https://medium.com/django-unleashed/build-your-podcast-search-tool-a-developers-guide-to-using-podcastindex-org-fastapi-and-fastui-03b7483b24d3
https://medium.com/django-unleashed/build-your-podcast-search-tool-a-developers-guide-to-using-podcastindex-org-fastapi-and-fastui-03b7483b24d3
Medium
A Developer’s Guide to Using PodcastIndex.org, FastAPI, and FastUI
Key components like PodcastIndex.org, FastAPI, and FastUI are essential in navigating the digital media landscape, which has seen a…
What is encapsulation in programming?
https://elshad-karimov.medium.com/what-is-encapsulation-in-programming-e08715b34dc4
https://elshad-karimov.medium.com/what-is-encapsulation-in-programming-e08715b34dc4
Medium
What is encapsulation in programming?
Encapsulation in programming is like packing your lunch in a lunchbox. Just like you put your sandwich, apple, and juice in a lunchbox to…
Object-Oriented Programming In Python: A Beginner’s guide
https://medium.com/@laddhaakshatrai/object-oriented-programming-in-python-a-beginners-guide-6a6c874399eb
https://medium.com/@laddhaakshatrai/object-oriented-programming-in-python-a-beginners-guide-6a6c874399eb
Medium
Object-Oriented Programming In Python: A Beginner’s guide
OOPs, , object-oriented programming, is a way to connect the real world to programming and eventually make scalable products. Focusing on…
Understanding Financial Concepts with Python and AI (Part I)
https://medium.com/@enriqueavila.finance/understanding-financial-concepts-with-python-and-ai-part-i-681b04f103c6
https://medium.com/@enriqueavila.finance/understanding-financial-concepts-with-python-and-ai-part-i-681b04f103c6
Medium
Understanding Financial Concepts with Python and AI (Part I)
In the complex world of finance, having the ability to navigate through intricate financial concepts is not just an advantage, it is a…
Creating a Complex Radar Chart With Python
https://medium.com/@reinapeh/creating-a-complex-radar-chart-with-python-31c5cc4b3c5c
https://medium.com/@reinapeh/creating-a-complex-radar-chart-with-python-31c5cc4b3c5c
Medium
Creating a Complex Radar Chart With Python
In this article, I will guide you in creating a customized function for a radar chart with 12 metrics and 6 layers. This customized function focuses heavily on the aesthetics of elements in the plot…