Table of Contents


#PyCoders

Issue #662 – Top 5 of 2024, Ninja, Deploying on AWS, and More

By | Dec 31, 2024



#Adam Johnson – Blogs

Python: create temporary files and directories in unittest

Sometimes, tests need temporary files or directories. You can do this in Python’s unittest with the standard library tempfile module. Let’s look at some recipes to do so within individual tests and setUp().
By Adam Johnson | Dec 30, 2024


Python: spy for changes with

Python 3.12 introduced sys.monitoring, a new framework for “monitoring” tools like debuggers and profilers to hook into. It provides fine-grained control so tools can listen only to certain events on specific lines of code. The framework came from PEP 669, thanks to Mark Shannon of the Faster CPython team.
By Adam Johnson | Dec 30, 2024


Git: undo a pull

Okay, so you just ran git pull on a branch, and something broke, so you want to undo it. Here are two ways how.
By Adam Johnson | Dec 31, 2024


Python: debug unraisable exceptions with Rich

Take this Python class:
By Adam Johnson | Jan 02, 2025


Git: force colourization with

By default, Git only colourizes in its output when writing to an interactive terminal. Sometimes, this heuristic isn’t accurate, for example, when you’re piping Git output through another command. In such cases, you can force colourization on or off with either the color.ui configuration option or the –color option. Let’s look at both in turn.
By Adam Johnson | Jan 03, 2025



#Hashnode

Virtual Environments in Python

A Comprehensive Guide to Python Virtual Environments
Managing dependencies is a critical part of modern software development, especially in Python projects. A Python virtual environment is an essential tool that enables developers to isolate project …
By TARPARA KAUSHAL | Dec 30, 2024


Why Python is Essential for DevOps Engineers

In today’s software development world, many programming languages are used for making software, solving real-world problems, creating games, and more. As DevOps engineers, we enter the world of automation, always creating CI/CD pipelines to deploy ou…
By Amit Maurya | Dec 30, 2024


Why Python Remains the Most Popular Language for Data Science

Python has been a dominant programming language in the realm of Data Science for years. Its simplicity, versatility, and extensive ecosystem of libraries have made it a go-to choice for data scientists and analysts worldwide. But what exactly sets Py…
By Muskan | Dec 30, 2024


Buildfy GUI: Revolutionizing Python GUI Development with CustomTkinter

As Python developers, we know the power of building robust, dynamic applications. However, creating modern graphical user interfaces (GUIs) can sometimes feel like an uphill battle—especially when you're dealing with outdated frameworks or battling w…
By Proxlight | Dec 30, 2024


Effortless River Dynamics Analysis: Mastering Flood Modeling with Just 30 Lines of Python

In the realm of spatial analysis, understanding river dynamics is crucial for effective flood management and environmental conservation. But what if you could conduct a comprehensive analysis with minimal code? In this guide, I’ll show you how to har…
By Ken Mathenge | Dec 30, 2024


Java vs Python – Everything You Need to Know!

Python and Java are two of the most well-known programming languages. Their cross-platform compatibility is outstanding, and their libraries are rather broad. But that's about all the commonalities.
To find out how Python differs from Java, you shoul…
By Jenifer | Dec 30, 2024


How I added support for nested functions in Python bytecode

I wanted to share some pretty cool stuff I’ve been learning about Python bytecode with you, including how I added support for nested functions, but my guy at the printing press said I needed to keep it under 500 words.
It’s a holiday week, he shrugge…
By Jones Beach | Dec 30, 2024


What Clean Code Really Means?

I think there's quite some misconception about what writing clean code really means. Here's my take on what clean code isn't and what it is:
What isn't really clean code:

Code formatting: Clean code is barely about proper indentation, spacing and fo…
By Dauda Kolo | Dec 30, 2024


Building a Multi-threaded Proxy Server in Python: A Deep Dive

Introduction
In today's interconnected digital landscape, proxy servers form the backbone of modern web infrastructure. They act as crucial intermediaries, managing and controlling network traffic between users and the vast expanse of the internet. B…
By Ashutosh Rath | Dec 30, 2024


Use data contracts to automate data workflows – part 2

Preface📖
In part 1, we explained

what a data contract is

why we need them, and

what a typical one contains

In this blog, we dive into a demo to explore how they actually work so we can process data safer, faster and effectively.
Goal🎯
The data…
By Stephen David-Williams | Dec 30, 2024


The Secret Life of Protobuf: The Fast, Small, and Mighty Data Format! 🚀

Picture this: you’re packing for a vacation ✈️, and instead of neatly folding your clothes, you’re stuffing them into a suitcase with no organization just random piles of socks, shirts, and shoes. That’s what JSON and XML do to your data, stuffing it…
By Dhruvi Shah | Dec 31, 2024


Automating Production-grade multi-node Kubernetes with KUBESPRAY on multipass with Just a single command

Introduction
Are you overwhelmed by the complexity of deploying production-grade multi-node Kubernetes clusters? 😅 The countless configurations, the manual setup, and the inevitable errors—it’s enough to make anyone feel like giving up! But what if …
By George Ezejiofor | Dec 31, 2024


AlexNet: The Architecture that Revolutionized Computer Vision

Introduction
This is the first Deep Convolutional Neural Network (CNN) that revolutionized image classification tasks. This architecture won the ImageNet challenge (ILSVRC) in 2012.
AlexNet has multiple deep layers. It consists of 60 million paramete…
By Rishith | Dec 31, 2024


Deploy Dockerize Django App on AWS ECS Fargate using GitHub Actions and Terraform

Table of contents:

Create an Ec2 Ubuntu instance

Install Packages on Ec2 Instance (Docker, AWS CLI)

Configure AWS CLI on EC2, Also on the Local Machine

Setup Self Hosted runner on Ec2

Create db secret(Password) on AWS Secret Manager, with name '…
By Rahul wath | Dec 31, 2024


Mean, Median, Mode: Essential Guide to Central Tendency Explained

Descriptive Statistics is a branch of Statistics that provides description and summarization of the data. This is used to describe the features without coming to any conclusion. One of which is Central Tendency.
Central Tendency measures the central …
By Pranay Rishith Bondugula | Dec 31, 2024


Regridding: Comparing xarray and SciPy

