Introducing Starlite
Starlite is a light, opinionated and flexible ASGI API framework built on top of pydantic and Starlette.
https://itnext.io/introducing-starlite-3928adaa19ae
Starlite is a light, opinionated and flexible ASGI API framework built on top of pydantic and Starlette.
https://itnext.io/introducing-starlite-3928adaa19ae
Medium
Introducing Starlite
I’m very excited to announce the release of Starlite — a new python asynchronous API framework (ASGI).
That time I optimized a program by 5000x
Using a more detailed profiler like Scalene can really help optimization efforts by locating inefficiencies in an actionable way.
https://emeryberger.medium.com/that-time-i-optimized-a-program-by-5000x-155cb8cfd9f9
Using a more detailed profiler like Scalene can really help optimization efforts by locating inefficiencies in an actionable way.
https://emeryberger.medium.com/that-time-i-optimized-a-program-by-5000x-155cb8cfd9f9
Medium
That time I optimized a program by 5000x
TL;DR I used our Scalene profiler and some math to make an example program run 5000x faster.
PaddlePaddle / PaddleSpeech
Easy-to-use Speech Toolkit including SOTA ASR pipeline, influential TTS with text frontend and End-to-End Speech Simultaneous Translation.
https://github.com/PaddlePaddle/PaddleSpeech
Easy-to-use Speech Toolkit including SOTA ASR pipeline, influential TTS with text frontend and End-to-End Speech Simultaneous Translation.
https://github.com/PaddlePaddle/PaddleSpeech
GitHub
GitHub - PaddlePaddle/PaddleSpeech: Easy-to-use Speech Toolkit including Self-Supervised Learning model, SOTA/Streaming ASR with…
Easy-to-use Speech Toolkit including Self-Supervised Learning model, SOTA/Streaming ASR with punctuation, Streaming TTS with text frontend, Speaker Verification System, End-to-End Speech Translatio...
ThreadPoolExecutor in Python: The Complete Guide
The ThreadPoolExecutor allows you to create and manage thread pools in Python. This guide provides a detailed and comprehensive review of the ThreadPoolExecutor in Python, including how it works, how to use it, common questions, and best practices.
https://superfastpython.com/threadpoolexecutor-in-python/
The ThreadPoolExecutor allows you to create and manage thread pools in Python. This guide provides a detailed and comprehensive review of the ThreadPoolExecutor in Python, including how it works, how to use it, common questions, and best practices.
https://superfastpython.com/threadpoolexecutor-in-python/
Super Fast Python
ThreadPoolExecutor in Python: The Complete Guide - Super Fast Python
Python ThreadPoolExecutor, your complete guide to thread pools and the ThreadPoolExecutor class for concurrent programming in Python.
Django / Tailwind Tutorial - Code a Netflix Clone
Improve your Django and Tailwind CSS skills by building a Netflix clone. The clone focuses on simulating the front end of Netflix.
https://www.youtube.com/watch?v=gbyYXgiSgdM
Improve your Django and Tailwind CSS skills by building a Netflix clone. The clone focuses on simulating the front end of Netflix.
https://www.youtube.com/watch?v=gbyYXgiSgdM
YouTube
Django / Tailwind Tutorial - Code a Netflix Clone
Improve your Django and Tailwind CSS skills by building a Netflix clone. The clone focuses on simulating the front end of Netflix.
✏️ Course from OtchereDev. Check out his channel: https://www.youtube.com/channel/UCTJo8aFy8GgPHrm-OT_lvNg
💻 Code: https:…
✏️ Course from OtchereDev. Check out his channel: https://www.youtube.com/channel/UCTJo8aFy8GgPHrm-OT_lvNg
💻 Code: https:…
A probabilistic programming language in 70 lines of Python
This post explains how Probabilistic Programming Languages (PPLs) work by showing step-by-step how to build a simple one in Python.
https://mrandri19.github.io/2022/01/12/a-PPL-in-70-lines-of-python.html
This post explains how Probabilistic Programming Languages (PPLs) work by showing step-by-step how to build a simple one in Python.
https://mrandri19.github.io/2022/01/12/a-PPL-in-70-lines-of-python.html
Home
A probabilistic programming language in 70 lines of Python
my blog
RAUDI
Automatically generate and keep updated a series of Docker images through GitHub Actions.
https://github.com/cybersecsi/RAUDI
Automatically generate and keep updated a series of Docker images through GitHub Actions.
https://github.com/cybersecsi/RAUDI
GitHub
GitHub - cybersecsi/RAUDI: A repo to automatically generate and keep updated a series of Docker images through GitHub Actions.
A repo to automatically generate and keep updated a series of Docker images through GitHub Actions. - cybersecsi/RAUDI
tplot
A library for creating text-based graphs in the terminal.
https://github.com/JeroenDelcour/tplot
A library for creating text-based graphs in the terminal.
https://github.com/JeroenDelcour/tplot
GitHub
GitHub - JeroenDelcour/tplot: A library for creating text-based graphs in the terminal
A library for creating text-based graphs in the terminal - GitHub - JeroenDelcour/tplot: A library for creating text-based graphs in the terminal
Ultimate Guide To Text Similarity With Python
In this article, you will learn about different similarity metrics and text embedding techniques. By the end, you'll have a good grasp of when to use what metrics and embedding techniques. You’ll also get to play around with them to help establish a general intuition.
https://newscatcherapi.com/blog/ultimate-guide-to-text-similarity-with-python
In this article, you will learn about different similarity metrics and text embedding techniques. By the end, you'll have a good grasp of when to use what metrics and embedding techniques. You’ll also get to play around with them to help establish a general intuition.
https://newscatcherapi.com/blog/ultimate-guide-to-text-similarity-with-python
Newscatcherapi
Ultimate Guide To Text Similarity With Python | NewsCatcher
Learn the different similarity measures and text embedding techniques. Play around with code examples and develop a general intuition.
Go Fast With Django
How do you make your Django app fast? You measure what is slow, scale your system when necessary, and use a combination of fast database queries and strategic caching. In this Understand Django article, we'll explore those topics and more to help you get a performant Django app.
https://www.mattlayman.com/understand-django/go-fast/
How do you make your Django app fast? You measure what is slow, scale your system when necessary, and use a combination of fast database queries and strategic caching. In this Understand Django article, we'll explore those topics and more to help you get a performant Django app.
https://www.mattlayman.com/understand-django/go-fast/
Matt Layman
Go Fast With Django
How do you make your Django app fast? You measure what is slow, scale your system when necessary, and use a combination of fast database queries and strategic caching. In this Understand Django article, we'll explore those topics and more to help you get…
Solving Wordle Puzzles with Basic Python
The Wordle puzzle game is deceptively simple - you get six tries to guess a five-letter English word, with hints if you get it wrong. Here’s how you can write an iterative solver that suggests words based on letter frequency and hints using nothing but pure Python.
https://www.inspiredpython.com/article/solving-wordle-puzzles-with-basic-python
The Wordle puzzle game is deceptively simple - you get six tries to guess a five-letter English word, with hints if you get it wrong. Here’s how you can write an iterative solver that suggests words based on letter frequency and hints using nothing but pure Python.
https://www.inspiredpython.com/article/solving-wordle-puzzles-with-basic-python
Inspiredpython
Solving Wordle Puzzles with Basic Python
The Wordle puzzle game is deceptively simple - you get six tries to guess a five-letter English word, with hints if you get it wrong. Here’s how you can write an iterative solver that suggests words based on letter frequency and hints using nothing but pure…
kedro-org / kedro
A Python framework for creating reproducible, maintainable and modular data science code.
https://github.com/kedro-org/kedro
A Python framework for creating reproducible, maintainable and modular data science code.
https://github.com/kedro-org/kedro
GitHub
GitHub - kedro-org/kedro: Kedro is a toolbox for production-ready data science. It uses software engineering best practices to…
Kedro is a toolbox for production-ready data science. It uses software engineering best practices to help you create data engineering and data science pipelines that are reproducible, maintainable,...
Computer Vision and Perception for Self-Driving Cars
Learn about Computer Vision and Perception for Self Driving Cars. This series focuses on the different tasks that a Self Driving Car Perception unit would be required to do.
https://www.youtube.com/watch?v=cPOtULagNnI
Learn about Computer Vision and Perception for Self Driving Cars. This series focuses on the different tasks that a Self Driving Car Perception unit would be required to do.
https://www.youtube.com/watch?v=cPOtULagNnI
YouTube
Computer Vision and Perception for Self-Driving Cars (Deep Learning Course)
Learn about Computer Vision and Perception for Self Driving Cars. This series focuses on the different tasks that a Self Driving Car Perception unit would be required to do.
✏️ Course by Robotics with Sakshay. https://www.youtube.com/channel/UC57lEMTXZzXYu_y0FKdW6xA…
✏️ Course by Robotics with Sakshay. https://www.youtube.com/channel/UC57lEMTXZzXYu_y0FKdW6xA…