Table of Contents


#PyCoders

Issue #661 – Sentiment Analysis, Topological Sort, Web Security, and More

By | Dec 24, 2024



#testdriven.io

Deploying a Django App to AWS ECS with AWS Copilot

Deploy a Django app to AWS ECS with AWS Copilot.
#AWS #DevOps #Django #Docker
By Nik Tomazic | Dec 28, 2024



#Python Library

An Intro to pre-commit

You can use many great tools to help you in your software development journey. One such tool is pre-commit, a framework for managing and maintaining multi-language pre-commit hooks. You use pre-commit to run one or more tools before allowing you to commit your code locally. For example, you might run the Flake8 linter or the Ruff formatter […]
#beginner #Python
By Mike | Dec 23, 2024



#Adam Johnson – Blogs

Django: Fail in templates with

Previously, I covered using 1/0 to crash Python within minimal typing, useful to quickly answer questions like “does the code even get here?”. Recently, I wanted to do the same in Django templates, to trace if a given template was even being rendered, and under which code paths.
By Adam Johnson | Dec 27, 2024



#Hashnode

🚀 Mastering Python's Method Resolution Order (MRO): Why It Matters 🐍

Understanding Method Resolution Order (MRO) is like unlocking a superpower in Python! 🦸‍♂️🐍 Whether you're tackling complex multiple inheritance or keeping it simple, MRO ensures consistency ✅ and predictability 🔄 in your code. Let’s dive into why…
By TARPARA KAUSHAL | Dec 23, 2024


Revising NumPy: A Cheatsheet

Introduction to NumPy
NumPy is a powerful Python library for numerical computing. It simplifies numerical computations by performing efficient operations on large multidimensional arrays and matrices.
Say goodbye to slow loops and hello to blazing sp…
By Arjun Singh | Dec 23, 2024


Implementing Reddit Auth for Flask App

Every year we organize a Gift Exchange event at r/IndiaSocial just before Christmas. It's our version of Secret Santa. We have been organizing this even for the past 4 years, last year I thought we should get it more streamlined and so created an app…
By Rajtilak Bhattacharjee | Dec 23, 2024


Revising Pandas: A Cheatsheet

Getting Started with Pandas
Pandas is a powerful Python library for data manipulation and analysis. Pandas is your gateway to managing data effectively. First step: bring it to your project.
It’s like Excel, but smarter and much less likely to crash …
By Arjun Singh | Dec 23, 2024


Allez plus loin avec python

Introduction
Cette collection de scripts Python propose des solutions pratiques pour des tâches variées, allant de la gestion de fichiers multimédias à l'interaction avec des APIs, en passant par des outils de surveillance ou d'analyse. L'objectif pr…
By Fabrice Sangwa | Dec 23, 2024


[Python] Leveraging __name__ for Efficient Python Module Organization

Introduction
If you have used python before, you may have seen a code snippet like this:
if __name__ == '__main__':
# do something

This code is so simple and short, but do you fully understand what it means, and why it is so important to avoid e…
By Lim Woojae | Dec 23, 2024


Mastering Literals in Python Programming: A Complete Guide with Practical Examples

Introduction:
In Python, literals are fixed values that can be assigned to variables or constants in the code. These values can be of various types, including strings, numbers, or boolean values. Literals are fundamental to Python programming, allowi…
By Subbu Tech Tutorials | Dec 23, 2024


Introduction to Object-Oriented Programming (OOP) in Python ✨⚙️

At first, I will start a series to explain OOP in Python. 🔧
What is Object-Oriented Programming? 📗💡⚖️
Object-Oriented Programming (OOP) is a programming paradigm that organizes code around objects rather than functions and logic. Objects represent…
By Mohamed Ibrahim | Dec 24, 2024


Utility for Data Reconciliation: Comparing Table Extracts and Files

In data reconciliation projects, it's crucial to ensure the integrity and consistency of data between various sources. To address this need, I have developed a Python utility that compares extracts from tables and files. This utility simplifies the p…
By Vipin | Dec 24, 2024


Python Project: Building a Weather Forecast Application Using APIs

Introduction:

In this article, I’ll walk you through a Python project to fetch the 5-day weather forecast for any city using the OpenWeatherMap API. This project showcases how to fetch and handle real-time data from an external API, process it, and …
By Sheikh Abdul Wahid | Dec 24, 2024


