Exploring the Power of Metaclasses in Python with NamespaceArchitect
https://yankz.medium.com/exploring-the-power-of-metaclasses-in-python-with-namespacearchitect-50131b2e83d7
https://yankz.medium.com/exploring-the-power-of-metaclasses-in-python-with-namespacearchitect-50131b2e83d7
Medium
Exploring the Power of Metaclasses in Python with NamespaceArchitect
What’s better than sex?
Working with Environments in Python — Simplified
https://gaurav-adarshi.medium.com/working-with-environments-in-python-simplified-3decb38576b5
https://gaurav-adarshi.medium.com/working-with-environments-in-python-simplified-3decb38576b5
Medium
Working with Environments in Python — Simplified
What Are Python Virtual Environments?
10 More Python Methods For Manipulating Strings
https://tateg.medium.com/10-more-python-methods-for-manipulating-strings-545f73211d37
https://tateg.medium.com/10-more-python-methods-for-manipulating-strings-545f73211d37
Medium
10 More Python Methods For Manipulating Strings
This week we’re going to take another journey through a handful of useful Python methods. These methods will arm you with the tools to…
Letterboxing in Yolov5, Yolov7, Yolov8 : an intuitive explanation with Python code
https://medium.com/@reachraktim/letterboxing-in-yolov5-yolov7-yolov8-an-intuitive-explanation-with-python-code-88f7d4323d6c
https://medium.com/@reachraktim/letterboxing-in-yolov5-yolov7-yolov8-an-intuitive-explanation-with-python-code-88f7d4323d6c
Medium
Letterboxing in Yolov5, Yolov7, Yolov8 : an intuitive explanation with Python code
Most common computer models like Yolov8, EfficientNet etc prefer a square sized input(e.g height=640, width=640). Most videos and images…
Generative AI: Develop LLM-powered applications with LangChain, Python, and Milvus (VectorDB) |…
https://medium.com/@rajatnigam89/generative-ai-develop-llm-powered-applications-with-langchain-python-and-milvus-vectordb-5b796c0c05e3
https://medium.com/@rajatnigam89/generative-ai-develop-llm-powered-applications-with-langchain-python-and-milvus-vectordb-5b796c0c05e3
Medium
Generative AI: Develop LLM-powered applications with LangChain, Python, and Milvus (VectorDB) | Part 1
In the ever-evolving landscape of artificial intelligence (AI), Generative AI is one of the most captivating frontiers. Generative AI…
Generative AI for autonomous vehicles: the Data Virtualization factor
https://medium.com/@massimiliano.fratini/generative-ai-for-autonomous-vehicles-the-data-virtualization-factor-a6fb2bbc15a6
https://medium.com/@massimiliano.fratini/generative-ai-for-autonomous-vehicles-the-data-virtualization-factor-a6fb2bbc15a6
Medium
Generative AI for autonomous vehicles: the Data Virtualization factor
Chapter 1
Python Powers the Giants: Famous Tech Companies Leveraging Python for Their Applications
https://medium.com/@pasinduanuhas/python-powers-the-giants-famous-tech-companies-leveraging-python-for-their-applications-ed5cfc96c920
https://medium.com/@pasinduanuhas/python-powers-the-giants-famous-tech-companies-leveraging-python-for-their-applications-ed5cfc96c920
Medium
Python Powers the Giants: Famous Tech Companies Leveraging Python for Their Applications
Python, the versatile and user-friendly programming language, has seen unprecedented growth in the tech industry. Its simplicity…
Build Your Own Automated Product Slogan Generator with Python
https://medium.com/@fauve-ish/build-your-own-automated-product-slogan-generator-with-python-38760ab52e7c
https://medium.com/@fauve-ish/build-your-own-automated-product-slogan-generator-with-python-38760ab52e7c
Medium
Build Your Own Automated Product Slogan Generator with Python
Do you want to create catchy slogans for your product or service?
Efficient k-Nearest Neighbors (k-NN) Solutions with NumPy
https://towardsdatascience.com/efficient-k-nearest-neighbors-k-nn-solutions-with-numpy-58cbac2a0971
https://towardsdatascience.com/efficient-k-nearest-neighbors-k-nn-solutions-with-numpy-58cbac2a0971
Medium
Efficient k-Nearest Neighbors (k-NN) Solutions with NumPy
Leveraging NumPy’s broadcasting, fancy Indexing, and sorting for performance computing
Exploring filter() in Python for Data Manipulation 🤓
https://medium.com/@HeCanThink/exploring-filter-in-python-for-data-manipulation-c0ef11160f4b
https://medium.com/@HeCanThink/exploring-filter-in-python-for-data-manipulation-c0ef11160f4b
Medium
Exploring filter() in Python for Data Manipulation 🤓
How can we use filter function work in Python?
Converting MOV to MP4 with Python —ChatGPT for Productivity
https://namofvietnam.medium.com/converting-mov-to-mp4-with-python-chatgpt-for-productivity-9bb61f1239de
https://namofvietnam.medium.com/converting-mov-to-mp4-with-python-chatgpt-for-productivity-9bb61f1239de
Medium
Converting MOV to MP4 with Python —ChatGPT for Productivity
Despite deepening myself in data analytics, for some odd reasons I was involved in a movie project, wherein I served as both a minor actor…
Unzip Multiple Zip Files with Python—ChatGPT for Productivity
https://namofvietnam.medium.com/unzip-multiple-zip-files-with-python-chatgpt-for-productivity-5413a9d1c4e3
https://namofvietnam.medium.com/unzip-multiple-zip-files-with-python-chatgpt-for-productivity-5413a9d1c4e3
Medium
Unzip Multiple Zip Files with Python—ChatGPT for Productivity
Initially learning Python mainly for data analytics purposes, I figured Python can automate daily tasks that are annoyingly repetitive…
THIS Makes Your Python Classes More READABLE
https://amir-tech.medium.com/this-makes-your-python-classes-more-readable-3a85e3cd75c5
https://amir-tech.medium.com/this-makes-your-python-classes-more-readable-3a85e3cd75c5
Medium
THIS Makes Your Python Classes More READABLE
In this example, we have a class called Fruit and we will initialize it with the name and the cost of the fruit. And it contains two methods: At the bottom, we create an instance and we call it…
The Right Way to Log in Python (Don’t Use Print)
https://medium.com/@estebanthi/the-right-way-to-log-in-python-dont-use-print-b16303200c6f
https://medium.com/@estebanthi/the-right-way-to-log-in-python-dont-use-print-b16303200c6f
Medium
The Right Way to Log in Python (Don’t Use Print)
There are tons of ways to log in Python. Until recently, I was still logging using print which is obviously a bad practice.