As I was searching for code options to regrid data instead of relying on tools, I discovered two popular methods: SciPy and xarray.
To explore and compare their capabilities, I downloaded single day 2-meter temperature data (T2m) from the ERA5 satell…
By Rohan Anand | Dec 31, 2024


Introduction to Binary Trees in Python

Binary trees are a core concept in computer science, forming the foundation for numerous data structures like Binary Search Trees, Heaps, and more. They are widely used in applications such as hierarchical data representation, search operations, and …
By Tanay Toshniwal | Dec 31, 2024


Starting My 100 Days of Code Journey with Python

I’m super excited to start the "100 Days of Code" course by Dr. Angela Yu on Udemy! This course is all about learning Python step by step while building real projects. It’s perfect for beginners like me who want to improve their coding skills and lea…
By Muniba Amin | Dec 31, 2024


Unlocking PostgreSQL: Connecting to FastAPI Server, Creating Tables On Ubuntu

Previously…
To deepen my understanding of PostgreSQL and Object-Relational Mappers (ORMs), I embarked on a project using PostgreSQL for manual database manipulation. This article builds on that journey by demonstrating how to connect a PostgreSQL dat…
By Onuh Chidera Theola | Dec 31, 2024


Scripting as Part of Games Development

Introduction
Welcome to this blog post! In the previous post, which was about JSON files, I mentioned that I was going to be writing about scripting next. Well here we are! This blog is going to be covering what scripting languages are, how I have us…
By Platwo | Dec 31, 2024


Build Dynamic Location Tracking Systems in Django with Redis Pub/Sub and Pulsetracker

In this article, we’ll demonstrate how to integrate Pulsetracker's Redis Pub/Sub into a Django application to listen for real-time location updates. Additionally, we'll build a simple JavaScript WebSocket client to send location updates every second …
By Team pulsetracker | Dec 31, 2024


Listen for realtime location updates from pulsetracker on your backend with Python pusher

Pulsetracker is a powerful, scalable, flexible location-tracking solution for developers seeking real-time updates without being bound to a proprietary client SDK. With Pulsetracker, you have the freedom to integrate location data into your own backe…
By Team pulsetracker | Dec 31, 2024


Understanding Process Management in Operating Systems

Hey everyone!
Today, I’m excited to share what I’ve been learning about process management.
It’s a core concept in operating systems that helps in to run everything smoothly. Whether you’re diving into computer science like me or just curious about h…
By SANKALP HARITASH | Dec 31, 2024


Exploring Databases in AWS: Relational vs. Non-Relational (AWS RDS and DynamoDB covered)

Cloud computing has transformed the way we manage data, with AWS offering powerful database solutions for developers worldwide. In this blog, let’s break down the key aspects of Amazon RDS and DynamoDB, two database services tailored for distinct use…
By Manav Rajpal | Jan 01, 2025


How the Game Accessibility Can Be Enhanced: Everspace 2's HUD Markers

So I’ve been playing this video game for a while…
The game is called Everspace 2, developed and published by ROCKFISH Games. It’s an action-adventure space shooter game where you fly one of your spaceships through various star systems. It’s a great g…
By Eugeny Khanchin | Jan 01, 2025


Insights from an Inspiring DevOps Meetup in Hyderabad

As part of my 100 Days of DevOps Challenge, Day 19 brought an incredible learning experience during a highly enriching DevOps meetup in Hyderabad. Organized by Quadrant Technologies and led by the esteemed Abhishek Veeramalla, the event was nothing s…
By Ahammed Basha Shaik | Jan 01, 2025


Python Basics and a Fun Band Name Generator

Daily Activities
Today, I dived into the basics of Python programming, focusing on fundamental concepts that form the backbone of coding. Here's what I explored:

Print Function: Learned how to display messages on the screen using the print() functio…
By Aryan Sharma | Jan 01, 2025


Mastering Telegram Bot Hosting: Webhook vs. Long Polling Explained

Hosting a Telegram bot can be accomplished in two primary ways: Webhook and Long Polling. Each approach has its own advantages, use cases, and considerations. Let’s dive deeper into these methods and provide practical examples using python-telegram-b…
By Esubalew Chekol | Jan 01, 2025


High performance data-modeling in C++

Overview
In this article, we will generate a C++ data model for a Solar System using the Python cmg package: https://pypi.org/project/cmg
We will:

Install the cmg package

Create the Solar System data model (schema) using Python

Generate C++ code f…
By John Dru | Jan 01, 2025


Building Zara: From Off-the-Shelf to Custom AI in Logistics

A Software Engineer's Journey to Perfect Information Retrieval Accuracy in Customer Service
In the fast-paced world of logistics, where every minute counts and accuracy is paramount, our customer service team faced a daily challenge: quickly accessin…
By Adedipe Oluwatobi | Jan 01, 2025


Python's Built In Modules: The Datetime Module

It has been quite some time since my last blog post but we haven’t gone off track in our built-in modules python series. The module we would be looking at today is something we may all relate to as sleep deprived developers – coffee; I mean datetime….
By Amanda Ene Adoyi | Jan 01, 2025


Markdown Link Content Scraper

I've been using NotebookLLM for a few months now, which I quite enjoy. Sometimes I have a main source that is a website, and then I also want to add all of the linked sources. This is obviously very tedious, so today I created a quick little web inte…
By Joshua Oliphant | Jan 01, 2025


Unleashing Hidden Patterns: An Introduction to Unsupervised Learning

Unsupervised learning involves analyzing datasets that have no labeled outcomes. Instead of predicting a specific target or category, the objective is to uncover the hidden patterns, structures, or relationships within the data itself. This usually m…
By Jyotiprakash Mishra | Jan 01, 2025


environment package in python

I think there are way too many environment handling packages out there (at PyPi) to get confused.

One is environ which was last released in 2007 – https://pypi.org/project/environ/ – which is Python 2 based. We don't want this anymore.

What we norm…
By Anjanesh Lekshminarayanan | Jan 02, 2025


使用 ComfyUI 創建你的第一張 AI 圖片

