8 Python Performance Tips I Discovered After Years of Coding
https://medium.com/@yaswanth.thod/8-python-performance-tips-i-discovered-after-years-of-coding-d46a0a942db9
https://medium.com/@yaswanth.thod/8-python-performance-tips-i-discovered-after-years-of-coding-d46a0a942db9
Medium
8 Python Performance Tips I Discovered After Years of Coding
Hey everyone! After spending many years with Python, I feel that I would share some performance tips that have saved me in many situations…
Stuck with circular imports? Use these methods to avoid them…
https://geekpython.medium.com/stuck-with-circular-imports-use-these-methods-to-avoid-them-0969f08a20d0
https://geekpython.medium.com/stuck-with-circular-imports-use-these-methods-to-avoid-them-0969f08a20d0
Medium
Stuck with circular imports? Use these methods to avoid them…
Have you ever come across circular imports in Python? Well, it’s a very common code smell that indicates something’s wrong with the design…
Made a Calculator to Solve the Problem of Peptide Fragments Caused by Missing Amino Acids
https://medium.com/@jaylanchunjaturtle/made-a-calculator-to-solve-the-problem-of-peptide-fragments-caused-by-missing-amino-acids-5615c0630ba4
https://medium.com/@jaylanchunjaturtle/made-a-calculator-to-solve-the-problem-of-peptide-fragments-caused-by-missing-amino-acids-5615c0630ba4
Medium
Made a Calculator to Solve the Problem of Peptide Fragments Caused by Missing Amino Acids
When chemists synthesize peptides, how do they identify unknown substances in mass spectra caused by the absence of one or more amino…
Exploratory Data Analysis (EDA) with Python and Pandas
https://medium.com/itversity/exploratory-data-analysis-eda-with-python-and-pandas-fc441616ffdc
https://medium.com/itversity/exploratory-data-analysis-eda-with-python-and-pandas-fc441616ffdc
Medium
Exploratory Data Analysis (EDA) with Python and Pandas
Uncover patterns and relationships in your data with essential EDA techniques using Python and Pandas to prepare for feature engineering…
Building Multimodal Video Retrieval Systems with VideoDB and LlamaIndex
https://medium.com/@LakshmiNarayana_U/building-multimodal-video-retrieval-systems-with-videodb-and-llamaindex-91587e3b9ff7
https://medium.com/@LakshmiNarayana_U/building-multimodal-video-retrieval-systems-with-videodb-and-llamaindex-91587e3b9ff7
Medium
Building Multimodal Video Retrieval Systems with VideoDB and LlamaIndex
Videos are inherently multimodal, presenting visual and audio content simultaneously to create a unified experience. Humans naturally use…
Python Lists and Tuples: A Deep Dive into Fundamental Data Structures
https://computer-info-1.medium.com/python-lists-and-tuples-a-deep-dive-into-fundamental-data-structures-7c333fa74650
https://computer-info-1.medium.com/python-lists-and-tuples-a-deep-dive-into-fundamental-data-structures-7c333fa74650
Medium
Python Lists and Tuples: A Deep Dive into Fundamental Data Structures
A theoretical exploration into the versatility of Python’s lists and tuples, complete with practical examples.
Understanding Types of Tests with Django (PART I)
https://medium.com/@ujjwalpuri221/understanding-types-of-tests-with-django-part-i-c33cc8a22d03
https://medium.com/@ujjwalpuri221/understanding-types-of-tests-with-django-part-i-c33cc8a22d03
Medium
Understanding Types of Tests with Django
A test is a piece of code that ensures whether other pieces of code within your project are behaving as they’re supposed to. It should also…
Essential Flask Extensions: Boosting Your Web Development Workflow
https://medium.com/top-python-libraries/essential-flask-extensions-boosting-your-web-development-workflow-15f9a50069e5
https://medium.com/top-python-libraries/essential-flask-extensions-boosting-your-web-development-workflow-15f9a50069e5
Medium
Essential Flask Extensions: Boosting Your Web Development Workflow
Boost your web development career
Enhancing Python Skills: Using `math` and Custom Modules for Advanced Functionality
https://computer-info-1.medium.com/enhancing-python-skills-using-math-and-custom-modules-for-advanced-functionality-a2b82005b64f
https://computer-info-1.medium.com/enhancing-python-skills-using-math-and-custom-modules-for-advanced-functionality-a2b82005b64f
Medium
Enhancing Python Skills: Using `math` and Custom Modules for Advanced Functionality
In this post, we dive deeper into Python programming by exploring how to use the built-in math module and custom modules for performing…
Exploring FastAPI 2024: Setting Up Your First FastAPI Project [Part 1/7]
https://medium.com/@mathur.danduprolu/exploring-fastapi-2024-setting-up-your-first-fastapi-project-part-1-7-7833d3f6616e
https://medium.com/@mathur.danduprolu/exploring-fastapi-2024-setting-up-your-first-fastapi-project-part-1-7-7833d3f6616e
Medium
Exploring FastAPI 2024: Setting Up Your First FastAPI Project [Part 1/7]
APIs are essential for modern applications, and with more software demanding high performance, FastAPI is quickly becoming a popular choice…
Running Your Own LLM: From Setup to Production (Part 2)
https://sarathm09.medium.com/running-your-own-llm-from-setup-to-production-part-2-44ebb17ee074
https://sarathm09.medium.com/running-your-own-llm-from-setup-to-production-part-2-44ebb17ee074
Medium
Running Your Own LLM: From Setup to Production (Part 2)
Fine-Tuning Your Local LLM for Specific Tasks
🎉 Build a Fun Facts Quiz App in Python (Step-by-Step Guide) 🎉
https://medium.com/@kuldeepkumawat195/build-a-fun-facts-quiz-app-in-python-step-by-step-guide-98acb06c8d2c
https://medium.com/@kuldeepkumawat195/build-a-fun-facts-quiz-app-in-python-step-by-step-guide-98acb06c8d2c
Medium
🎉 Build a Fun Facts Quiz App in Python (Step-by-Step Guide) 🎉
Introduction
Mastering Binary Search: An Efficient Algorithm for Finding Elements
https://medium.com/@18bhavyasharma/mastering-binary-search-an-efficient-algorithm-for-finding-elements-c248cb0033f5
https://medium.com/@18bhavyasharma/mastering-binary-search-an-efficient-algorithm-for-finding-elements-c248cb0033f5
Medium
Mastering Binary Search: An Efficient Algorithm for Finding Elements
Binary search is a fundamental algorithm used to efficiently locate a specific element within a sorted array. Unlike linear search, which…
Python Data Structures: Crafting a Singly Linked List with Essential Operations
https://medium.com/@18bhavyasharma/python-data-structures-crafting-a-singly-linked-list-with-essential-operations-25b3d40029d4
https://medium.com/@18bhavyasharma/python-data-structures-crafting-a-singly-linked-list-with-essential-operations-25b3d40029d4
Medium
Python Data Structures: Crafting a Singly Linked List with Essential Operations
A linked list is a linear data structure consisting of a sequence of elements where each element points to the next. Unlike arrays, linked…
Error when deploying Django/DRF backend on Google Cloud: No matching distribution found for…
https://medium.com/@fixitblog/error-when-deploying-django-drf-backend-on-google-cloud-no-matching-distribution-found-for-0b15b5000ffc
https://medium.com/@fixitblog/error-when-deploying-django-drf-backend-on-google-cloud-no-matching-distribution-found-for-0b15b5000ffc
Medium
Error when deploying Django/DRF backend on Google Cloud: No matching distribution found for…
I am trying to deploy my Django backend (using Django Rest Framework) on a Google Cloud VM instance. However, when I run pip install -r…
Web Development: An Essential Guide to Building Modern Website
https://malikfaizulhassan40175.medium.com/web-development-an-essential-guide-to-building-modern-website-800a69ce3c11
https://malikfaizulhassan40175.medium.com/web-development-an-essential-guide-to-building-modern-website-800a69ce3c11
Medium
Web Development: An Essential Guide to Building Modern Website
Concept of web devel
When Your Code Works (Silently) and Why That’s a Problem
https://medium.com/@toyoski/when-your-code-works-silently-and-why-thats-a-problem-d0a68c0da981
https://medium.com/@toyoski/when-your-code-works-silently-and-why-thats-a-problem-d0a68c0da981
Medium
When Your Code Works (Silently) and Why That’s a Problem
There’s a unique kind of satisfaction in seeing code run without throwing errors or warnings. But in that quiet success, there’s also a…
Comparison of Water Computing, DNA Computing, and Quantum Computing Using The Concept Of Non…
https://drraghavendra99.medium.com/comparison-of-water-computing-dna-computing-and-quantum-computing-using-the-concept-of-non-53b2ad691d94
https://drraghavendra99.medium.com/comparison-of-water-computing-dna-computing-and-quantum-computing-using-the-concept-of-non-53b2ad691d94
Medium
Comparison of Water Computing, DNA Computing, and Quantum Computing Using The Concept Of Non…
Abstract