MobileNet Explained: A Slim and Efficient CNN Model

Overview
The paper “MobileNet: Efficient Convolutional Neural Network for Mobile Vision Application” authored by Andrew G. Howard, Menglong Zhu, and others in 2017, introduces a new approach for convolutional neural network which is more efficient an…
By Fadhil Elrizanda | Dec 24, 2024


R vs. Python: Which Language Is Best for Data Science?

1. Overview
Data science has transformed sectors by facilitating data-driven decision-making through insights gained from massive volumes of data. Programming languages that enable data scientists to efficiently manage, analyze, and visualize data ar…
By Lucy | Dec 24, 2024


Learning to Build ResNet for Intel Scene Classification from Scratch

Overview
This dataset is scene classification dataset that published by Intel. This dataset also used in previous implementation. Dataset consist of 6 class that consist of difference categories like buildings, forest, glacier, mountain, sea, and str…
By Fadhil Elrizanda | Dec 24, 2024


UV: A Faster, More Efficient Python Package Manager

Python, a versatile and widely-used programming language, relies heavily on external packages to extend its functionality and provide developers with powerful tools for various tasks. Managing these packages efficiently is crucial for smooth developm…
By Torque | Dec 24, 2024


Day-17 of #90DaysOfDevOps

Docker Project for DevOps Engineers
Welcome to Day 17 of the #90DaysOfDevOps challenge! Today, we dive into an exciting hands-on project to showcase Docker’s capabilities. We will work with two applications: a Django Notes App and a Node.js To-Do App…
By Amitabh soni | Dec 24, 2024


Checking if a Binary Tree is Balanced : Leetcode Solution

Introduction
In computer science, a balanced binary tree is a tree where the height difference between the left and right subtrees of any node is at most 1. This property ensures optimal performance for tree operations like search, insert, and delete…
By VISHWANATH T S | Dec 24, 2024


Use data contracts to automate data workflows – part 1

Preface 📚
I’ve actually written a post on data contracts before, so have a quick scan here if you want to see a project I created on them using Python, AWS S3 and other libraries (like Selenium and Soda).
What is a contract? 🤔
Let’s first talk abou…
By Stephen David-Williams | Dec 24, 2024


Python

Python Modules

A file with reusable Python code (functions, classes, variables).

Example: math or custom .py files.

Python Package

A folder with related modules, including an __init__.py file.

Example: numpy or custom module directories.

Pyth…
By KALPESH MOHANTA | Dec 24, 2024


…And This Is How I Fired Myself

Picture This: Founders, a reporting manager, and a team of 40+ people, all relying on daily reports and data sheets manually prepared by running complex SQL queries. Some queries took over a minute to execute, clogging the database and slowing down d…
By Mohan Dubey | Dec 24, 2024


Understanding Multi-Agent System Architecture

A multi-agent architecture consists of multiple agents working together to solve a problem or accomplish a task.
Types of Multi-Agent Architectures:

Centralized: One central controller coordinates the activities of the agents.

Decentralized: No cen…
By Sarvottam Bhagat | Dec 24, 2024


How to Scrape Google Trends Data With Python?

What Is Google Trends?
Google Trends is a free online tool provided by Google that analyzes the popularity of specific keywords or search terms in the Google search engine over time.
It presents data in the form of charts to help users understand the…
By Scraper0024 | Dec 25, 2024


The Backend Horizon: Your Guide to Mastering Modern Backend Development

Category 1: Foundations of Backend Development
1.1 Understanding Backend Basics

"What is Backend Development?"

Definition, key responsibilities, and how it differs from frontend.

"The History of Backend Development"

Evolution from traditional se…
By haseeb sajjad | Dec 25, 2024


[CS Fundamentals] Demystifying Variable Scope: Best Practices and Common Pitfalls with Python

Introduction
In computer science, it is so important to fully understand a variable scope as you may face many errors without knowing how they work or your program prints an unexpected output. This article will deeply explain about local, global vari…
By Lim Woojae | Dec 25, 2024


Kickstarting Your Coding Adventure

This article will guide you through the initial steps of your coding career, including how to learn programming languages. Before delving into the best learning resources, we'll clarify some essential terminology that may initially seem confusing.
Co…
By John Nabil | Dec 25, 2024


Introduction 101

Coding Journey
When starting to learn coding, beginners often have access to abundant resources but need guidance on where to begin, the best learning path to follow, how to keep improving, practicing effectively, and ultimately deciding on a career …
By John Nabil | Dec 25, 2024