大概兩年多前第一次使用 ChatGPT,兩年後的現在,我已經很習慣在開發東西時與 AI 一起合作。本以為這已經是 AI 能帶給我的最大衝擊,直到第一次看到用 AI 生成圖片。網路上展示的效果令人驚豔,但我屬於沒用過就不相信的人。稍微摸索後,我發現這些工具雖然還不到 "成神" 的地步,但 AI 圖片生成的能力給我的震撼,完全不亞於第一次使用 ChatGPT 的感受。
因此,我決定將實作過程記錄下來,既作為自己的筆記,也為對學習新工具感興趣的朋友提供參考。第一次接觸新工具總是比較痛苦,建議遇到看不懂…
By LemondHub | Jan 02, 2025


Day 1 – Working With Variables In Python To Manage Data

Today I learned
Printing to the Console in Python
print() function is used to display the Information to the user
For Example. Texts, Numbers, and output or the result of any calculations.
It is also used to debug code and make a program interactive …
By Muniba Amin | Jan 01, 2025


Guía paso a paso para realizar web scraping

El scraping o web scraping es una técnica utilizada para extraer datos de sitios web de manera automatizada. Consiste en usar programas o scripts para navegar por una página web, extraer información específica (como texto, imágenes, precios de produc…
By Joel Farell Cabrera | Jan 02, 2025


Python 🆚 Algorand Python ⚔️

Python is the most popular programming language used by developers worldwide. Its simplicity and developer-friendly environment always attract programmers to write their code in Python. Imagine writing smart contracts, or code on the blockchain, usin…
By Degen HODLer | Jan 02, 2025


Optimising Flask Dockerfiles: Best Practices for DevOps and Developers

💡Introduction
Welcome to the world of DevOps! 🚀 Today, we’re diving into an essential skill for any DevOps engineer: optimizing Dockerfiles for Flask applications. While beginner DevOps engineers often focus on mastering basic Dockerfile syntax, ex…
By Pravesh Sudha | Jan 02, 2025


How to Split Word Documents in Python Like a Pro [Advanced Guide]

Have you ever found yourself facing a lengthy Word document, but you only need a specific section? Perhaps you want to print a particular chapter or page, or maybe you're overwhelmed by a long document and wish to break it down into smaller parts. Sp…
By Casie Liu | Jan 03, 2025


SQL Tutorial for Beginners: Master GROUP BY with Practical Examples

Hey Guys! This is Dhyuthidhar, Welcome to my Blog. If you don’t know me…", you could say "Hi, I’m Dhyuthidhar, and if you're new here, welcome! I love writing about all things in Computer Science, especially in the realm of Machine Learning. Here's…
By S.S.S DHYUTHIDHAR | Jan 03, 2025


Getting Started with Flask: Building a Dynamic Web Page

Flask is a Python framework to create web applications. In this guide, we will explore how to build a dynamic web page using Flask.
Set Up the Flask Environment in Windows
Step 1: Open the terminal in Visual Studio Code and type: python -m venv venv

By Dinesh Nair | Jan 03, 2025


Python Decorators: A Comprehensive Guide

When I started programming with Python, if I am not mistaken, the version was 3.3. Therefore, when I started programming, decorators had been available to the Python community for a long time.
Function decorators came to Python with version 2.2 and C…
By Can Burak Sofyalioglu | Jan 03, 2025


Introduction to Support Vector Machines (SVMs)

Support Vector Machines (SVMs) are a powerful and versatile family of machine learning models, initially developed by Vladimir Vapnik and his collaborators in the 1990s. These models are best known for their ability to handle both linear and non-line…
By Jyotiprakash Mishra | Jan 03, 2025


Pandas: DataFrame Operations

Pandas DataFrame Analysis
View and analyze your data frames with built-in Pandas methods. Stats made simple!
Example 1: Get a quick statistical summary.
df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
print(df.describe())

# Output:
# A …
By Arjun Singh | Jan 03, 2025


Animating GPS Tracks Using QGIS: A Dynamic Approach to Spatial Visualization

Visualizing temporal and spatial data is essential to geospatial analysis, and animating GPS tracks offers a compelling way to explore movement patterns over time. Using QGIS, a robust open-source GIS platform, you can create dynamic animations that …
By Martins Ugwu's Corner | Jan 03, 2025


Day 2 – Understanding Data Types
and How to Manipulate Strings

Table of contents
1. Python Primitive Data Types
2 . Type Error, Type Checking,
and Type conversion
3. Mathematical operations
in Python
4. Number Manipulation and
F strings in Python
5. Tip Calculator
Python Primitive Data Types
Python has four basi…
By Muniba Amin | Jan 03, 2025


Containerizing a Django Web Application: Serving Static Pages with Docker

In this blog post, we'll walk through the process of containerizing a Python Django web application that serves a simple static HTML page. We will cover the basics of Django project structure, how the an Django application works, and how we can use D…
By Yash Patil | Jan 03, 2025


How to Create a Google Login in Flask

Creating a mechanism for login is probably about one of the first things you should think about when creating an application. When creating a login there’s always the option of utilizing pre-built solutions. However, what if you need the flexibility …
By James | Jan 03, 2025


Simplified Data Masking in AWS Lambda with Powertool

Hello Devs,

“Data is the new oil,” they say, but in healthcare and finance, it’s more like nitroglycerin—immensely valuable, yet dangerously explosive if mishandled.”

I recently shared on social media that I've joined the healthcare industry. This …
By Avinash Dalvi | Jan 03, 2025


PART – 2 : Universal Language Model Fine-tuning for Text Classification

Welcome to the series, celebrating the foundational works that have shaped modern Natural Language Processing (NLP). Today we will discuss “Universal Language Model Fine-tuning for Text Classification“. Paper that has introduced an effective transfer…
By GADDAM SAI BHARATH CHANDRA REDDY | Jan 03, 2025


How to Build a Real-time Network Traffic Dashboard with Python and Streamlit

Have you ever wanted to visualize your network traffic in real-time? In this tutorial, you will be learning how to build an interactive network traffic analysis dashboard with Python and Streamlit. Streamlit is an open-source Python framework you can…
By Chaitanya Rahalkar | Jan 03, 2025


Why Upskilling in Data Analytics is Essential in 2025

In the era of data-driven decision-making, the ability to effectively analyze and interpret data has become a cornerstone of success across industries. As we approach 2025, the importance of data analytics continues to grow, with businesses increasin…
By pallavi chauhan | Jan 04, 2025


[Python Debugging] IndexError: list index out of range when Using Openpyxl

Error
I was working on my mini project called Schedulize, and an error occured while loading a workbook using openpyxl.
def create_excel_file(self):
wb = load_workbook(self.file_path) # IndexError: list index out of range
ws = wb.active

By Lim Woojae | Jan 04, 2025


What are Descriptive Statistics and Use Cases

]>
By Harsh Jadhav | Jan 04, 2025


