A Better Pygame Mainloop
I’ve written about this
before, but in that
context I was writing mainly about frame-rate ...
https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
I’ve written about this
before, but in that
context I was writing mainly about frame-rate ...
https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
Twistedmatrix
A Better Pygame Mainloop
Fix your mainloop for smoother gameplay that takes less battery power.
PDFs in Django like it’s 2022!
In a previous article I had written a very comprehensive
guide on how to render PDFs in Django ...
https://spapas.github.io/2022/02/14/django-pdfs-2022/
In a previous article I had written a very comprehensive
guide on how to render PDFs in Django ...
https://spapas.github.io/2022/02/14/django-pdfs-2022/
spapas.github.io
PDFs in Django like it’s 2022! — /var/
Image Super Resolution
In this tutorial, you will learn to use image super resolution.
This lesson is part of ...
https://pyimagesearch.com/2022/02/14/image-super-resolution/
In this tutorial, you will learn to use image super resolution.
This lesson is part of ...
https://pyimagesearch.com/2022/02/14/image-super-resolution/
PyImageSearch
Image Super Resolution - PyImageSearch
Understand and apply image super resolution in your work today. Free tutorial and complete code included.
Mailu / Mailu
Insular email distribution - mail server as Docker images
https://github.com/Mailu/Mailu
Insular email distribution - mail server as Docker images
https://github.com/Mailu/Mailu
GitHub
GitHub - Mailu/Mailu: Insular email distribution - mail server as Docker images
Insular email distribution - mail server as Docker images - Mailu/Mailu
Deploy a Python API on Vercel using Postgres
FastAPI, Vercel, Arctype, and Postgres form a potent stack of software technologies. This article will show you how to build a simple task manager that takes advantage of these modern tools.
https://arctype.com/blog/vercel-python-fastapi/
FastAPI, Vercel, Arctype, and Postgres form a potent stack of software technologies. This article will show you how to build a simple task manager that takes advantage of these modern tools.
https://arctype.com/blog/vercel-python-fastapi/
Automatic Musical Composition with Python
https://flujoo.github.io/en/my-approach-to-automatic-musical-composition/
https://flujoo.github.io/en/my-approach-to-automatic-musical-composition/
pytest-dev / pytest
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
https://github.com/pytest-dev/pytest
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
https://github.com/pytest-dev/pytest
GitHub
GitHub - pytest-dev/pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
The pytest framework makes it easy to write small tests, yet scales to support complex functional testing - pytest-dev/pytest
Faster Python calculations with Numba: 2 lines of code, 13× speed-up
https://pythonspeed.com/articles/numba-faster-python/
https://pythonspeed.com/articles/numba-faster-python/
Python⇒Speed
Faster Python calculations with Numba: 2 lines of code, 13× speed-up
Python-based calculations, especially those that use NumPy, can run much faster by using the Numba library.
Public key cryptography: RSA keys
I bet you created at least once an RSA key pair, usually because you needed to connect to GitHub ...
https://www.thedigitalcatonline.com/blog/2018/04/25/rsa-keys/
I bet you created at least once an RSA key pair, usually because you needed to connect to GitHub ...
https://www.thedigitalcatonline.com/blog/2018/04/25/rsa-keys/
Thedigitalcatonline
Public key cryptography: RSA keys
An in-depth discussion of the format of RSA keys, the PEM format, ASN, and PKCS
Indexing on Partitioned Data
In this essay, we will take a detailed look into how we could index the partitioned data, allowing ...
https://arpitbhayani.me/blogs/indexing-on-partitioned-data
In this essay, we will take a detailed look into how we could index the partitioned data, allowing ...
https://arpitbhayani.me/blogs/indexing-on-partitioned-data
Arpit Bhayani
Indexing on Partitioned Data
In this essay, we will take a detailed look into how we could index the partitioned data, allowing us to query the data on secondary attributes quickly.
Compressed Sensing in Python (2016)
http://www.pyrunner.com/weblog/2016/05/26/compressed-sensing-python/
http://www.pyrunner.com/weblog/2016/05/26/compressed-sensing-python/
Pyrunner
Compressed Sensing in Python
Investigate compressed sensing (also known as compressive sensing, compressive sampling, and sparse sampling) in Python, focusing mainly on how to apply it in one and two dimensions to things like sounds and images. Take a highly incomplete data set of signal…
PurplePanda
Identify privilege escalation paths within and across different clouds.
https://github.com/carlospolop/PurplePanda
Identify privilege escalation paths within and across different clouds.
https://github.com/carlospolop/PurplePanda
GitHub
GitHub - carlospolop/PurplePanda: Identify privilege escalation paths within and across different clouds
Identify privilege escalation paths within and across different clouds - carlospolop/PurplePanda
Interview with Sebastian Ramirez: FastAPI Creator
Learn how FastAPI, a high-performance Python web framework for building APIs, became the 3d most loved framework after just 2 years of existence.
https://flagsmith.com/podcast/fastapi-sebastian-ramirez/
Learn how FastAPI, a high-performance Python web framework for building APIs, became the 3d most loved framework after just 2 years of existence.
https://flagsmith.com/podcast/fastapi-sebastian-ramirez/
Flagsmith
Interview with the Creator of Python FastAPI - Sebastian Ramirez
Creator of FastAPI high-performance Python web framework for building APIs, the 3d most loved framework after just 2 years of existence.
Show HN: Prisma Python – A fully typed ORM for Python
https://github.com/RobertCraigie/prisma-client-py
https://github.com/RobertCraigie/prisma-client-py
GitHub
GitHub - RobertCraigie/prisma-client-py: Prisma Client Python is an auto-generated and fully type-safe database client designed…
Prisma Client Python is an auto-generated and fully type-safe database client designed for ease of use - RobertCraigie/prisma-client-py
Modal forms with Django+HTMX
This article describes the pattern I use to implement modal forms (i.e., forms in a modal dialog box) with Django and HTMX.
https://blog.benoitblanchon.fr/django-htmx-modal-form/
This article describes the pattern I use to implement modal forms (i.e., forms in a modal dialog box) with Django and HTMX.
https://blog.benoitblanchon.fr/django-htmx-modal-form/
Good Code Smell
Modal forms with Django+HTMX
In this article we’ll use Django and HTML how to implement a modal dialog containing a form with server side validation.
Enumerate from first principles
In this article, we will use Python to reimplement the built-in enumerate. We will start with a rough solution that doesn't really cut it, and we will rework it bit by bit until we have a full reimplementation of the built-in enumerate.
https://mathspp.com/blog/enumerate-from-first-principles
In this article, we will use Python to reimplement the built-in enumerate. We will start with a rough solution that doesn't really cut it, and we will rework it bit by bit until we have a full reimplementation of the built-in enumerate.
https://mathspp.com/blog/enumerate-from-first-principles
Mathspp
Enumerate from first principles
In this article we reimplement the built-in enumerate in the best way possible.
Data Races in Python, Despite the Global Interpreter Lock
https://verdagon.dev/blog/python-data-races
https://verdagon.dev/blog/python-data-races
Brownie: everything you need to know to write, test and deploy your smart contracts.
We’ll walk through and explore all the main areas of functionality and I'll give you some tricks you can use to make your development process more easy.
https://kevdevto.hashnode.dev/brownie-everything-you-need-to-know-to-write-test-and-deploy-your-smart-contracts
We’ll walk through and explore all the main areas of functionality and I'll give you some tricks you can use to make your development process more easy.
https://kevdevto.hashnode.dev/brownie-everything-you-need-to-know-to-write-test-and-deploy-your-smart-contracts
Kevin Bravo's Blog
Brownie: the python framework for smart contracts
We’ll walk through and explore all the main areas of functionality and I'll give you some tricks you can use to make your development process more easy.