Detecting Fake News using Machine Learning: A Step-by-Step Guide

Introduction
The digital age has brought with it an explosion of information, making it easier than ever to share news and opinions. However, this has also led to the proliferation of fake news—misleading or completely false information often designe…
By Yash Singhal | Dec 25, 2024


What I learned about PyPi from maintaining an Open-Source Package

Last month, I published a package on PyPi – TezzCrawler – a simple CLI tool to convert any website to LLM ready draft for building a RAG capabilities on any website. What spiraled next, was hundreds of hours of analysis on how PyPi works and what hap…
By Japkeerat Singh | Dec 26, 2024


Python inner working

Python is a high-level programming language known for its simplicity, readability, and versatility. But have you ever wondered what happens under the hood when you run a Python program? Let’s break down the process into its key components and underst…
By Vaidik Parashar | Dec 26, 2024


How to effectively work with Databases in Python

Introduction
The age-old debate on the use of Raw SQL v/s ORM is still very much alive in today’s world. Let’s see some of the comparing points

AspectRaw SQLORM (Object-Relational Mapping)

Ease of UseRequires knowledge of SQL syntax and databa…
By Akash Desarda | Dec 26, 2024


How To Write Pull Requests That Make Code Review Effortless

In software development, Version Control Systems (VCS) are a way for developers to share their work with their team and other collaborators and also control versions of built software. Pull requests (PRs) are a key ingredients in VCS that allow devel…
By Joseph Abraham | Dec 26, 2024


2024 Tech Year in Review: From AI Revolution to Quantum Leaps

Hey there, fellow tech enthusiasts! As we are almost at the end of 2024, I wanted to take a moment to share my thoughts on what's been an absolutely incredible year in technology. As a software developer and tech blogger (I was a blogger not too long…
By Ivan | Dec 27, 2024


Inheritance in Python

The process of inheriting the properties of one class to another class is called inheritance.

The existing class is called a base class or parent class, and the new class is called a subclass or child class or derived class.
In this Python lesson, y…
By Anubhav Kumar Gupta | Dec 27, 2024


How Companies Utilize RAG to Unlock Private Data with LLMs

In today's knowledge-driven business world, organizations face a common challenge: making their large collection of internal knowledge easy to access and use. This guide explains how to set up a Retrieval-Augmented Generation (RAG) system to change h…
By Sarvottam Bhagat | Dec 27, 2024


Why I Chose Python for Machine Learning?

I am going to start learning machine learning, and the first question that arose in my mind is this: since it is a part of computer science, there must be some programming language used. We all know that the language used for machine learning or any …
By Diary of Code Curiosity | Dec 28, 2024


A Step-by-Step Guide to Django’s User Authentication System

What is Django, and Why Use Its Authentication System?
Overview of Django as a Framework
Django is a powerful web framework written in Python that simplifies building modern web applications. It’s like a toolbox that gives you ready-made tools to han…
By Mohit Bhatt | Dec 28, 2024


Setting Up an ETL Workflow with Apache Airflow to Analyze E-Commerce Sales Data

In the data-driven world of e-commerce, analyzing sales data is crucial for making informed business decisions. Apache Airflow, a powerful open-source platform, allows you to automate and orchestrate complex workflows. In this blog, we'll guide you t…
By Vipin | Dec 29, 2024


Accessing PostgreSQL Using pgAdmin with a Dockerized Apache Airflow Setup

In this blog, i will guide you through the process of accessing your PostgreSQL database using pgAdmin in a Dockerized Apache Airflow setup. pgAdmin is a powerful and user-friendly tool that allows you to manage and interact with your PostgreSQL data…
By Vipin | Dec 29, 2024


What is DevOps ? An Introduction to Modern Software Development

What is DevOps? An Introduction to Modern Software Development
In the fast-paced world of software development, the need for efficient, reliable, and rapid delivery of software has never been more crucial. Enter DevOps – a transformative approach tha…
By Mayur Dalimbkar | Dec 28, 2024


Open Source Alternatives to AWS CodeGuru

Introduction
In today's fast-paced software development landscape, code quality and security are non-negotiable. While AWS CodeGuru offers impressive capabilities for automated code reviews and security analysis, its cost structure and AWS-centric na…
By Nikhil Akki | Dec 28, 2024