Running Playwright Tests in Python with Flask on Cloud Run

Automating browser tasks is a breeze with Playwright, and integrating it into a cloud-based service can take your automation capabilities to the next level. In this blog post, we’ll walk you through setting up a Python-based application that uses Fla…
By Vaibhav Pawar | Jan 04, 2025


Best Practices for Python Type Annotations

In order to make my code more readable and it helping with debugging, I have been more and more implementing type annotations into my code.
Type hints were introduced PEP 484 (Python 3.5) to improve code readability, maintainability, and tooling supp…
By Dean Didion | Jan 04, 2025


Python Progress

Been a couple of days since I started learning python as I promised, It’s really a lot of juice to learn as it is not that easy to practice python and learn commands and writing it correctly.
so far I have completed:

Basics of python

Introduction, …
By vipul chauhan | Jan 04, 2025


Learn Python from Scratch: Detailed Note

1. Flowcharts and Pseudocode:

Flowcharts: These remain the same as visual representations of the solution.

Pseudocode: Still used for writing generic logic, as in C++, but now in Python syntax.

2. What is Python?

Python is a high-level programmi…
By Hashim HB | Jan 04, 2025


10 Python functions you must know

You might already be familiar with some Python functions listed here, but you're sure to discover more useful details about them as you read on.
Function 1: print() Function
The print() function is often the first function you learn in Python, and it…
By Avez Qureshi | Jan 04, 2025


Predicting Food Spoilage with AI: A Step Towards Reducing Waste

Food spoilage is a major issue affecting individual households, the economy and global food security. Approximately one-third of all food produced is wasted due to spoilage, resulting in an estimated economic loss of over $940 billion annually and ad…
By Isaac Onyeakagbu | Jan 04, 2025


Adding Product Pages in Django: A Step-by-Step Guide

Previous Related Blog : How to Set Up a Django Frontend: A Complete Tutorial
Today, we will extend the homepage by adding a "Related Products" section to showcase more products. We will write HTML and CSS to ensure it is well-aligned and remains resp…
By Rohit Rajput | Jan 05, 2025


Part 4 – playing poker

< Previous Post
Today's subject matter is perfect for something fun. We'll create a poker game in Python. This will help us learn about a new data type and more along the way.
Before we begin, I have to confess I don't play poker. When I started the …
By Had Will | Jan 05, 2025


Plug external HDD and backup is done

Intro
Goal
I have an external HDD, and I want to have a copy of it in the cloud.
I do not want
I do not want to connect the external HDD to the laptop, run some commands to back up, monitor the status, wait until it's done, etc.
I want

Connect exter…
By Rider | Jan 05, 2025


Introduction to gRPC in Python : A Hands-on Guide to Modern Client-Server Communication

Introduction
In this blog, we delve into the world of gRPC, a cutting-edge framework developed by Google for seamless and efficient client-server communication. Designed to work across various programming languages, gRPC is a powerful tool for modern…
By Shreyansh Agarwal | Jan 05, 2025


[Project] Schedulize – 효율적이고 생산적인 근무 배정 프로그램

소개
이번에 새 프로젝트 Schedulize를 소개하게 되어서 굉장히 기쁩니다. 아직 제작 중이지만 현재 80% 완료된 상태이고 최적화를 위해 꾸준한 코드 리팩토링(Refactoring)을 거칠 예정입니다. Schedulize는 영어 Schedule과 Optimize를 합쳐 최적화된 스케줄을 제공한다는 것에 초점을 두었습니다. 어떤 프로젝트를 시작하는 데에는 모두가 이유가 있다고 생각합니다. 개인적으로 저는 “혁신”을 위하여 개발합니다. 이번 …
By Lim Woojae | Jan 05, 2025



#Dev.to

One-to-Many and Many-to-Many Relationships in Python with SQLite

#python #sql #beginners #backend
By kelseyroche | Dec 30, 2024


Convert LabelMe Annotations to YOLO Format with labelme-to-yolo

#python #computervision #ai #github
By Tlaloc-Es | Dec 30, 2024


Task Tracker Project

#programming #python #productivity #learning
By Alxc | Dec 30, 2024


Schedule a call with Twilio and Django

#python #twilio #django
By Kovy Jacob | Dec 30, 2024


What is the difference between extends and include in django?

#django
By guzmanojero | Dec 30, 2024


Pytest Fish shell autocompletion

#python #pytest #shell #fish
By Dmitry Doroshev | Dec 30, 2024


Will Your Marketing Email End Up in Spam? We Built a Tool to Find Out

#marketing #seo #python #saas
By Leapcell | Dec 30, 2024


Deploying Flask-based Microservices on AWS with ECS Service Connect

#microservices #ecs #flask #python
By Alex | Dec 30, 2024


How Crawler IP Proxies Enhance Competitor Analysis and Market Research

#python #proxies #crawler
By 98IP 代理 | Dec 30, 2024


Packaging python RPMs

#python #rpm #building
By Rodolfo Olivieri | Dec 30, 2024


Weather Dashboard with 5-Day Forecast and Wi-Fi Menu

#raspberrypi #python
By Jack Lin | Dec 30, 2024


Game Development with Pygame

#python #gamedev #programming #tutorial
By Ajay Krishnan Prabhakaran | Dec 30, 2024


TCP Chatroom in Python

#python #webrtc #rtc #cli
By Rajat Rajput | Dec 30, 2024


Weekend – Python Interview Questions

#payilagam #python #programming #interview
By Guru prasanna | Dec 30, 2024


Data Splitting: Breaking Down the Problem

#llm #python #chatgpt
By es404020 | Dec 30, 2024


Difference Between Methods and Functions

#programming #beginners #tutorial #python
By Sospeter Mong'are | Dec 30, 2024


Who Will Bell the Cat? – What I Learned in 2024

#career #python #workplace
By Aglili Selorm Cecil | Dec 30, 2024


5 Powerful Python Techniques for Efficient Data Streaming and Real-Time Processing

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


Converting Day, Hour, Min, Sec By using Python

