What is Jinja Templating in Django? A Comprehensive Guide for Beginners and Experts
https://medium.com/@solomongetachew112/what-is-jinja-templating-in-django-a-comprehensive-guide-for-beginners-and-experts-caf2906859a5
https://medium.com/@solomongetachew112/what-is-jinja-templating-in-django-a-comprehensive-guide-for-beginners-and-experts-caf2906859a5
Medium
What is Jinja Templating in Django? A Comprehensive Guide for Beginners and Experts
Learn How Jinja Templating Transforms Django Projects with Powerful Code Snippets and Real-World Applications
Building an ETL Data Pipeline with Python and SQL
https://levelup.gitconnected.com/building-an-etl-data-pipeline-with-python-and-sql-0dec63d5caef
https://levelup.gitconnected.com/building-an-etl-data-pipeline-with-python-and-sql-0dec63d5caef
Medium
Building an ETL Data Pipeline with Python and SQL
A first dive into data engineering for beginners
[SOLVED] what's the advantage of `NewType` over `TypeAlias`?
https://medium.com/@fixitblog/solved-what-39-s-the-advantage-of-newtype-over-typealias-a1fe82e3fabb
https://medium.com/@fixitblog/solved-what-39-s-the-advantage-of-newtype-over-typealias-a1fe82e3fabb
Medium
[SOLVED] what's the advantage of `NewType` over `TypeAlias`?
Now area(3, 5) won't type check, nor would area(Meter(3), Gram(5)), but area(Meter(3), Meter(5)) will. If you had defined Meter and Gram as mere type aliases, all three would type check. Basically, a…
Building a Simple Banking System Using Python OOP
https://medium.com/@jurajpuchky/building-a-simple-banking-system-using-python-oop-6ecec449c1a7
https://medium.com/@jurajpuchky/building-a-simple-banking-system-using-python-oop-6ecec449c1a7
Medium
Building a Simple Banking System in Python
Creating effective software solutions for routine matters has become more important than ever in our modern digital age. One of the most common systems is a banking application that handles users’…
Optimizing Data Processing in Python with NumPy
https://medium.com/@jurajpuchky/optimizing-data-processing-in-python-with-numpy-3de1c126ee3e
https://medium.com/@jurajpuchky/optimizing-data-processing-in-python-with-numpy-3de1c126ee3e
Medium
Leveraging NumPy for High-Performance Data Processing
When you process data, you often have to contend with large swaths of it that can easily slow down systems constructed with simple Python lists. That’s why we turn to NumPy, a powerful library in its…
Building a Todo List Application Using Python with Data Structures
https://medium.com/@jurajpuchky/building-a-todo-list-application-using-python-with-data-structures-98e0a0dd10d5
https://medium.com/@jurajpuchky/building-a-todo-list-application-using-python-with-data-structures-98e0a0dd10d5
Medium
Building a Todo List Application with Python
For beginners, a Todo List application is an excellent project to help them understand the practical application of programming concepts and data structures. In this guide, we will create a simple…
Understanding Neural Networks by Building One from Scratch: A Beginner’s Journey
https://medium.com/@pankajgoyal4152/understanding-neural-networks-by-building-one-from-scratch-a-beginners-journey-3a11617313a4
https://medium.com/@pankajgoyal4152/understanding-neural-networks-by-building-one-from-scratch-a-beginners-journey-3a11617313a4
Optimizing Numerical Computations in Python with Cython
https://medium.com/@jurajpuchky/optimizing-numerical-computations-in-python-with-cython-0f7c5ea5bd21
https://medium.com/@jurajpuchky/optimizing-numerical-computations-in-python-with-cython-0f7c5ea5bd21
Medium
Optimizing Numerical Computations with Cython
While people often extol Python’s virtues of simplicity and versatility, they sometimes forget to mention its limitations, particularly when it comes to numerical computations. Cython is a…
Optimizing Numeric Computations with Cython: A Step-by-Step Guide
https://medium.com/@jurajpuchky/optimizing-numeric-computations-with-cython-a-step-by-step-guide-764156a5c2f1
https://medium.com/@jurajpuchky/optimizing-numeric-computations-with-cython-a-step-by-step-guide-764156a5c2f1
Medium
Optimizing Python Performance with Cython
While many developers appreciate Python’s clear and concise syntax, they sometimes overlook the performance issues that arise when using it, particularly in numerically intense applications like…
Building a Data Processing Pipeline with Pandas and SQLite
https://medium.com/@jurajpuchky/building-a-data-processing-pipeline-with-pandas-and-sqlite-de6f14699257
https://medium.com/@jurajpuchky/building-a-data-processing-pipeline-with-pandas-and-sqlite-de6f14699257
Medium
Building a Simple Data Processing Pipeline with Python
In our contemporary world — driven by data — the pressures to sift through the sheer volume of it at breakneck speed and make intelligent…
Building a Personal Finance Tracker Using Python and AI
https://medium.com/@jurajpuchky/building-a-personal-finance-tracker-using-python-and-ai-7375b525100f
https://medium.com/@jurajpuchky/building-a-personal-finance-tracker-using-python-and-ai-7375b525100f
Medium
Navigating Personal Finances with Python
Today’s frenetic pace makes it difficult for everyone to tend to their personal finances — especially men and women of color, who have…
Building a Data Pipeline with Python and Apache Airflow
https://medium.com/@jurajpuchky/building-a-data-pipeline-with-python-and-apache-airflow-a904d614fa85
https://medium.com/@jurajpuchky/building-a-data-pipeline-with-python-and-apache-airflow-a904d614fa85
Medium
Understanding “The Cloud” and Building a Data Pipeline with Apache Airflow
In our modern world, people often speak of “the cloud,” which essentially offers a framework for the collective economies of scale. Services hosted on the internet allow individual users to store…
Python Learning Series: Detailed Day-Wise Guide
https://medium.com/@venkat.nsn/python-learning-series-detailed-day-wise-guide-bbbea92b8bed
https://medium.com/@venkat.nsn/python-learning-series-detailed-day-wise-guide-bbbea92b8bed
Medium
Python Learning Series: Detailed Day-Wise Guide
This outlines a 15-day series to learn Python programming from scratch, covering Python basics, data analysis, and machine learning…
Executing Shell Commands with Python
https://medium.com/@kuldeepkumawat195/executing-shell-commands-with-python-f0fb3892241f
https://medium.com/@kuldeepkumawat195/executing-shell-commands-with-python-f0fb3892241f
Medium
Executing Shell Commands with Python
There are different ways to run shell commands from Python, depending on your needs and preferences. Here are some of the most common…
How to Parse JSON Data with Python: A Comprehensive Guide
https://medium.com/@data-surge/how-to-parse-json-data-with-python-a-comprehensive-guide-7c3f638393ec
https://medium.com/@data-surge/how-to-parse-json-data-with-python-a-comprehensive-guide-7c3f638393ec
Medium
How to Parse JSON Data with Python: A Comprehensive Guide
JSON (JavaScript Object Notation) is a widely used format for exchanging data between a server and a client. Python offers powerful tools…
Top 5 Best Ides To Use For Python In 2024
https://medium.com/@keployio/top-5-best-ides-to-use-for-python-in-2024-dac80376003f
https://medium.com/@keployio/top-5-best-ides-to-use-for-python-in-2024-dac80376003f
Medium
Top 5 Best Ides To Use For Python In 2024
Introduction