Working with Docker Volumes

Working with Docker Volumes
Docker volumes are a powerful feature that allows you to persist and manage data in your containers. Whether you are running a simple application or deploying complex microservices, understanding Docker volumes is essentia…
By Surya Prakash Chakrawarti | Dec 28, 2024


Building Responsible AI Agents: Balancing Innovation and Ethics

Artificial Intelligence (AI) is transforming industries, with autonomous AI agents like Salesforce’s AgentForce and open-source tools like AutoGPT leading the charge. These agents automate complex tasks, collaborate with other systems, and enhance pr…
By Chidozie Managwu | Dec 28, 2024


My Python Learning Journey: Week 6 – Steps I Took, Problems I Faced, and How I Solved Them.

Hey everyone, in this week, I learned about the following Python concepts:

Virtual Environment (Installation and pip freeze command)

Lambda Functions

String Methods (join and format)

Functional Programming with map, filter, and reduce

These ar…
By Sheikh Abdul Wahid | Dec 28, 2024


Top Programming Languages on GitHub in 2024

As we saunter into 2025, let’s take a moment to reflect on the programming languages that ruled the roost on GitHub in 2024. Whether you’re a coding ninja or just someone who accidentally opened a terminal, knowing which languages are hot can help yo…
By Himanshu Yadav | Dec 29, 2024


Taming the Textual Beast: Effective Chunking Strategies for Retrieval-Augmented Generation

Retrieval-Augmented Generation (RAG) has emerged as a powerful technique for building sophisticated question-answering systems and advanced chatbots. By grounding generated text in a reliable knowledge base, RAG systems offer improved factual accurac…
By Sylvester Das | Dec 29, 2024


Spice must visualize

So, apparently, melange from Dune had increased the lifespan of its consumers. And I wanted to practice data gathering and visualization in Python…

Presumably, spice consumption should mitigate cancer rates and mortality. Couldn’t help but get some …
By Zakhar Kogan | Dec 29, 2024


A week in python – #1

As 2025 approaches, I’m diving into the world of 𝐌𝐚𝐜𝐡𝐢𝐧𝐞 𝐋𝐞𝐚𝐫𝐧𝐢𝐧𝐠 𝐚𝐧𝐝 𝐀𝐫𝐭𝐢𝐟𝐢𝐜𝐢𝐚𝐥 𝐈𝐧𝐭𝐞𝐥𝐥𝐢𝐠𝐞𝐧𝐜𝐞, and there’s no better way to begin this journey than mastering Python! This week, I focused on building a solid fou…
By Abrar Mahmud Hasan | Dec 29, 2024


How to Perfectly Manage Python Virtual Environments with Pyenv and Direnv

Managing multiple Python virtual environments (venvs) effectively is a game-changer for any developer. Whether you're juggling multiple projects, need specific Python versions, or just want a smooth workflow without the hassle of manual environment a…
By ZamaaN | Dec 29, 2024


How Python Manages Memory: A Simple Introduction

The Basics
Python manages memory using a private heap space. When a program runs, Python first allocates a small portion of memory for itself. This is where all the program's data structures are stored. Python uses references and garbage collection t…
By Ropali Munshi | Dec 29, 2024



#Dev.to

Advent of Code 2024 – Day 21: Keypad Conundrum

#python #adventofcode
By Grant Riordan | Dec 23, 2024


Supercharge Your API Performance with Asynchronous Programming in FastAPI

#webdev #tutorial #fastapi #python
By FOLASAYO SAMUEL OLAYEMI | Dec 23, 2024


lowCalAlt_update 6

#database #fullstack #python #programming
By Kazi Priom | Dec 23, 2024


Weekend Coding: Turn PDF Payslips Into a Single CSV Report

#python #programming #beginners #sideprojects
By Cup of Code | Dec 23, 2024


Building a Dynamic Todo App with FastAPI and HTMX

#htmx #fastapi #javascript #python
By Bek Brace | Dec 23, 2024


Concurrency Patterns: Active Object

#python #designpatterns #performance
By Yasir Jafri | Dec 23, 2024


Python Tutorial – 3 Data Structure

#python #tutorial #beginners
By nadirbasalamah | Dec 23, 2024


Data types in python

#python #programming #learning
By Aadarsh Ancha | Dec 23, 2024


🐍🎉 Fun and Comprehensive Guide to Installing and Setting Up Anaconda, AIMA Python, and Jupyter Notebook! 🎓📒