#programming #tutorial #python #learning
By Amit Kshirsagar | Dec 30, 2024


How I added support for nested functions in Python bytecode

#rust #python #programming
By Jones Beach | Dec 30, 2024


How to repair a bridge, Advent of Code 2024 Day 7

#functionalprogrammin #python #adventofcode
By Choon-Siang Lai | Dec 30, 2024


Converting Day, Hour, Min, Sec By using Python

#programming #tutorial #python #learning
By Amit Kshirsagar | Dec 30, 2024


6 Beginner Mistakes in Python and How To Fix Them

#python #beginners #coding #codenewbie
By kelseyroche | Dec 30, 2024


LCM & GCD of two numbers

#python #payilagam #whileloop #pythontutorial
By Poornima Ravi | Dec 30, 2024


The Curiosity of a Child: A Surprising Foundation for Data Science

#datascience #python #machinelearning #ai
By chioma luke | Dec 30, 2024


Deploying an AI Spam Detection App on AWS EC2

#aws #cloud #ai #python
By Anne Usang | Dec 30, 2024


Diving Deep into Data Engineering with Python: A Comprehensive Guide

#python #programming #beginners #learning
By Ajay Krishnan Prabhakaran | Dec 31, 2024


Building Custom AI Tools with Rust: A Beginner’s Guide

#rust #python #ai #machinelearning
By arjun | Dec 30, 2024


The beginning of my journey

#python #webscraping #data #beginners
By Abdelghafour Afritit | Dec 30, 2024


Extraction of Element of a string at odd,even or any pattern position in Python

#python #tutorial #datascience #maths
By oladejo abdullahi | Dec 31, 2024


Hal9: Create and Share Generative Apps

#rag #python #ai #chatgpt
By Javier Luraschi | Dec 31, 2024


fmod in PyTorch

#python #pytorch #fmod #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


remainder in PyTorch

#python #pytorch #remainder #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


mul in PyTorch

#python #pytorch #mul #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


sub in PyTorch

#python #pytorch #sub #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


Construyendo una Pokédex con Python y AWS CDK: Una guía paso a paso para crear tu propia aplicación web en menos de 25 minutos

#python #aws #javascript #pokemon
By Wladimir | Dec 31, 2024


linspace in PyTorch

#python #pytorch #linspace #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


arange in PyTorch

#python #pytorch #arange #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


Solving the Weekly Challenge 302 Task 2: Step by Step in Python

#theweeklychallenge #python #perl #raku
By Robert McIntosh | Dec 31, 2024


Solving the Weekly Challenge 302 Task 1: Ones and Zeroes in Python

#theweeklychallenge #python #perl #raku
By Robert McIntosh | Dec 31, 2024


unsqueeze in PyTorch

#python #pytorch #unsqueeze #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


squeeze in PyTorch

#python #pytorch #squeeze #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


any in PyTorch

#python #pytorch #any #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


all in PyTorch

#python #pytorch #all #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


The Popcorn Problem – lowCal_update 8

#database #softwaredevelopment #python #programming
By Kazi Priom | Dec 31, 2024


atleast_3d in PyTorch

#python #pytorch #atleast3d #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


Software Engineer for Training AI Data

#javascript #python #beginners #go
By Thayna Ribeiro do Nascimento | Dec 31, 2024


atleast_2d in PyTorch

#python #pytorch #atleast2d #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


atleast_1d in PyTorch

#python #pytorch #atleast1d #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


How to deal with problems caused by frequent IP access when crawling?

#ip #crawling #python
By 98IP 代理 | Dec 31, 2024


Automating Production-grade multi-node Kubernetes with KUBESPRAY on multipass with Just a single command

#tutorial #python #kubernetes #ansible
By George Ezejiofor | Dec 31, 2024


Understanding the OpenAI JSONL Format: Organising the Records

#webdev #llm #python #programming
By es404020 | Dec 31, 2024


calm luh program

#python #productivity #github #game
By Mahdi H | Dec 31, 2024


square in PyTorch

#python #pytorch #square #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


pow in PyTorch

#python #pytorch #pow #function
By Super Kai (Kazuya Ito) | Dec 31, 2024


HuggingFace login on Google Colab

#huggingface #googlecolab #python
By 0xkoji | Dec 31, 2024


6 Essential Python Libraries for Advanced Computer Vision and Image Processing

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


7 Essential Python Decorator Patterns for Cleaner, More Efficient Code

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


Using Discord as an unlimited cloud storage service

#discord #cloudstorage #python #cli
By Arnav | Dec 31, 2024


Implementing a Scalable Forex WebSocket Using a Python Proxy

#python #proxy #websocket #devtutorial
By Shridhar G Vatharkar | Dec 31, 2024


Conquer Tedious Tasks with These 10 Python Automation Scripts

#programming #python #productivity #automation
By Rishabh Agarwal | Dec 31, 2024


Python for SRE and DevOps Engineers

#python #devops #softwaredevelopment #tutorial
By SRE Mastery | Dec 31, 2024


Predicción de Precios de Portátiles con ML

#machinelearning #python #programming #datascience
By Joel Farell Cabrera | Dec 31, 2024


Day 23 – List and List functions

#python #payilagam #list #functions
By Lakshmi Pritha Nadesan | Dec 31, 2024


Best programming Language this year

#webdev #aws #programming #python
By Aaditya Battin | Dec 31, 2024


Day-26 List Comprehension

#python #payilagam #list #comprehension
By Lakshmi Pritha Nadesan | Dec 31, 2024


Sngfetch – Shazam for the CLI

#python #github #showdev #cli
By pythog | Dec 31, 2024


If the setting is missing, add it yourself

#videogames #uidesign #python #programming
By Eugeny Khanchin | Dec 31, 2024


Day-25 List functions, Tasks

#python #payilagam #list #function
By Lakshmi Pritha Nadesan | Dec 31, 2024


EXPLORATORY DATA ANALYSIS (EDA) WITH PYTHON: UNCOVERING INSIGHTS FROM DATA

#datascience #python #analytics
By Aniekpeno Thompson | Dec 31, 2024


Introducing Navvy: A Simple AI-Powered Git Automation Tool

#python #openai
By Rofly António | Dec 31, 2024


Day 24 – List Functions

#python #payilagam #list #function
By Lakshmi Pritha Nadesan | Dec 31, 2024


