min-dalle
min(DALL·E) is a fast, minimal implementation of DALL·E Mega in PyTorch.
https://github.com/kuprel/min-dalle
min(DALL·E) is a fast, minimal implementation of DALL·E Mega in PyTorch.
https://github.com/kuprel/min-dalle
GitHub
GitHub - kuprel/min-dalle: min(DALL·E) is a fast, minimal port of DALL·E Mini to PyTorch
min(DALL·E) is a fast, minimal port of DALL·E Mini to PyTorch - kuprel/min-dalle
Logging millions of requests reliably with our new data ingestion pipeline
An architectural overview of HackerEarth's request logging pipeline
http://engineering.hackerearth.com/2022/07/01/logging-millions-of-requests-reliably-with-our-new-data-ingestion-pipeline/
An architectural overview of HackerEarth's request logging pipeline
http://engineering.hackerearth.com/2022/07/01/logging-millions-of-requests-reliably-with-our-new-data-ingestion-pipeline/
HackerEarth
Logging millions of requests reliably with our new data ingestion pipeline
An architectural overview of our request logging pipeline
Python is the 2nd most demanded programming language in 2022
https://www.reddit.com/r/Python/comments/vtiz4o/python_is_the_2nd_most_demanded_programming/
https://www.reddit.com/r/Python/comments/vtiz4o/python_is_the_2nd_most_demanded_programming/
reddit
Python is the 2nd most demanded programming language in 2022
Posted in r/Python by u/__dacia__ • 827 points and 133 comments
SearXNG
SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled.
https://github.com/searxng/searxng
SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled.
https://github.com/searxng/searxng
GitHub
GitHub - searxng/searxng: SearXNG is a free internet metasearch engine which aggregates results from various search services and…
SearXNG is a free internet metasearch engine which aggregates results from various search services and databases. Users are neither tracked nor profiled. - searxng/searxng
How I made a dataclass remover
My journey creating a dataclass converter by using abstract syntax trees, match-case, the dedent utility and more. You may learn something new along the way.
https://www.pythonmorsels.com/making-a-dataclass-remover/
My journey creating a dataclass converter by using abstract syntax trees, match-case, the dedent utility and more. You may learn something new along the way.
https://www.pythonmorsels.com/making-a-dataclass-remover/
Pythonmorsels
How I made a dataclass remover
My journey creating a dataclass converter by using abstract syntax trees, match-case, the dedent utility and more. You may learn something new along the way.
Betty
An automatic differentiation library for generalized meta-learning and multilevel optimization.
https://github.com/leopard-ai/betty
An automatic differentiation library for generalized meta-learning and multilevel optimization.
https://github.com/leopard-ai/betty
GitHub
GitHub - leopard-ai/betty: Betty: an automatic differentiation library for generalized meta-learning and multilevel optimization
Betty: an automatic differentiation library for generalized meta-learning and multilevel optimization - leopard-ai/betty
A quick and dirty script to help me focus on my work
https://www.reddit.com/r/Python/comments/vwh6p3/a_quick_and_dirty_script_to_help_me_focus_on_my/
https://www.reddit.com/r/Python/comments/vwh6p3/a_quick_and_dirty_script_to_help_me_focus_on_my/
reddit
A quick and dirty script to help me focus on my work
import pygetwindow as pg import time import ctypes import winsound duration = 100 # milliseconds freq = 600 # Hz ...
5 Reasons Why You Should Use Type Hints In Python
Even though you don't see type hints all that often in Python code, and they'll probably never become obligatory, I still think you should use them. Here are 5 reasons why.
https://www.youtube.com/watch?v=dgBCEB2jVU0
Even though you don't see type hints all that often in Python code, and they'll probably never become obligatory, I still think you should use them. Here are 5 reasons why.
https://www.youtube.com/watch?v=dgBCEB2jVU0
YouTube
5 Reasons Why You Should Use Type Hints In Python
💡 Learn how to design great software in 7 steps: https://arjan.codes/designguide.
Even though you don't see type hints all that often in Python code, and they'll probably never become obligatory, I still think you should use them. Here are 5 reasons why.…
Even though you don't see type hints all that often in Python code, and they'll probably never become obligatory, I still think you should use them. Here are 5 reasons why.…
Forms in Django 4.0+
Prior to Django 4.0 forms were rendered by string concatenation. A number of 3rd party packages allowed for forms to be rendered as templates e.g. floppy forms, crispy-forms. Django 4.0 introduced the capability to render forms using the template engine. This allowed the form template to be set per form class or per instance if a template name is provided when calling render().
https://smithdc1.github.io/my-blog/2022/forms/forms.html
Prior to Django 4.0 forms were rendered by string concatenation. A number of 3rd party packages allowed for forms to be rendered as templates e.g. floppy forms, crispy-forms. Django 4.0 introduced the capability to render forms using the template engine. This allowed the form template to be set per form class or per instance if a template name is provided when calling render().
https://smithdc1.github.io/my-blog/2022/forms/forms.html
Python With: Using and Writing Context Managers in Python
https://codesolid.com/python-with-using-and-writing-context-managers-in-python/
https://codesolid.com/python-with-using-and-writing-context-managers-in-python/
CodeSolid.com - Python Learning Community
Python With: Using and Writing Context Managers in Python - CodeSolid.com
If you're an experienced programmer who started in Python, you're probably at least familiar with the basic uses of the with statement. The with statement in Python is an elegant way to manage resources, and is most famously implemented by Python's open function.…
How To Use Docker To Make Local Development A Breeze
Docker is a very powerful tool for developing applications that run in the cloud. If you want to get the most out of it, you need to make sure that the way you're running your code locally matches as closely as possible with how it runs in the cloud. This video shows you how to do this, using a simple API server in Python as an example.
https://www.youtube.com/watch?v=zkMRWDQV4Tg
Docker is a very powerful tool for developing applications that run in the cloud. If you want to get the most out of it, you need to make sure that the way you're running your code locally matches as closely as possible with how it runs in the cloud. This video shows you how to do this, using a simple API server in Python as an example.
https://www.youtube.com/watch?v=zkMRWDQV4Tg
YouTube
How To Use Docker To Make Local Development A Breeze
💡 Learn how to design great software in 7 steps: https://arjan.codes/designguide.
Today I'm going to show you how to get the most out of Docker, using a simple API server in Python as an example.
The code for this episode is available on GitHub: https:…
Today I'm going to show you how to get the most out of Docker, using a simple API server in Python as an example.
The code for this episode is available on GitHub: https:…
Learning Go as a Python Developer: The Good and the Bad
https://new.pythonforengineers.com/blog/learning-go-as-a-python-developer-the-good-the-bad-and-the-ugly/
https://new.pythonforengineers.com/blog/learning-go-as-a-python-developer-the-good-the-bad-and-the-ugly/
Python for Engineers
Learning Go as a Python Developer: The Good and The Bad
I've been thinking about supplementing another language to Python for some time
– mainly to cope with areas Python struggles with, or is a pain to use (which
I'll go over in a minute).
I had used C/C++ some years ago, but don't want to go back to them. C
– mainly to cope with areas Python struggles with, or is a pain to use (which
I'll go over in a minute).
I had used C/C++ some years ago, but don't want to go back to them. C
Evaluating Mechanical Keyboard Delivery Estimates with Python Web Scraping
Evaluating the accuracy of Novelkeys.com's delivery estimates using beautifulsoup and matplotlib.
https://wcedmisten.fyi/post/analyzing-keycap-estimates/
Evaluating the accuracy of Novelkeys.com's delivery estimates using beautifulsoup and matplotlib.
https://wcedmisten.fyi/post/analyzing-keycap-estimates/
grafana / oncall
Developer-friendly incident response with brilliant Slack integration
https://github.com/grafana/oncall
Developer-friendly incident response with brilliant Slack integration
https://github.com/grafana/oncall
GitHub
GitHub - grafana/oncall: Developer-friendly incident response with brilliant Slack integration
Developer-friendly incident response with brilliant Slack integration - grafana/oncall