#python #ai #algorithms
By Ayedoun Châ-Fine ADEBI | Dec 23, 2024


Django Deployment : Serving Static files with Nginx and Gunicorn

#webdev #django #ngnix #gunicorn
By Ajit Kumar | Dec 23, 2024


My Problem Solving Experience

#beginners #python #productivity #learning
By Karthika Movva | Dec 23, 2024


Ways to Solve a Problem

#beginners #python #productivity #learning
By Karthika Movva | Dec 23, 2024


Exploratory Data Analysis: Digging Through the Backlog

#webdev #python #machinelearning #datascience
By es404020 | Dec 23, 2024


Deploying Azure Functions with Python: A Step-by-Step Guide

#webdev #azure #python #programming
By Edgaras | Dec 23, 2024


WSGI vs ASGI: The Crucial Decision Shaping Your Web App’s Future in 2025

#webdev #python #flask #fastapi
By Leapcell | Dec 23, 2024


Mastering Pytest Monkeypatch: Simplify Your Testing

#python #testing #pytest #fixture
By mohamed abd elwahab ali | Dec 23, 2024


Web scraping and analysing foreign languages data

#python #pandas #analysis #webscraping
By Gabriel Rowan | Dec 23, 2024


What is base64 string in Python?

#base64 #base64string #python #programming
By Muhammad Atif Iqbal | Dec 23, 2024


How Much Automation is Too Much Automation in ETL

#aws #automation #data #python
By Divyansh patel | Dec 23, 2024


How to Build Flexible Data Models in Django with JSONField and Pydantic

#django #python #webdev
By Daniel Olah | Dec 24, 2024


Deep Dive into Microsoft MarkItDown

#webdev #python #markdown #opensource
By Leapcell | Dec 23, 2024


Big Discovery – lowCalAlt_update 7

#database #postgres #python #softwaredevelopment
By Kazi Priom | Dec 24, 2024


What I learned in Quantum Computing this year (as a Junior Engineer)

#quantum #quantumcomputing #julialang #python
By imtarajones | Dec 24, 2024


Counting Tokens: Sorting Through the Details

#webdev #llm #python
By es404020 | Dec 24, 2024


RandomRotation in PyTorch

#python #pytorch #randomrotation #v2
By Super Kai (Kazuya Ito) | Dec 24, 2024


Merge PDFs Recursively Using Python

#pdf #python #pypdf2
By abbazs | Dec 24, 2024


Building a Secure Authentication System for CollabSphere Part 2: A Real-Time Communication Platform

#webdev #python #django #programming
By kihuni | Dec 24, 2024


Python Day-27 Tuples, Set : Methods,Examples,Tasks

#payilagam #python #tuples #set
By Guru prasanna | Dec 24, 2024


How to Create a Database and Always Connect to It in PostgreSQL Without Needing Superuser Access

#webdev #python #tortoiseorm #postgressql
By FOLASAYO SAMUEL OLAYEMI | Dec 24, 2024


Python Day 1

#python #pythonbasics
By Poornima Ravi | Dec 24, 2024


Master Django Basics in Just 26 Minutes: A Beginner-Friendly Tutorial

#python #django #webdev #backenddevelopment
By NJOKU SAMSON EBERE | Dec 24, 2024


Building REST API Endpoints with Django REST Framework: A Step-by-Step Guide

#python #django #restapi #tutorial
By NJOKU SAMSON EBERE | Dec 24, 2024


Create Your Own Personalised AWS Learning Experience with Streamlit

#aws #opensource #datascience #python
By omar-steam | Dec 24, 2024


Go Routines vs Threads: What’s the Difference and When to Use Them?

#go #python #goroutines
By Sajo Sam | Dec 24, 2024


Python: what is it? and why is it one of the best languages?

#python #programming #coding #computerscience
By Samita Khanduri | Dec 24, 2024


Synthetic Testing: WTH Is It?

#webdev #testing #python #playwright
By Leapcell | Dec 25, 2024


Concurrency Patterns: Balking Pattern

#python #java #designpatterns
By Yasir Jafri | Dec 25, 2024


Advent of Code 2024 – Day 22: Monkey Market

#python #adventofcode
By Grant Riordan | Dec 24, 2024


ImageNet in PyTorch

#python #pytorch #imagenet #dataset
By Super Kai (Kazuya Ito) | Dec 25, 2024