[Python] A Script for Processing and Analysing Bilibili Video Comments and Bullet Chats

#python #script #analysis #data
By Excalibra | Dec 31, 2024


Introducing FastMRZ – Effortless MRZ Extraction Made Simple

#python #machinelearning #opensource #softwaredevelopment
By Sivakumar Mahalingam | Dec 31, 2024


Day-28 Dictionary, Frequency of character using nested loops

#python #payilagam #dictionary #nestedloop
By Lakshmi Pritha Nadesan | Dec 31, 2024


Four Reasons that I Sometimes Use Awk Instead of Python

#python #awk
By Vee Satayamas | Dec 31, 2024


Day-27 Tuples, Set

#python #payilagam #tuples #set
By Lakshmi Pritha Nadesan | Dec 31, 2024


Introducing acolor: A small utility to print ANSI color codes

#linux #python #tooling #beginners
By Nicholas Synovic | Dec 31, 2024


Setting Up Your First Rasa Project

#python #development #beginners
By BHARATH M | Dec 31, 2024


Day-26 List Comprehension

#python #payilagam #list #comprehension
By Lakshmi Pritha Nadesan | Dec 31, 2024


Day-25 List functions, Tasks

#python #payilagam #list #function
By Lakshmi Pritha Nadesan | Dec 31, 2024


Day 24 – List Functions

#python #payilagam #list #function
By Lakshmi Pritha Nadesan | Dec 31, 2024


Day 23 – List and List functions

#python #payilagam #list #functions
By Lakshmi Pritha Nadesan | Dec 31, 2024


How to use iPython in VS Code

#python #vscode
By Pavol Z. Kutaj | Jan 01, 2025


A happy new year to everyone in Python!

#python
By Everton Tenorio | Jan 01, 2025


Time Zones and Offsets and ObjectScript, Oh My!

#python #hl7 #interoperability #programming
By InterSystems Developer | Jan 01, 2025


Beginner Python Project: Build an Augmented Reality Drawing App Using OpenCV and Mediapipe

#webdev #python #programming #ai
By Vishal Shukla | Jan 01, 2025


Python Script for Stock Sentiment Analysis

#python #tutorial #beginners #nlp
By Ajay Krishnan Prabhakaran | Jan 01, 2025


Explaining Iterable vs Iterator in Python

#python
By Pavol Z. Kutaj | Jan 01, 2025


Harder, Better, Faster, Stronger Tests With Fixtures

#testing #unittest #python
By Liz Acosta | Jan 01, 2025


ServBay 1.7.1 Released: Now Supports PHP 8.5-dev

#webdev #programming #beginners #python
By ServBay | Jan 01, 2025


Simplify Python GUI Development with Buildfy 🚀

#programming #python #tkinter #opensource
By Pratyush Mishra | Jan 01, 2025


GenAI Developer Roadmap 🚀 | Week 1, Day 2

#python #ai #tutorial #beginners
By Sai Chinmay Tripurari | Jan 01, 2025


Python Day-29 Dictionary- Exercises, Tasks

#payilagam #python #dictionary #datatype
By Guru prasanna | Jan 01, 2025


Python projects for beginners to advanced

#webdev #python #programming #beginners
By Aaditya Battin | Jan 01, 2025


2024: A Year in Review

#newyearchallenge #webdev #programming #python
By DivyanshuLohani | Jan 01, 2025


Automating Node.js Dependency Upgrades and Build Error Resolution Using AI

#node #python #cicd
By Raja | Jan 01, 2025


Python Industries Model

#python #webdev #programming #learning
By Encodedots Technolabs | Jan 01, 2025


The Most Interesting Mostly Tech Reads of 2024

#python #vim #bash
By Pavol Z. Kutaj | Jan 01, 2025


How Does Deep Learning Work? Can You Write Simple Deep Learning Code at Home?

#deeplearning #c #python #machinelearning
By Fatih Küçükkarakurt | Jan 01, 2025


Day-29 Dictionary and Tasks

#python #payilagam #dictionary #task
By Lakshmi Pritha Nadesan | Jan 01, 2025


The Strange 'else' in Python

#python #development #tutorial #programming
By Oleksii Lytvynov | Jan 02, 2025


Django Authentication Made Easy: A Complete Guide to Registration, Login, and User Management

#django #authentication #webdev #python
By NJOKU SAMSON EBERE | Jan 01, 2025


Getting Started with FastAPI

#python #fastapi #programming #webdev
By Gilles Hamelink | Jan 01, 2025


🌟 Exciting Update: LivinGrimoire Wiki Revamp! 🌟

#ai #designpatterns #java #python
By owly | Jan 02, 2025


AWS S3 Simplified: Automate Operations Without CLI on Remote Server

#aws #tutorial #python #learning
By SOM4N | Jan 02, 2025


Creating a To-Do app with Django and HTMX – Part 1: Creating the Django project with uv

#htmx #django #webdev
By rodbv | Jan 02, 2025


Creating a To-Do app with Django and HTMX – Part 2: Adding the Todo model with TDD

#django #python #htmx #pytest
By rodbv | Jan 02, 2025


Obfuscating “Hello world!” obfuscate on Python

#python #encryption #obfuscate
By Teddy Zugana | Jan 02, 2025


🔥[2025] Boost Your Machine Learning Knowledge with DevDuniya’s Comprehensive Tutorials🚀

#machinelearning #python #datascience #tutorial
By Dev Duniya | Jan 02, 2025


🚀 5 Python Tricks Every Developer Should Know

#python
By Tanishgupta | Jan 02, 2025


Concorrência e paralelismo em Python

#python #asyncio #threading #multiprocessing
By Natália Oliveira | Jan 02, 2025


Uploading Files to OpenAI: Passing the Baton

#webdev #llm #python #programming
By es404020 | Jan 02, 2025


Symmetric data encryption with Python

#python #algorithms #pikotutorial
By pikoTutorial | Jan 02, 2025


Azure Functions with Python: Triggers

#azure #azurefunctions #python #programming
By Edgaras | Jan 02, 2025


A monad is a monoid in the category of endofunctors…

#python #functional #monad
By BlackOpsREPL | Jan 02, 2025


Understanding RAG Workflow: Retrieval-Augmented Generation in Python

#python #nlp #llm #rag
By Deepak Raj | Jan 02, 2025


Common Django ORM Mistakes to fix

#python #django #programming #webdev
By AJAY SHRESTHA | Jan 02, 2025


Step zero, step one

#perl #python #theweeklychallenge
By Simon Green | Jan 02, 2025


Artificial Intelligence

#programming #beginners #ai #python
By Mahmish Munawar | Jan 02, 2025


Converting Plotly charts into images in parallel

#python #plotly #parallelization #graphs
By Alexander Kammerer | Jan 02, 2025


Integrate Sentry into your Django project

#django #sentry
By DoriDoro | Jan 02, 2025


Day 3: Mastering the Art of Conditional Statements and Loops

#python #ai #machinelearning #programming
By Praneeth | Jan 02, 2025


Process Management in Python: Fundamentals of Parallel Programming

#python #multiprocessing
By Mehmet Ali Tilgen | Jan 02, 2025


How to set simply all “sampling parameters” or “generation parameters” for applications using watsonx?

#llm #watsonx #python #node
By Alain Airom | Jan 02, 2025


What I Wish I Knew as a Junior Developer: Advice from a Senior Engineer

#javascript #python #node #programming
By Leon Martin | Jan 02, 2025


The Importance of Code Reviews: A Guide to Better Software Development

#java #javascript #node #python
By Leon Martin | Jan 02, 2025


Optimising Flask Dockerfiles: Best Practices for DevOps and Developers

#flask #docker #devops #python
By Pravesh Sudha | Jan 02, 2025


Big O Notation for Beginners: A Practical Guide

#javascript #python #node #algorithms
By Leon Martin | Jan 02, 2025


CocoDetection in PyTorch (1)

#python #pytorch #mscoco #dataset
By Super Kai (Kazuya Ito) | Jan 03, 2025


How to Automate the Encryption of an Amazon RDS Instance with Python

#python #postgres #aws #devops
By Dmitry Romanoff | Jan 03, 2025


Any Rollbar Python users on here?

#python
By Nico Kruger | Jan 02, 2025


Binary Tree Level Order Traversal Leetcode

#python #leetcode
By raVaN-DEV | Jan 02, 2025


Help Me With My Codding Journey In 2025!

#datascience #python #developer #data
By Reaper | Jan 02, 2025


Python Tips to Make Your Code Shine! ✨

#python #beginners #learning #programming
By Iftakher Hossen | Jan 03, 2025


Creating a To-Do app with Django and HTMX – Part 3: Creating the frontend and adding HTMX

#python #django #htmx #daisyui
By rodbv | Jan 03, 2025


Be Careful When Using YAML in Python! There May Be Security Vulnerabilities

#python #cybersecurity #security #coding
By Fatih Küçükkarakurt | Jan 03, 2025


Creating a To-Do app with Django and HTMX – Part 4: adding new Todos

#htmx #django #python
By rodbv | Jan 03, 2025


KillPy: The Tool to Clean Up Your Python Virtual Environments 🧹🐍

#python #tooling #cli #ubuntu
By Tlaloc-Es | Jan 03, 2025


Перспективи навчання..

#programming #beginners #ai #python
By Григорій Лізанець | Jan 03, 2025


An Alternating Asynchronous Generator in Python

#python
By Talles L | Jan 03, 2025


Minimal Rio Intro

#python #ui
By Peter Shinners | Jan 03, 2025


Comprehensive Guide to Python Debugging Tools for Efficient Code Troubleshooting

#python #debugging #debugger
By Aditya Pratap Bhuyan | Jan 03, 2025


Best Way to Learn Data Science: A Comprehensive Guide for Aspiring Experts

#ai #python #datascience #algorithms
By Amit Yadav | Jan 03, 2025


Simplify Authentication with FastAPI!

#webdev #python #fastapi #programming
By FOLASAYO SAMUEL OLAYEMI | Jan 03, 2025


Can a Python Server (Serving HTML with Jinja2) Interact and Modify Files in a Jenkins Pipeline?

#python #jenkins #git #javascript
By Dye For Me | Jan 03, 2025


Building a Python Camera SDK and Using It for Multi-Barcode Scanning

#camera #barcode #python #cpp
By Xiao Ling | Jan 03, 2025


Python Decorators: A Comprehensive Guide

#python #backend #webdev #programming
By Can Burak Sofyalioglu | Jan 03, 2025


Building a Model Context Protocol Server using Jina.ai and FastMCP in Python

#mcp #python #jinaai #tutorial
By Ahmad Ragab | Jan 03, 2025


Перспективи навчання..

#programming #beginners #ai #python
By Григорій Лізанець | Jan 03, 2025


6 Advanced Asynchronous Web Scraping Techniques in Python for Speed and Efficiency

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 03, 2025


What is a SOC Analyst?

#security #python #cybersecurity #ehical
By vamshi Brolly | Jan 03, 2025


Lección 1: Introducción a Python y su Instalación

#python #programacion #beginners #michidev
By Albert Jhonatan Quisbert Mújica | Jan 03, 2025


Creating a Local Environment to Operate GCS Emulator from Flask

#googlecloud #python #flask #docker
By nomi3 | Jan 03, 2025


CS50 – Week 6

#cs50 #python #programming #computerscience
By Dilbar | Jan 03, 2025


Procrastinator's Guide to Glory: Open Source Projects That Turn Wasted Time Into Career Gold ⭐️

#programming #ai #python #opensource
By fast-d3v | Jan 03, 2025


Styling Django Projects: A Comprehensive Guide to CSS Integration

#css #django #python #tutorial
By NJOKU SAMSON EBERE | Jan 03, 2025


Modularizing SQLAlchemy Models with Mixins and Annotations

#sqlalchemy #python #codingbestpractices
By Atanu Saha | Jan 03, 2025


🎨 Generative AI Developer Week 1 – Day 4: Exploring Matplotlib

#python #machinelearning #ai #learning
By Sai Chinmay Tripurari | Jan 03, 2025


Understanding Regex in Python: A Practical Example

#regex #python
By Melissa | Jan 03, 2025


Managing Imports in Python: Prevent Breaking Your Program

#python #beginners
By Greg Murray | Jan 03, 2025


Hi I am new to programming I have encountered a problem is that when I write import random I encounter syntaxerror in Python.

#python #beginners #help
By Max Lindh | Jan 03, 2025