From Idea to Code: How I Built a Python Text Editor

#python #opensource #softwaredevelopment #software
By Juraj K. | Dec 25, 2024


Best open source Image to Video CogVideoX1.5-5B-I2V is pretty decent and optimized for low VRAM

#beginners #tutorial #ai #python
By Furkan Gözükara | Dec 25, 2024


Advanced Perspectives on Multiprocessing and Task Queueing in Distributed Architectures

#distributedsystems #cloud #python #productivity
By avdhoot patil | Dec 25, 2024


Advanced Perspectives on Multiprocessing and Task Queueing in Distributed Architectures

#distributedsystems #cloud #python #productivity
By avdhoot patil | Dec 25, 2024


How to Scrape Google Trends Data With Python?

#google #webscraping #python
By Scraper0024 | Dec 25, 2024


How to Scrape Google Trends Data With Python?

#google #webscraping #python
By Scraper0024 | Dec 25, 2024


Django Forms From Model Tutorial: Build a Complete CRUD Application

#python #django #beginners #tutorial
By NJOKU SAMSON EBERE | Dec 25, 2024


Django CRUD Application Tutorial | Step-by-Step Guide to Master Create, Read, Update, Delete

#webdev #python #django #tutorial
By NJOKU SAMSON EBERE | Dec 25, 2024


Mastering Try-Except Blocks in Django: Simplified Python Error Handling

#python #django #tutorial #beginners
By NJOKU SAMSON EBERE | Dec 25, 2024


Basics of Python in 1 minute

#python #webdev #datascience #numpy
By Mehfila A Parkkulthil | Dec 25, 2024


Step-by-Step Guide to User Authentication with Django, Djoser, and JWT: Part I

#webdev #django #python #backenddevelopment
By Folafolu Osilaja | Dec 25, 2024


Deply: keep your python architecture clean

#python #architecture
By Archil | Dec 25, 2024


How to encourage developers to fix Python warnings for deprecated features

#python #pytest
By Ines | Dec 25, 2024


AI Coding Agents that run and test the code

#ai #python #programming #startup
By Dror Wayne | Dec 25, 2024


От слоистой архитектуры к DDD. Мой опыт миграции и распила монолита

#ddd #python #architecture #microservices
By dmkjfs | Dec 25, 2024


Is Flask Dead? Is FastAPI the Future?

#python #flask #fastapi #django
By Leapcell | Dec 25, 2024


5 Powerful Python Generator Techniques for Efficient Big Data Processing

#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 25, 2024


Mastering Quick Sort: A Fundamental Algorithm in Computer Science

#python #algorithms #programming #beginners
By Piyush Chauhan | Dec 25, 2024


Master Python Debugging: 10 Expert Techniques for Efficient Code Troubleshooting

#programming #devto #python #softwareengineering
By Aarav Joshi | Dec 25, 2024


Important Elements of System Design and Things to Keep in Mind

#webdev #programming #python #softwaredevelopment
By Noureldin Farag | Dec 25, 2024


Set up Anaconda on Ubuntu 22.04 in Minutes: Simplify Your AI Workflow

#python #ai #datascience #anaconda
By Aditi Bindal | Dec 25, 2024


🎗️Breast Cancer Prediction with Decision Trees

#machinelearning #python #github #datascience
By Pragyan Tiwari | Dec 26, 2024


Futuristic AI

#ai #python
By Hick Lee | Dec 26, 2024


Advent of Code 2024 – Day 23: LAN Party

#python #adventofcode
By Grant Riordan | Dec 26, 2024


🌟 Speech Assistant: AI-Powered Audio-to-Text & MoM Generator

#python #openai #product
By Ramandeep Singh | Dec 26, 2024


Annotating Functions in Python

#python #datascience #webdev #ai
By Ezekiel | Dec 26, 2024


Kafka protocol practical guide

#kafka #python #programming
By Ivan Yurchenko | Dec 26, 2024


Function naming rules in Python

#python #programming #coding #webdev
By zehra hindioğlu | Dec 26, 2024


Hosting multiple Websites on a single Nginx Server

#webdev #django #linodehackathon #nginx
By Korir Moses | Dec 26, 2024


The Best Programming Languages to Learn in 2025

#learning #python #programming #beginners
By Trix Cyrus | Dec 26, 2024


In my Problem Solving Journey