Building a Production-Ready Trie Search System: A 5-Day Journey 🚀

#python #nlp #tutorial #algorithms
By guillaumel | Jan 03, 2025


Containerizing a Django Web Application: Serving Static Pages with Docker

#docker #django #containers #devops
By Yash Patil | Jan 03, 2025


Exposing Your Django Project to the Internet Using Ngrok

#python #django #webdev #backend
By David Sudi | Jan 03, 2025


How to Get Your First Software Engineering Job Without a Degree

#career #javascript #python #programming
By Leon Martin | Jan 03, 2025


How to Build a Random Video Chat Web app withWebrtc ,Websocket and Django.

#webdev #programming #javascript #python
By Arshdeep Palial | Jan 03, 2025


🌍💱 New Project: Currency Exchange API

#opensource #api #python #fastapi
By Heitor Vasconcelos | Jan 04, 2025


Functions, variables, and debugging; Restarting my DS, AI & ML Journey

#ai #machinelearning #python
By Victoria Adesanmi | Jan 04, 2025


Advanced Python Decorators: Elevating Your Code

#python #tutorial #beginners #programming
By Ajay Krishnan Prabhakaran | Jan 04, 2025


Manage duplicates in your Bitwarden Vault with Python

#bitwarden #python #opensource
By Pete Benoit | Jan 04, 2025


Web Scraping with Beautiful Soup and Scrapy: Extracting Data Efficiently and Responsibly

#python #tutorial #beginners #programming
By Ajay Krishnan Prabhakaran | Jan 04, 2025


Try Multimodal Search with ColQwen2!

#multimodal #llm #rag #python
By M Sea Bass | Jan 04, 2025


Context Caching vs RAG

#python #machinelearning #ai
By Abhinav Anand | Jan 04, 2025


I Saw The Power of Azure AI Agent Service

#azure #ai #python
By Pratik Pathak | Jan 04, 2025


Building a Personalized Study Companion Using Amazon Bedrock

#aws #python #ai #machinelearning
By omar-steam | Jan 04, 2025


npx life@2024 preview: How Missing Flights, Finding Love, and Building Svelte Apps Changed Everything

#webdev #programming #devjournal #django
By Bishwas Bhandari | Jan 04, 2025


How to Easily Install and Use Node-RED on iMX6UL Series Processors?

#tutorial #ai #react #python
By ronnie R | Jan 04, 2025


How to run Python in the Cloud

#python #aws #cloud
By Levi | Jan 04, 2025


5 Powerful Python Libraries for Building Robust Microservices

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 04, 2025


Harnessing the Power of Hugging Face Transformers for Machine Learning

#ai #machinelearning #python #tutorial
By Dmitry Romanoff | Jan 04, 2025


SANA: Ultra HD Fast Text to Image Model from NVIDIA Step by Step Tutorial on Windows, Cloud & Kaggle — Generate 2048×2048 Images

#beginners #tutorial #ai #python
By Furkan Gözükara | Jan 04, 2025


Understanding Tokenization: A Deep Dive into Tokenizers with Hugging Face

#ai #machinelearning #python #tutorial
By Dmitry Romanoff | Jan 04, 2025


Visualizing Sentiment Analysis Results in Python using Matplotlib

#ai #machinelearning #python #tutorial
By Dmitry Romanoff | Jan 04, 2025


Title: The Journey of a Software Developer: From Beginner to Expert

#webdev #python #learning #android
By Michael Garcia | Jan 05, 2025


New learner of Python and have some questions

#programming #beginners #python #learning
By MUwind | Jan 05, 2025


Job Opportunity for Backend dev and Blockchain dev

#webdev #python #web3 #blockchain
By N-Agency-member | Jan 05, 2025


Gen AI Developer Week 1 — Day 5

#python #machinelearning #ai #learning
By Sai Chinmay Tripurari | Jan 05, 2025


🚀 My Journey into Web & Software Development

#webdev #programming #python #learning
By Shamsuddin Hamdule | Jan 05, 2025


Deploying an AI Traffic Congestion Predictor using AWS Bedrock: A Complete Overview

#aws #machinelearning #python #ai
By omar-steam | Jan 05, 2025


Ergonomic Pyhon Text Piping Solution for Linux Shell with pypyp and uv

#python #linux #shell #bash
By kurukurin | Jan 05, 2025


So, what actually defines an AI Agent?

#ai #devops #python #chatgpt
By Veronica Nigro | Jan 05, 2025


How to Download YT Videos in HD Quality Using Python and Google Colab

#webdev #youtube #python #google
By Chemical Engineer | Jan 05, 2025


My Weekend project on GitHub: Making AI Art Creation Simple For Everyone 🎨

#ai #python #opensource #beginners
By Arsen Apostolov | Jan 05, 2025


Debugging Savior! Leveraging ObjWatch for Efficient Code Comprehension and Debugging in Complex Python Projects

#python #ai #coding #learning
By aeeeeeep | Jan 05, 2025


2017 Stack Overflow Developer Survey Analysis

#datascience #python #programming #jupyter
By 0xSaad | Jan 05, 2025


Get Done ✅ : A step-by-step guide in building a Django To Do List

#webdev #django #python
By Dhanush D | Jan 05, 2025


Parsing & Loading Data from S3 to DynamoDB with Lambda Function

#aws #python #cloud
By Muhammed Ashraf | Jan 05, 2025


Polars + Deltalake Performance – Azure vs. Laptop

#python #datascience #azure #polars
By Sebastian Walter | Jan 05, 2025


10 Exciting Web Trends to Watch in 2025

#webdev #javascript #beginners #python
By Pratik sharma | Jan 05, 2025


The Role of Telemedicine and RPM in Chronic Disease Management

#ai #telehealth #beginners #python
By Jabran Mustafa | Jan 05, 2025


Download YT Videos using Python Code in Google Colab

#python #googlecolab #webdev #programming
By Chemical Engineer | Jan 05, 2025


8 Powerful Python Error Handling Strategies for Robust Applications

#programming #devto #python #softwareengineering
By Aarav Joshi | Jan 05, 2025



#Daniel Roy Greenfeld Blogs

Exploring fastcore bunch classes

For the past six months or so I've been using fastcore. It provides two handy bunch-class style that I've leveraged into projects.
By Daniel Roy Greenfeld | Jan 01, 2025