#beginners #python #productivity #learning
By Karthika Movva | Dec 26, 2024


Handling Unmanaged Models in Pytest-Django

#django #pytest #python #test
By Sandeep Rawat | Dec 26, 2024


Creating Breathtaking Panoramas Made Simple

#softwaredevelopment #javascript #python #discuss
By RAM | Dec 26, 2024


Python Strings: Exploring string manipulation methods

#python #programming #coding #computerscience
By Samita Khanduri | Dec 26, 2024


Exploring the World of Python Programming

#python #datascience #beginners
By Shantanu | Dec 26, 2024


Understanding Python Terminology: Module, Package, Library, and Framework

#python #module #pip #django
By Mubarak Mohamed | Dec 26, 2024


IRIS-RAG-Gen: Personalizing ChatGPT RAG Application Powered by IRIS Vector Search

#sql #chatgpt #python #gpt3
By InterSystems Developer | Dec 26, 2024


Rivian GeoLocation Plotting with IRIS Cloud Document and Databricks

#python #cloud #couchbase #programming
By InterSystems Developer | Dec 26, 2024


Project Mata Kuliah Artificial Intelligence - Face Expression Recognition

#ai #cnn #python
By Heaven Aulianisa Pambudi Putri | Dec 26, 2024


15+ Useful PYTHON Libraries for Data Science

#python #datascience #kaggle
By Just Determined | Dec 26, 2024


Implémentation de vérification de numéro de téléphone dans un projet drf

#django #python #twilio
By Dominique Megnidro | Dec 26, 2024


Integrate React into Django Seamlessly with the reactify-django CLI

#django #react #javascript #tailwindcss
By Victor Kimani | Dec 26, 2024


The Secret Behind FastAPI’s Speed

#python #fastapi #beginners
By Leapcell | Dec 27, 2024


ColorJitter in PyTorch

#python #pytorch #colorjitter #v2
By Super Kai (Kazuya Ito) | Dec 27, 2024


Python While Loop Examples

#python #whileloop #payilagam #day3
By Poornima Ravi | Dec 27, 2024


Creating Stripe Test Data in Python

#stripe #python #dataengineering #airbyte
By Quinton | Dec 27, 2024


Deployment of Predictive Maintenance Aircraft Engine System

#aircraft #predictive #devops #python
By Ekemini Thompson | Dec 27, 2024


Python day-28 Dictionary, Frequency of character using nested loops

#payilagam #python #dictionary #string
By Guru prasanna | Dec 27, 2024


Scraping Data with DevTools and HAR Files

#python #webdev #data #blinkit
By DivyanshuLohani | Dec 27, 2024


Entry-Level Bing Wallpaper Scraper

#python #scraper #bing #wallpaper
By Excalibra | Dec 27, 2024


When Machines Get Smart

#machinelearning #ai #programming #python
By Valt aoi | Dec 27, 2024


Master Tortoise ORM & PostgreSQL: Your Ultimate Beginner's Guide.

#webdev #programming #python #tortoiseorm
By FOLASAYO SAMUEL OLAYEMI | Dec 27, 2024


How much better are python local variables over globals, attributes, or slots?

#python #performance #slots
By David A. Kra | Dec 27, 2024


Mini-Max Sum – HackerRank Problem Solving

#algorithmssolutions #python #hackerrank #easylevel
By Deepak Raj | Dec 27, 2024


Master Django Routes and Views: The Foundation of Web Development

#django #python #webdev #tutorial
By NJOKU SAMSON EBERE | Dec 27, 2024


Chatbot with Semantic Kernel – Part 4: Whisper 👂

#ai #semantickernel #python #microsoft
By David Sola | Dec 27, 2024


💡 10 Python One-Liners That Will Make Your Coding Life So Much Easier (And Way Cooler) 😎

#programming #tutorial #python #productivity
By Theekshana Chamodhya | Dec 27, 2024


Mastering Python Async IO with FastAPI

#python #fastapi #flask #django
By Leapcell | Dec 27, 2024


GenAI Developer Roadmap 🚀 | Week 1, Day 1

#ai #python #machinelearning #genai
By Sai Chinmay Tripurari | Dec 27, 2024


High-Performance Python: Asyncio

#webdev #python #django #performance
By Leapcell | Dec 27, 2024


Using Python for Advanced Email Validation Techniques: A Developer’s Guide

#python
By Team mailfloss | Dec 27, 2024


Sorted Data Structures in Python

#python #sorting #datastructures #algorithms
By Yasir Jafri | Dec 27, 2024


GossipSampling – A Stand Alone Peer Sampling Service

#python #cpp #networking
By Matthew | Dec 28, 2024


Django built-in authentication system

#django #authentication #webdev
By DoriDoro | Dec 28, 2024


Discord Image Generation Bot with Daytona

#daytona #discordbot #python #tutorial
By Aditya | Dec 28, 2024


Refactoring 021 – Remove Dead Code

#webdev #python #cleancode #refactoring
By Maxi Contieri | Dec 29, 2024


How a Lottery Quest Led Me to The Powers of PyTorch

#python #pytorch #watercooler #programming
By Chiemezuo | Dec 29, 2024


Scrape Google Search Results Using Python

#tutorial #beginners #programming #python
By ApiForSeo | Dec 29, 2024


10 Common Python Interview Questions for Fresher

#programming #python #beginners
By Soumyadip | Dec 29, 2024


💡 15 Genius Open-Source Projects That Deserve More Love!

#webdev #javascript #beginners #python
By Awais Chaudhary | Dec 29, 2024


Python Best Practices: Writing Clean and Maintainable Code

#python #cleancode #programming #backend
By Indal Kumar | Dec 28, 2024


Exiting Pydroid3-scripts nicely

#help #python #discuss #programming
By some123stin | Dec 28, 2024


Building a Smart Heater Controller with Python, Docker, and Bluetooth #2

#raspberrypi #docker #python
By Miguel Correa Calvo | Dec 28, 2024


Building a Smart Heater Controller with Python, Docker, and Bluetooth #1

#raspberrypi #python
By Miguel Correa Calvo | Dec 28, 2024


HackHound: Building a Modern Web Security Testing Tool with React and Python

#webdev #programming #python #security
By Aayushman Singh | Dec 28, 2024


🔮 Daytona + EchoBrain – AI Development Reimagined

#opensource #daytona #ai #python
By BigBang001 | Dec 28, 2024


Text-to-Speech with Python: A Beginner's Guide to PYTTSX3

#python #tutorial #beginners #learning
By Ijeoma M. Jahsway | Dec 28, 2024


ML Engineer RoadMap

#webdev #programming #javascript #python
By Mumtaz Ali | Dec 29, 2024


Building a Chess Agent using DQN

#ai #python #machinelearning
By Ankit Upadhyay | Dec 29, 2024


Optimizing Query Performance in Django with PostgreSQL: A Case Study

#django #postgres #performance #webdev
By Priya | Dec 29, 2024


Working with APIs in Python: A Practical Guide

#python #api #programming
By Augustine Alul | Dec 29, 2024


PydanticAI: A Comprehensive Guide to Building Production-Ready AI Applications

#webdev #ai #rag #python
By Yash Desai | Dec 29, 2024


Python's Magic Methods

#python #dundermethod #oop #cleancode
By Jaimin Bariya | Dec 29, 2024


Hammering lists

#perl #python #theweeklychallenge
By Simon Green | Dec 29, 2024


Implementing a Geo Location module using the Haversine formula

#python #haversine #coding #distance
By João Esperancinha | Dec 29, 2024


Learn How To Code?

#javascript #python #beginners #tutorial
By DevsCall | Dec 29, 2024


Python While Loop Tutorial #Day3

#python #whileloop #payilagam #pythonbeginnerpractice
By Poornima Ravi | Dec 29, 2024



#Data School

Upgrade your terminal app 🚀

Tired of wrestling with your terminal? Try Warp, a modern & intelligent app that is packed with power user features and easily customizable.
By Kevin Markham | Dec 28, 2024



#Daniel Roy Greenfeld Blogs

My 2024 Fitness Journey

Recovery from injury then moving upwards and onwards.
By Daniel Roy Greenfeld | Dec 23, 2024


TIL: run vs source

Different ways to run bash commands that explains part of my frustration with bash over the years.
By Daniel Roy Greenfeld | Dec 23, 2024


TIL: types.SimpleNamespace is a Bunch class

Did you know that Python's types library has a bunch class implementation? How did I not see this before?!
By Daniel Roy Greenfeld | Dec 25, 2024


TIL: yield from

A variant of the yield statement that can result in more concise code.
By Daniel Roy Greenfeld | Dec 27, 2024