#Real Python

Logging in Python

If you use Python's print() function to get information about the flow of your programs, then logging is the natural next step for you. This tutorial will guide you through creating your first logs and show you ways to curate them to grow with your projects.
#intermediate #best-practices #tools
By | Jul 22, 2024



#Django Project – Weblog

Django 5.1 release candidate 1 released

By Natalia Bidart | Jul 24, 2024



#PyCoders

Issue #639 – Asyncio Exceptions, Protocols, Free-Threaded CPython, and More

By | Jul 23, 2024



#testdriven.io

Handling Periodic Tasks in Django with Celery and Docker

Manage periodic tasks with Django, Celery, and Docker.
#Django #Docker #Task Queue
By J-O Eriksson | Jul 22, 2024



#Python Library

ANN: ObjectListView3 for wxPython

ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does. Unfortunately, ObjectListView was never integrated into wxPython core like some other amazing third-party packages were, and so it has become broken over […]
#GUI Toolkits #intermediate #Python #wxPython
By Mike | Jul 23, 2024



#Hashnode

Cara install Odoo di Windows/Linux/Mac

Odoo adalah salah satu software ERP (Enterprise Resource Planning) yang open-source atau gratis digunakan secara legal. Sebelumnya, Odoo dikenal dengan nama OpenERP. Didirikan oleh Fabien Pinckaers pada tahun 2005, Odoo telah berkembang pesat dan dig…
By Satria Putra | Jul 22, 2024


How to Master Machine Learning in 2024: A Complete Guide

Machine Learning (ML) is not just a buzzword; it's a transformative force that’s redefining industries and everyday life. From personalized recommendations on your favorite streaming platforms to the sophistication of self-driving cars, ML is at the …
By ByteScrum Technologies | Jul 22, 2024


Linked List Cycle (Leetcode #141)

Given head, the head of a linked list, determine if the linked list has a cycle in it.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next pointer. Internally, pos is used t…
By Nawat Sunthornyanakit | Jul 22, 2024


Membuat Aplikasi Voice to Voice Translator dengan Python

Pengembangan teknologi kecerdasan artifisial khusunya di bidang large language model semakin membuka kesempatan pemanfaatan yang semakin luas. Salah satunya adalah penerjemahan bahasa voice to voice di mana di sini digabungkan voice recognition, lang…
By Muhammad Ihsan | Jul 22, 2024


Add Two Numbers (Leetcode#2)

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.
You may assume the two …
By Nawat Sunthornyanakit | Jul 22, 2024


Remove Nth From End of List (Leetcode #19)

Given the head of a linked list, remove the n<sup>th</sup> node from the end of the list and return its head.
Example 1:

Input: head = [1,2,3,4,5], n = 2
Output: [1,2,3,5]

Example 2:
Input: head = [1], n = 1
Output: []

Example 3:
Input: head = [1,…
By Nawat Sunthornyanakit | Jul 22, 2024


How Moment.js Saves Your Time: Master Time and Date Management Effortlessly

In the fast-paced world of development, managing time and dates can often feel like navigating a labyrinth of complexities. Enter Moment.js, a game-changer for developers needing to simplify and streamline time management. This guide delves into how …
By Aniket Dhaygude | Jul 22, 2024


Demystifying React Components: Building Blocks of Your UI 🧱

🌟 Introduction
In the world of React, components are the building blocks of your user interface. They enable you to break down complex UIs into smaller, reusable pieces, making your code more manageable and easier to understand. Whether you're a sea…
By Aditya Dhaygude | Jul 22, 2024


My Python Environment Cheat Sheet

Install pyenv
brew update
brew install pyenv

echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc
echo '[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(pyenv init -)"' >> ~/.zshrc

Commands
# List available …
By Gu | Jul 22, 2024


Mastering Testing in Django REST Framework: From Pytest and Fixtures to Mocks and Coverage

Introduction
In this blog we'll see a basic guide on how to test a Django project using the Django REST Framework! Here, we'll learn the basics of testing with pytest, including essential concepts such as fixtures and mocks, to test execution and tes…
By Mateo Ramirez Rubio | Jul 22, 2024


Why Axios Should Be Your First Choice for HTTP Requests in Your Next Project

In the ever-evolving landscape of web development, handling HTTP requests efficiently is crucial. Whether you're building a robust backend service or a dynamic front-end application, the tools you use to manage these requests can significantly impact…
By Aniket Dhaygude | Jul 22, 2024


Python Data Engineer Interview

About Python course
Start programming with our comprehensive Python course. Spanning two distinct modules, students first delve into ‘Python DataFrames’ where they explore data manipulation and analysis techniques.
In ‘Python Algorithms’, learners w…
By Christopher Garzon | Jul 22, 2024


How to Secure Your Python Flask Application with Best Practices

Are you tired of feeling anxious about the security of your Python Flask application? With cyber threats evolving daily, keeping your app safe can feel like a never-ending battle. In this blog, we're going to dive into the best practices for securing…
By Mohit Bhatt | Jul 22, 2024


Understanding List Comprehensions in Python

Lists are fundamental data structures in Python, and they can be created in various ways. Today, we will explore a cleaner syntax for generating lists from iterables using list comprehensions.
Creating a List
There are several methods to create a lis…
By Mangabo Kolawole | Jul 22, 2024


Sighted – Read Faster, Comprehend Better With AI!

Highly recommended article for individuals with ADHD (Attention Deficit Hyperactivity Disorder) and Dyslexia.

Sighted is LIVE here!

Distraction. A very familiar term in recent decades. The Internet has been a blessing for humanity, but it has also …
By Sadra Yahyapour | Jul 22, 2024


Pengenalan Large Language Model

Perkembangan teknologi kecerdasan buatan (AI) telah membawa banyak inovasi, terutama dalam bidang pemrosesan bahasa alami (NLP). Salah satu terobosan terbesar adalah pengembangan Large Language Models (LLMs) yang mampu memahami dan menghasilkan teks …
By Muhammad Ihsan | Jul 22, 2024


Real-time Fleet Management for Car Sharing Services

Managing a car-sharing fleet isn't easy. Keeping track of vehicles, ensuring they are fueled, and optimizing their availability can be quite challenging. This blog post dives into how you can use real-time fuel management to make your car-sharing ser…
By GlassFlow | Jul 22, 2024


DigitGlyph

Unveiling DigitGlyph: My Journey to 99.15% Accuracy in Handwritten Digit Recognition
Introduction
Machine learning is revolutionizing every field, and one of its coolest applications is handwritten digit recognition. Today, I'm super excited to intro…
By Gokul Raja | Jul 22, 2024


Real-time Clickstream Analytics

Understanding user behavior on your website is crucial for optimizing performance and enhancing user experience. This blog post explores the concept of real-time clickstream analytics, a powerful tool that provides immediate insights into how users i…
By GlassFlow | Jul 22, 2024


Google Summer of Code 24 -Phase 1 (Experience and Learnings)

Participating in Google Summer of Code has been wonderful , it has given me the opportunity to work on a real world project. I am contributing to The Virtual Brain project of INCF organization. I will share what challenges I faced and what I learnt t…
By Priya | Jul 22, 2024


Real-time AI powered price recommendation

Imagine you're in the market for a car. You want the best deal possible, but car prices fluctuate based on numerous factors like demand, season, and market trends. For dealerships and online car marketplaces, staying ahead of these fluctuations is cr…
By Bobur Umurzokov | Jul 22, 2024


Django UUIDs… Simple, right?

Ah…. Django UUIDs. I had a recent project at my company, where I was migrating a model from our old monolith codebase, to a microservice. In order to uniquely identify the rows across both services, I decided I would add a UUID column to the monoli…
By Arman Jasuja | Jul 22, 2024


How to Create Custom Layers in TensorFlow?

In TensorFlow, layers are the fundamental building blocks for creating machine learning models. While TensorFlow offers a wide variety of ready-to-use built-in layers, there are situations where these standard layers are not enough to meet specific n…
By Rashid Ul Haq | Jul 22, 2024


Mastering useRef in React: A Comprehensive Guide 🧑‍💻🔍

🌟 Introduction
In the world of React, useRef is a powerful yet often underutilized hook. While it might not be as popular as useState or useEffect, it serves a unique purpose in managing mutable values and interacting with the DOM. In this blog, we'…
By Aditya Dhaygude | Jul 22, 2024


Wondering what to watch? Explore movies using LLM

https://x.com/RachhTapan/status/1815436081447248104

Background (The Story)
How often do you wonder what to watch?🤔especially on weekends!There are so many good movies to pick from!🍿
I got you covered! 😉 Find similar movies quick and easy! With L…
By Tapan Rachchh | Jul 22, 2024


Lawson : A Tool for Lawyers to Understand Court Cases in Seconds

Introduction
Imagine if lawyers could grasp the essence of complex court cases in mere seconds. This idea hit close to home for our team when we learned about the struggles of one teammate’s sister, who is currently studying law. She shared her exper…
By Soumyadip Moni | Jul 22, 2024


Contributing to Django with Djangonaut Space 🚀

It's been a while since I last wrote here. Life has a way of keeping us busy, doesn't it? So much has happened, and I'm excited to share it with you all.
But I come bearing great news! I’ve been selected for the Djangonaut Space 🛸 program to contrib…
By Maryam Yusuf | Jul 22, 2024


Building Your First Web Application with Flask: A Beginner's Guide

Introduction
Flask is a micro web framework for Python. It is designed to be lightweight and easy to use, making it a popular choice for both beginners and experienced developers. Flask is a lightweight and flexible web framework for Python that make…
By Chijiuba Victory | Jul 22, 2024


Data Structures – PR – 01

Welcome, Eng!
Python Recall Session: Your Quick Reference Guide
This session is designed to serve as a quick recall resource for Python concepts. My aim is not to dive deep into topics but to provide a concise overview that allows you to efficiently …
By Kunaal Thanik | Jul 22, 2024


Stay Updated with Python/FastAPI/Django: Weekly News Summary (15/07/2024-21/07/2024

Intro: Check out this insightful summary of Python/FastAPI/Django Weekly News for July 15th to July 21st, 2024. Stay updated with the latest developments, releases, and community updates in the Nil ecosystem.
Key Points:

🖥️ Convert Python Scripts t…
By Poovarasu Sekar | Jul 23, 2024


Membuat Chatbot dengan Model Gratis dan Berbayar menggunakan LangChain

Berbicara tentang chatbot, saat ini tidak akan jauh dari ChatGPT. ChatGPT merupakan teknologi Large Language Models (LLMs) dari OpenAI yang berfokus pada text generation yang menyerupai manusia. Pada artikel ini, kita akan belajar cara membuat aplika…
By Muhammad Ihsan | Jul 23, 2024


1636. Sort Array by Increasing Frequency

class Solution:
def frequencySort(self, nums: List[int]) -> List[int]:
c = Counter(nums)
v = [x[0] for x in sorted(c.items(), key=lambda x:(x[1], -1 * x[0]))]
ans = []

for num in v:
ans += [nu…
By Tapan Rachchh | Jul 23, 2024


Mastering useMemo in React: Boost Your Performance with Memoization 🚀✨

🌟 Introduction
In React development, performance optimization is key to building fast and responsive applications. One powerful tool in your optimization toolkit is the useMemo hook. This hook helps you memoize expensive calculations and avoid unnec…
By Aditya Dhaygude | Jul 23, 2024


Python Flask Employees Database API

Hi There,
This is my first blog post.
I am glad to say that I was able to build a Python flask API to that will store employees information. We can also add new employees to the postgres backend database via POST method.
Link to the code – https://gi…
By Ramesh Babu | Jul 23, 2024


Deploy a Python web app securely inside of private subnets in a VPC

What is VPC (Virtual Private Cloud)?
With Amazon Virtual Private Cloud (Amazon VPC), we can launch AWS resources in a logically isolated virtual network that we've defined. This virtual network closely resembles a traditional network that we'd operat…
By Bandhan Majumder | Jul 23, 2024


What You Need to Start Coding

Importance of learning to code
In today's digital age, learning to code is an invaluable skill. It opens up numerous career opportunities, enhances problem-solving abilities, and empowers individuals to create their own software solutions. Whether yo…
By Stacey Wells | Jul 23, 2024


Day #1 | 100 Day of Python Programming

بِسْمِ اللَّـهِ الرَّحْمَـٰنِ الرَّحِيمِ
Content

Who Am I?

Why Python?

The Goal of challenge

Resources

Getting Start (Lab Setup)

Start Hello World! Code

Who Am I?
0.Who Am I?
Hello, everyone! My name is Mohamed Hegazi. I'm a Computer Science …
By Mohamed Hegazi | Jul 23, 2024


Bitcoin Mining Explained: How It Works

Introduction
In today's digital world, it is essential for one to be updated with the current trends of the world, and due to its extremely volatile nature and high-profit returns, people are drawn toward bitcoin. bitcoin is arguably the first crypto…
By Sagar Goswami | Jul 23, 2024


Asynchronous Programming with Asyncio

In the programming world, the concept of "non-blocking" is pervasive. JavaScript developers often use the term "asynchronous" because it is one of JavaScript's strengths. However, to truly understand asynchronous programming, it's essential to grasp …
By Mangabo Kolawole | Jul 23, 2024


Basics of Python for DevOps Engineers #Day-15

What is Python?
Python is an open-source, general-purpose, high-level, and object-oriented programming language. It was created by Guido van Rossum. Python is known for its readability and simplicity, making it a popular choice for beginners and expe…
By Nikunj Vaishnav | Jul 23, 2024


Boosting Python Email Tasks with Celery, Pipenv, and Python-dotenv

Celery is an open-source asynchronous task queue or job queue based on distributed message passing. While it supports scheduling, it focuses on real-time operations. When used with Pipenv, Python's tool for managing dependencies and virtual environme…
By Rajendra Prajapati | Jul 23, 2024


Python Classes, Formatted Strings, Errors and Variable Scope

In this notebook, we will explore some fundamental concepts in Python that are essential for writing clean, efficient, and maintainable code. These concepts include:

Classes and Objects

Formatted Strings

Handling Errors

Variable Scopes

Don't Mi…
By Kibekityo Juma Shafara | Jul 23, 2024


Wake up Jarvis

Iron Man has always been my favorite Avenger, mainly because of JARVIS. The idea of an AI assistant that could do anything always fascinated me as a child. Back then, I didn't know anything about programming or technology. But as I grew up, my love f…
By Raaavula | Jul 23, 2024


Course Review: Udacity AI Programming with Python

1. Introduction
Beginning in December, I had the chance to participate in a Bertelsmann scholarship. I was allowed to start the Udacity nanodegree "AI Programming with Python" for free. Last month, I finished the nanodegree successfully, and therefor…
By Ronny Bräunlich | Jul 23, 2024


Extend Access to a Private S3 Bucket Using Python

A private S3 bucket protects against a data leak by denying all public access. This approach moves access control from the public S3 API to the network layer. We can use OpenZiti's cryptographic identity and attribute-based policies to securely exten…
By Kenneth Bingham | Jul 23, 2024


Day 15 to pro🚀in Devops♾️:Basics of Python for DevOps Engineers 🐍

What is Python? 🤔
Python is an open-source, general-purpose, high-level, and object-oriented programming language created by Guido van Rossum. It's known for its simplicity and readability, making it an ideal choice for beginners and experienced dev…
By Jawaid Akhtar | Jul 23, 2024


Mastering *args and **kwargs in Python

In Python, there are times when you might not know in advance how many arguments a function should accept. This is where *args and **kwargs come into play. These special symbols allow you to pass a variable number of arguments to a function.
1. *args…
By TEJAS M N | Jul 23, 2024


Python: From Beginners to Pro Part 4

Find parts 1, 2, and 3 here
File Handling: Learn to read from and write to files
File handling is a crucial skill for any programmer. every developer should be able to access and interact with data from external sources and implement calculations an…
By Scofield Idehen | Jul 23, 2024


Arrays and lists

After I didn't pass my last coding interview, I decided to spend some time learning about data structures and algorithms, with the goal to improve my performance in technical interviews.
I've been doing daily challenges on AlgoExpert and watching the…
By Bruno Rossi | Jul 23, 2024


Unveiling Web Development's Secrets: A Guide for the Curious

Unveiling Web Development's Secrets: A Guide for the Curious
Welcome to the enigmatic world of web development, where innovation and creativity converge! In this comprehensive guide, we unveil the secrets behind crafting modern and engaging websites,…
By Samrat Kumar Das | Jul 24, 2024


Understanding atomic transactions in Django: Ensuring data consistency

Django is a high-level web framework that supports building robust applications quickly and efficiently. One of its notable features is its support for data integrity and consistency through built-in mechanisms that developers can seamlessly integrat…
By Ademola Thompson | Jul 23, 2024


Unveiling the Magic of useLayoutEffect in React: When Timing is Everything ⏰✨

🌟 Introduction
In the world of React, hooks provide powerful tools to manage state and side effects in functional components. While useEffect is commonly used for handling side effects, there’s another hook, useLayoutEffect, that can be crucial when…
By Aditya Dhaygude | Jul 24, 2024


Scikit-Learn Reference/Cheatsheet

Scikit-learn is an open source machine learning library that supports supervised and unsupervised learning. It also provides various tools for model fitting, data preprocessing, model selection, model evaluation, and many other utilities.I use scikit…
By Aditya Tiwari | Jul 24, 2024


API Template with Flask-SQLAlchemy-PostgreSQL

Building an API from scratch is time consuming so I decided to create a template for more time building and less time configuring. Here's a run through of how it works. We will be working with Python, Flask, SQLalchemy, Marshmellow, PostgreSQL, and U…
By Ruth | Jul 24, 2024


A Beginner's Guide to Python Scripting

Introduction
Python has emerged as one of the most popular programming languages in recent years, largely due to its simplicity, versatility, and readability. Its ease of use and extensive libraries make it an ideal choice for a wide range of applica…
By Saurabh Adhau | Jul 24, 2024


Creating a Virtual Environment in Python with Pipenv

Introduction
When starting a new Python project, it's essential to manage dependencies and ensure that the project's environment is isolated from other projects and the system-wide Python installation. One of the best ways to achieve this is by using…
By Chijiuba Victory | Jul 24, 2024


Today I Learn Django Pagination System

In class today, I learned about Django's automatic pagination system. This system lets me divide a large set of data into pages, making it easier to navigate. It's especially useful for sites with many products, like an e-commerce website. With pagin…
By Muhammad Zain | Jul 24, 2024


Flask Performance Optimization: Tips and Tricks for Faster Web App

Are your Flask web apps feeling sluggish? Ever wondered how to give them a performance boost without losing sleep over it? Well, you've landed on the right page! In this blog, we're diving into the world of Flask performance optimization. Whether you…
By Mohit Bhatt | Jul 24, 2024


Python Programming Language

Introduction of python
Who can learn this course?
Anyone can learn this course, IT or Non-IT, Graduate or Undergraduate.

What is python?

Python History

Python Applications

Python Features

Python Software and Versions

Working with Python

1.Wha…
By Yogesh Mane | Jul 24, 2024


Tic Tac Toe

Before my university, I had been learning Python data science, but when I entered university I only learned C, so my Python skills became a little bit rusty. I didn't return to Data Science, but at least I'm trying to refresh my memory.
My first pr…
By Evzen Holenda | Jul 24, 2024


Programatically get photos matching content in your apps with Python and Unsplash API

Introduction
I often want to add visually interesting elements to my projects and struggle with content. Let’s say you have a subpage that shows all the posts/any other information related to a city. It would be great to have a photo of said city in …
By Karol Horosin | Jul 24, 2024


Day 15 Python Essentials for DevOps Engineers

What is Python?🐉
Python is an open-source, versatile, and easy-to-read programming language created by Guido van Rossum in 1991. It supports various programming paradigms, making it suitable for various applications.
One of Python's strengths is its…
By Ketan Hiray | Jul 24, 2024


Python is a scripting language?

I was introduced to Python very late in life, I considered it too easy to get over.
As I continued my internship at Summer of Bitcoin, I had some tasks related to python knowledge, I gave in and started finding resources for the same.
Luckily my favo…
By Saksham Gupta | Jul 24, 2024


Transcoding part : 2 End of Video Basic

Understanding Bitrate and Its Relationship with Framerate
In the realm of video streaming, bitrate and framerate are two critical factors that significantly influence the quality and smoothness of video playback.
What is Bitrate?
Bitrate refers to th…
By ritiksharmaaa | Jul 24, 2024


Day #2 | 100 Day of Python Programming

Content
Python Basics:

Python Syntax

Comments

Variables

Data Types

Basic Operations

1. Python Syntax

Python's syntax is essential for writing clear and efficient code. Python's syntax is designed to be readable and straightforward, which make…
By Mohamed Hegazi | Jul 24, 2024


Unlocking the Power of Cloud Computing: A Comprehensive Guide

Hi everyone 👋🏻,
n this blog post, we'll dive into the world of cloud computing 🌥️, comparing it with traditional on-premises methods 🖥️. We’ll explore how cloud computing offers flexibility and efficiency through various service and deployment mo…
By Gopika Jayakrishnan | Jul 24, 2024


Unleash Random Forest's Secrets to Skyrocket Machine Learning Mastery

Hey there, data explorers and machine learning enthusiasts! 🚀 Ever feel like you're lost in a forest of data, trying to find the right path to insights and predictions? Well, today we're going to talk about a magical algorithm that's all about embra…
By Chibueze Onyekpere | Jul 24, 2024


An Introduction to Decorators: Enhancing Functions in Python

Functions are essential parts of programming in Python, and the language provides many patterns that can enhance your experience when using functions.
If you are a functional programming-oriented engineer, the concepts of decorators might interest yo…
By Mangabo Kolawole | Jul 24, 2024


Creating Packets with Scapy

Scapy is a powerful Python library used for packet manipulation. It allows network engineers and security professionals to capture, create, and manipulate network packets with ease. Scapy supports a wide range of network protocols and provides a flex…
By Wilmer Almazan | Jul 24, 2024


Understanding Bookmark Manipulation with BookmarkPhisher

In the digital age, bookmarks are a valuable tool for quick access to frequently visited websites. They provide convenience, but did you know that they can also be exploited? In this blog post, we'll explore how attackers can manipulate bookmark URLs…
By Sobhan Shokri | Jul 24, 2024


Zero, Zero, What Are You? A Deep Dive into Type Conversion

Almost every computer uses a text input buffer for handling user input, providing feasibility and wide-ranging support across various applications. However, it may not be immediately apparent how the characters we type are converted internally for nu…
By Cosmicoppai | Jul 24, 2024


Python Programming Made Easy for Teens Part 1

Introduction to coding
Welcome to the world of programming! If you've ever wondered how video games are made, how websites work, or how apps are created, then you're in the right place. Programming is a powerful skill that can help you turn your idea…
By Teens Dey Code | Jul 25, 2024


Unleash the Power of Python: Crafting an AI-Empowered Image Classifier

Unleash the Power of Python: Crafting an AI-Empowered Image Classifier
Introduction
In today's data-driven era, the ability to analyze and interpret visual information has become crucial across various industries. Python, with its robust ecosystem of…
By Samrat Kumar Das | Jul 25, 2024


Why taxi orders fail? EDA 🚗

Download dataset and source code here
Expected Outcome

Understand Failure Reasons: Identify which failure reasons are most common.

Identify Critical Times: Spot times with high failure rates and their causes.

Optimize Cancellation Processes: Impro…
By Anix Lynch | Jul 25, 2024


CRUD Operations In Python & Django – Part 2

In our previous article, we covered the basics of setting up a Django project and created our Exercise model, which we displayed on the front end as a list. In this article, we’ll dive into performing CRUD operations. For those unfamiliar, CRUD stand…
By Praveen Bisht | Jul 25, 2024


Step-by-Step Guide to Installing Python 3 on Ubuntu

Introduction
Python, the versatile programming language, is widely used for various applications ranging from web development to data analysis and automation. If you're using Ubuntu, installing Python 3 – the latest version of Python – is a straightf…
By Saurabh Adhau | Jul 25, 2024


Simple Docker Project for DevOps Engineers

Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run
What is Docker File ?
A Dockerfile is like a set of instructions used for making a container .

By Ankit Kondal | Jul 25, 2024


Dive into Real-Time with Python: From Web Apps to AI and Beyond

Python's versatility shines in real-time applications! This powerful language, known for its readability, can be combined with supporting technologies to create a vast array of exciting projects.
Here's a glimpse into what Python can do:

Dynamic Web…
By Tharun Kumar | Jul 25, 2024


Unleashing the Power of useReducer in React: Simplify Your State Management 🎯🚀

🌟 Introduction
State management is a fundamental aspect of building robust React applications. While useState is great for simple state logic, useReducer offers a more powerful and scalable approach for managing complex state logic. In this blog, we…
By Aditya Dhaygude | Jul 25, 2024


How do you create a tuple with a range of values in Python?

You can create a tuple with a range of values in Python using various techniques. Here are five examples:

Using the range() function and the tuple() constructor:

# Create a tuple with values from 1 to 5
my_tuple = tuple(range(1, 6))
print(my_tuple)…
By LingarajTechhub All About Programming | Jul 25, 2024


Day 2: Amazon Web Services- An Overview

Amazon Web Services(AWS) is a secure cloud services platform that offers a broad set of cloud-based products including compute services, storage, analytics, networking, databases, developer tools, IoT, security, and management tools, with pay-as-you-…
By Gopika Jayakrishnan | Jul 25, 2024


How to Create a Python CV Parser for Various File Formats

In the competitive job market, automating the process of scanning numerous resumes can save valuable time and resources. A CV parser can extract relevant information from resumes and store it in a structured format for further analysis. This blog pos…
By ByteScrum Technologies | Jul 25, 2024


Efficient Debugging in Python: A Guide to Using pdb Over print

Debugging is an important part of software development. As humans, we create things, and mistakes can happen. Acknowledging this helps us quickly identify errors, track them, and correct them.
This article is about why debugging in Python using the b…
By Mangabo Kolawole | Jul 25, 2024


Discover Terragrunt: An Advanced Guide Beyond Terraform 🌟

What Is Terragrunt?
Terragrunt is an open-source tool developed by GruntWork that helps manage Terraform configurations with ease. By reducing code duplication, it keeps your Terraform code DRY (Don't Repeat Yourself). Terraform itself is a powerful …
By Gopika Jayakrishnan | Jul 25, 2024


Demystifying Bubble Sort: A Simple Guide for Beginners with Implementation

Introduction
Hey there, fellow coders! Today, we're diving into the world of sorting algorithms with one of the simplest and most intuitive ones: Bubble Sort. Sorting is a fundamental task in programming, and understanding basic sorting algorithms is…
By Artur | Jul 25, 2024


Day #3 | 100 Day of Python Programming

بِسْمِ اللَّـهِ الرَّحْمَـٰنِ الرَّحِيمِ
Content

Lists.

Conditional statements:

if

elif

else

Loops:

for

while

Practical Program.

1. Python Lists

Lists in python are used to store multiple items in a single variable For Example

vulner…
By Mohamed Hegazi | Jul 25, 2024


Django Models

Making a Django App
python manage.py startapp app_name

Regularly used Django model fields:

CharField: Used for storing short to medium-length strings.

TextField: Suitable for storing longer text content.

IntegerField: Stores integer values, commo…
By Aarav Poudel | Jul 25, 2024


Introduction to Django: A Comprehensive Beginner's Guide to Backend Web Development

Introduction to Django
Django is a high-level web application framework that develops web applications using Python. It promotes rapid development and clean pragmatic design.
Key Features of Django

Professional Design: Designed by seasoned developer…
By Olatunde Emmanuel | Jul 25, 2024


Day-13 of DevOps Challenge: Basics of Python for DevOps Engineers

What is Python?
Python is open source high-level, and object-oriented programing language which discovered by Guido van Rossum, Python consists of vast libraries and various frameworks like Django, TensorFlow, Flask, Pandas, Keras, etc.
How to Instal…
By Akash Rastogi | Jul 25, 2024


python compiler and interpreter works

How is python compiled and interpreted?
By Yogesh Mane | Jul 25, 2024


Day 2: Control Flow

1. Conditional Statements

If-Else:
pythonCopy codeage = 20
if age >= 18:
print("You are an adult.")
else:
print("You are a minor.")

2. Loops

For Loop:
pythonCopy codefor i in range(5):
print(i)

While Loop:
pythonCop…
By Namdev Pratap | Jul 25, 2024


Day 1:

Day 1: Introduction to Python
1. Getting Started

Installation: Download and install Python from python.org.

IDE: Set up an IDE or text editor (e.g., VS Code, PyCharm, or even Jupyter Notebook).

2. Basic Syntax

Hello World:
pythonCopy codeprint…
By Namdev Pratap | Jul 25, 2024


Innovative Tech Projects: A Comprehensive Guide to the Cutting-Edge

Innovative Tech Projects: A Comprehensive Guide to the Cutting-Edge
Introduction
In today's rapidly evolving technological landscape, innovation is paramount. Embarking on tech projects that push the boundaries of possibility can not only hone your s…
By Samrat Kumar Das | Jul 26, 2024


Python Scripting vs Shell Scripting: Choosing the Right Tool for the Job

Introduction
In the realm of automation and scripting, Python 🐍 and shell scripting are two popular choices, each with its own strengths and use cases. In this article, we'll compare Python scripting and shell scripting, exploring their differences,…
By Saurabh Adhau | Jul 26, 2024


Building Scalable Web Applications with Python Flask: Best Practices

Hey there! Ever wonder how some web apps handle millions of users without breaking a sweat? If you're a Python enthusiast looking to build scalable web applications, then you're in the right place. In this blog, we're diving deep into the world of Py…
By Mohit Bhatt | Jul 26, 2024


Building and Training a Neural Network with PyTorch: A Step-by-Step Guide

Imagine a world where machines can not only see but also understand and classify images as effortlessly as humans. This capability has been at the heart of many breakthroughs in artificial intelligence, revolutionizing fields from healthcare to retai…
By Paul | Jul 26, 2024


Python: A Versatile Language with Powerful Features

What are the Features of a Programming Language?
Before diving into Python's specific attributes, let's clarify what we mean by "features" in the context of programming languages. Essentially, they are the tools and capabilities provided by language …
By Tharun Kumar | Jul 26, 2024


Inner Working of Python

Hey! this is my first blog. Here, I can share my knowledge of how python works internally .
Python is renowned for its simplicity and readability, making it a favorite among beginners and experienced developers alike. But beneath its clean and straig…
By Indrajeet Singh | Jul 26, 2024


How to Use Server-Sent Events with FastAPI

During my recent internship, I faced a task where the server needed to run a long-running process. This couldn't be done with just a POST request because the task could take up to 15 minutes to complete. So, we needed an alternative for this use case…
By Pulkit | Jul 26, 2024


Mastering React Context API: Simplifying State Management Across Your App

🌟 Introduction
State management is a crucial aspect of building robust React applications. While prop drilling and lifting state up can work for smaller applications, they can quickly become cumbersome as your app grows. Enter React Context API, a p…
By Aditya Dhaygude | Jul 26, 2024


Overcoming the Struggle to Start

This is the second blog in my "Creating a Jarvis-Like AI Assistant from Scratch" series on Hashnode.
It's been three days since I posted my first blog, and to be honest, I haven't done much. Here's what I've accomplished so far:

Set up Git on both m…
By Raaavula | Jul 26, 2024


Diving into Python: Week 1 Adventures and Insights.

Hey there and welcome to my blog series where I’m going to document the journey of stepping out into the land of Python programming! I’m feeling fantastic since I’ll be sharing what I went through at this onset of new career path in learning. If you …
By Mohammed Umar | Jul 26, 2024


Setting Up a Professional Python Project in 2024

Starting a new Python project is always a mix of excitement and challenge. Whether you're a seasoned developer or just getting your feet wet, the right tools can significantly boost your productivity and the quality of your code. With development pra…
By Jones Sabino | Jul 26, 2024


How to Deploy a Node.js App on AWS Lambda: Step-by-Step Instructions

Introduction
AWS Lambda offers a serverless computing environment, enabling you to run code without the need for server management. Deploying a Node.js application to AWS Lambda can significantly enhance scalability and cost efficiency for your proje…
By Gopika Jayakrishnan | Jul 26, 2024


The Cybersecurity Revolution: 2024’s Most Game-Changing Trends You Need to Know

In the fast-paced world of cybersecurity, staying ahead of threats is crucial for both individuals and businesses. As we continue through 2024, several emerging trends are poised to redefine how we approach digital security. Here’s what you need to k…
By VerifyVault | Jul 26, 2024


Transcoding Part 3: Why We Need It for Optimal Video Streaming

The Importance of Transcoding in Video Streaming: Adapting to Viewer Needs
Imagine you've just launched a new video streaming service, offering high-quality 4K content. The videos look stunning, and you're excited to deliver an unparalleled viewing e…
By ritiksharmaaa | Jul 26, 2024


Day-14 of DevOps Challenge: Basics of Docker for DevOps Engineers

Docker is a platform that allows you to automate the deployment of applications inside lightweight, portable containers. Containers include everything the application needs to run: code, runtime, system tools, libraries, and settings. It is an essent…
By Akash Rastogi | Jul 26, 2024


Page Object Model

The Page Object Model (POM) is a design pattern in software testing where web page elements are represented as objects. Each page class encapsulates the page's behaviors and elements, promoting code reusability and maintainability by separating test …
By Kunaal Thanik | Jul 26, 2024


Top 10 Java Libraries Every Developer Should Know

Top 10 Java Libraries Every Developer Should Know
Java is a versatile and widely-used programming language that powers many applications across different domains. To enhance productivity and code quality, developers often rely on libraries that provi…
By mediageneous social | Jul 26, 2024


Setting Up a Professional Python Project in 2024

Intro
Starting a new Python project is always a mix of excitement and challenge. Whether you're a seasoned developer or just getting your feet wet, the right tools can significantly boost your productivity and the quality of your code. With developme…
By Jones Sabino | Jul 26, 2024


Google Tasks backend

I have integrated the Google Task API here.
The Calendar Project is a FastAPI-based web application that integrates with the Google Calendar API to manage events and tasks. The application provides endpoints to create, read, update, and delete events…
By Razzaq Shikalgar | Jul 26, 2024


🌿 Développement d'un Système d'Arrosage Automatique Intelligent avec Raspberry Pi, Python, MQTT et une Plateforme Web

Avec l'essor de l'Internet des Objets (IoT), de plus en plus de projets voient le jour pour automatiser des tâches du quotidien. Un exemple pertinent est le développement d'un système d'arrosage automatique intelligent, combinant Raspberry Pi, Python…
By Xaali | Jul 26, 2024


Using Python in QGIS to scale up London's cycle infrastructure to match Amsterdam.

I’ve created a tutorial that shows you how to use code to scale up roads, and cycle paths, or even modify highway types between cities!
Bonus: There’s also a separate video diving deeper into a more advanced method specifically for modifying cycle pa…
By Eamon Magd | Jul 26, 2024


Mastering XGBoost: A Comprehensive Guide to Hyperparameter Tuning

Introduction
Welcome back, fellow data enthusiasts! In our last blog, we explored the intricacies of hyperparameter tuning in Gradient Boosting Machines (GBM). Today, we are going to take a step further and dive into XGBoost (Extreme Gradient Boostin…
By Sujit Nirmal | Jul 26, 2024


Handling JSON Data in Python

JSON (JavaScript Object Notation) is a lightweight data interchange format that's easy for humans to read and write and for machines to parse and generate.
Handling JSON data efficiently is crucial for building applications that interact with web ser…
By Mangabo Kolawole | Jul 26, 2024


Launch Your Django App Into The World

Prerequisites

A fresh DigitalOcean droplet running Ubuntu 14.04

A Git Repository (on Bitbucket or Github) which you use with your Django Application

You should have a local Django app setup using Postgres setup neatly in a virtualenv

Local comput…
By Debanna Das | Jul 27, 2024


Unveiling the Secrets of Python's Power: A Guide to Mastering Python for Backend Development

Unveiling the Secrets of Python's Power: A Guide to Mastering Python for Backend Development
Introduction
Python's versatility in web development knows no bounds, as it seamlessly adapts to both frontend and backend roles. This comprehensive guide de…
By Samrat Kumar Das | Jul 27, 2024


Mastering Binary Search: An Easy Guide for Beginners

Introduction
Hey there, fellow coders! Today, we're diving into the world of searching algorithms with one of the most efficient and powerful methods: Binary Search. Searching for an item in a sorted list can be done quickly and efficiently with this…
By Artur | Jul 27, 2024


Exploring Data Types: Strings and String Handling Functions in Python

Introduction
In Python, strings are one of the fundamental data types used to represent text. String handling functions provide powerful tools for manipulating and working with strings efficiently. In this article, we'll delve into strings and explor…
By Saurabh Adhau | Jul 27, 2024


Revolutionizing Recruitment: An AI-Powered Hackathon Project

This is a hackathon project created in collaboration with Chris Blesson
Disclaimer
This project article is a long read, so grab a popcorn or your favorite snack 😀. If you want to get to the high level offerings of our product, feel free to skip to t…
By lokprakash babu | Jul 27, 2024


Week 2 Overview:

DSA:
Learned topics like C++ STL, and some basic maths topics like armstrong no, prime nos, palindrome no, printing all divisors, extracting digits etc.
Overview:
Was unsatisfied with what I've achieved this week. Will try to cover up in week 3.
By Jaideep Singh Sekhon | Jul 27, 2024


Python Tokens

Python Tokens A smallest individual unit within program is called token.

Keywords

Identifiers

Literals

Data types

Operators

1.keywords: Keywords are language related words.Keywords are reserved words. The meaning of these words reserved by pyt…
By Yogesh Mane | Jul 27, 2024


Trading System Components

In the last article, I discussed best practices for developing trading software, such as using events, data storage, or separate configurations. This time, let's delve into the strategic part, specifically how to organize it effectively from an archi…
By JungleSven | Jul 27, 2024


A Beginner's Guide to Web Scraping with Python

Web scraping is a powerful technique used to extract information from websites. In this article, we'll explore how to perform web scraping using Python, the requests library, and BeautifulSoup. We'll also include a simple code snippet and its output …
By Rahul Boney | Jul 27, 2024


Understanding React Reconciliation: A Deep Dive into the Virtual DOM

🌟 Introduction
React's popularity stems from its efficient and declarative approach to building user interfaces. One of the core concepts behind this efficiency is React's reconciliation process, powered by the Virtual DOM. Understanding reconciliat…
By Aditya Dhaygude | Jul 27, 2024


C++ Tips and Tricks for Advanced Developers

C++ Tips and Tricks for Advanced Developers
C++ is a powerful and versatile programming language that continues to be a favorite among developers for systems programming, game development, and performance-critical applications. For advanced developer…
By mediageneous social | Jul 27, 2024


CMD on Autopilot:

About:
If you often forget command line commands, then this might interest you.
Presenting CMD on autopilot. Perform tasks in the command line just by using simple English text. The program targets the Git Bash command line to convert natural languag…
By Jatin Rawat | Jul 27, 2024


MultiQuine: Weaving the web of Quines

Previously, we've seen how to construct QuineRelays by leveraging the existence of Introns. Now, prepare to have your minds blown once again as we unlock the next level of Quine wizardry: MultiQuine
We start by saying what a Bi-Quine (or more general…
By Darshan A S | Jul 27, 2024


Why Skipping Two-Factor Authentication is Like Leaving Your Front Door Unlocked

In today's digital age, there is no room for compromise on the security of your online accounts. Cyber threats are at an all-time high in terms of sophistication; thus, passwords no longer cut it. Here comes Two-Factor Authentication (2FA) as your di…
By VerifyVault | Jul 27, 2024


NGINX in Action: A Case Study on Enhancing In-House Web Performance

🤔 Context:
So recently I had project where our team had to build a Flask-React Application that would be used by other micro service developers to run automated test and perform analytics on same.
Once we were done with application we were give a VM…
By Akshat Sharma | Jul 27, 2024


Use Azure DevOps Pipeline variables via Python

Background
剛開始接觸 Azure DevOps Pipeline 時,曾經為了 Pipeline 變數而煩惱了一陣子,希望透過這篇筆記讓剛接觸的新手能夠有個入門基礎(以友善又諸多限制的 Classic editor 為主),會介紹 Pipeline variables & Variable groups;使用 Python script 作為 task 撈上述兩種變數、讀取 args 以及設置臨時的 Pipeline variables。

Pipeline variables & …
By Kanglin Wu | Jul 27, 2024


Invert Binary Tree (Leetcode #226)

Given the root of a binary tree, invert the tree, and return its root.
Example 1:

Input: root = [4,2,7,1,3,6,9]
Output: [4,7,2,9,6,3,1]

Example 2:

Input: root = [2,1,3]
Output: [2,3,1]

Example 3:
Input: root = []
Output: []

Constraints:

The num…
By Nawat Sunthornyanakit | Jul 27, 2024


Find the Duplicate Number (Leetcode #287)

Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive.
There is only one repeated number in nums, return this repeated number.
You must solve the problem without modifying the array nums and use…
By Nawat Sunthornyanakit | Jul 27, 2024


Using MediaFiles in Django

Using media files in Django involves handling user-uploaded content such as images, videos, and other files. Here’s a step-by-step guide to setting up and using media files in a Django project.
Scenario: Handling Media Files in Django
Step 1: Configu…
By Aarav Poudel | Jul 27, 2024


Handling Static files in Django

Static files in Django refer to files that do not change and are served directly to the user. These files include things like CSS stylesheets, JavaScript files, images, fonts, and other resources that are used to enhance the look and functionality of…
By Aarav Poudel | Jul 27, 2024


Mastering React Portals: Rendering Components Outside the DOM Hierarchy

🌟 Introduction
React is known for its powerful component-based architecture, making it easy to build complex user interfaces. However, there are times when you need to render a component outside its parent DOM hierarchy. This is where React Portals …
By Aditya Dhaygude | Jul 27, 2024


Rethinking Row space and Column space in the Data Way

Hi everyone, welcome to my blog. In this blog, I have addressed a very basic concept of linear algebra: row space and column space. While there are a huge amount of resources that address these concepts, I have shared my perspective, and I have tried…
By Rudra Sarkar | Jul 27, 2024


Decoding System Design of Rate Limiter: 2

Hello and welcome back reader to this 2nd instalment of our rate limiter system design, in this section, we will fully uncover the remaining types of rate limiter algorithms that were not discussed in the first part, if you are reading this without r…
By Ganesh Yadav | Jul 27, 2024


Async/Await vs. Threads: Choosing the Right Approach

When trying to improve the performance of a program in Python, concurrency is often considered. Choosing the right concurrency model can drastically impact your application, depending on the type of software you're developing.
In this article, we wil…
By Mangabo Kolawole | Jul 27, 2024


Deploying a Full-Stack Application Using FastAPI, PostgreSQL, React, and Docker

Introduction
In today's rapidly evolving tech landscape, the ability to deploy scalable and efficient applications is crucial. This article explores the process of deploying a full-stack application using FastAPI for the backend, PostgreSQL as the da…
By Ayodeji Hamed | Jul 27, 2024


Installing Python packages with pip

Here are the basics you need to know about installing Python packages.
Apart from the built-in modules that come by default with the Python installation (the Standard Library), you need to install third-packages packages to be able to use them in you…
By Constantin Lungu | Jul 27, 2024


Leo Ledger in All Its Pleasure

Pulling Another Switcharoo
Yeah… it happened again. The tech stack I was planning to use for this project has yet again been altered. But this time, I'm sure most of you would agree that this change was for the better and I'll break down the reason…
By Kyle Leonard | Jul 27, 2024


Understanding Functional Programming in Haskell

Understanding Functional Programming in Haskell
Functional programming is a paradigm that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. Haskell, a purely functional programming language, of…
By mediageneous social | Jul 28, 2024


Exploring Keywords in Python

Introduction
Keywords in Python are reserved words that have special meanings and purposes within the language. They serve as the foundation for defining syntax rules and structures in Python programs. In this article, we'll explore all the keywords …
By Saurabh Adhau | Jul 28, 2024


Series 6/6: CONCLUSIONS AND RECOMMENDATIONS

Introduction
This chapter summarizes the key findings of the document extraction evaluation using Large Language Models (LLMs). It discusses the overall effectiveness of LLMs in extracting data for summarization purposes, highlights areas of strength…
By Pramod Gupta | Jul 28, 2024


Unlocking the Secrets of Video Transcoding: A Comprehensive Guide to FFmpeg

1. Introduction to Industry Transcoding Practices

In the ever-evolving world of video streaming, transcoding is a crucial process that ensures content can be viewed seamlessly across a multitude of devices and network conditions. Transcoding involve…
By ritiksharmaaa | Jul 28, 2024


Enhance Your Coding with GitHub's Google Gemini LLM Assistant

Hey everyone! I'm thrilled to give you a sneak peek into my latest project for the "Gemini API Developer Competition #BuildwithGemini" by Google! 🌟 This is a work in progress, but I'm excited to share what I've developed.
🎥 Check out the demo video…
By Vedant Bhagwat | Jul 28, 2024


🌟 Unlocking the Power of Custom Hooks in React

🌟 Introduction
React Hooks have revolutionized the way we write components, enabling us to use state and other React features without writing a class. Among the Hooks provided by React, Custom Hooks are particularly powerful. They allow you to extra…
By Aditya Dhaygude | Jul 28, 2024


Series 5/6: Comprehensive Case Study on Extracting Data from W-2, W-8BEN, and W-9 Forms Using LLMs

Introduction
In the ever-evolving realm of natural language processing (NLP), the extraction of structured information from unstructured documents is a critical task. This comprehensive case study explores the performance of various Large Language Mo…
By Pramod Gupta | Jul 28, 2024


Exploring Pandas DataFrame Filtering Methods

In this blog post, we'll delve into various Pandas DataFrame filtering methods. To illustrate each method, we'll use a sample dataset containing information about cars. Let's start by creating our sample dataset:
import pandas as pd

data = {
'Ca…
By Emeron Marcelle | Jul 28, 2024


Meta Llama 3.1 405B: The Most Sophisticated Open Source Model

Hi AI Enthusiasts,
Welcome to this week's Magic AI News, where we present you the most exciting AI news of the week. This week was BIG of open-source AI. We have organized the top news for you!
This week's Magic AI tool is perfect for online writers …
By Tinz Twins | Jul 28, 2024


Python3 – Part 6

String methods

Covert first character of a string in uppercase

Syntax –
var = "sayan dam"
print(var.capitalize())

Output –
Sayan dam

Return a centered string

Syntax –
var = "sayan dam"
c1 = var.center(20)
print(c1)

Output –
sayan dam

Count…
By Sayan Dam | Jul 28, 2024


Day-15 of DevOps Challenge: Docker Project for DevOps Engineers

What is Dockerfile?
A Dockerfile is a text file that contains a series of instructions on how to build a Docker image. These instructions are executed step-by-step by the Docker engine to create a containerized environment that can be consistently re…
By Akash Rastogi | Jul 28, 2024


Introduction to Django

Django is a high-level Python web framework designed to rapidly develop secure and maintainable websites. It emphasizes clean design, pragmatic development, and the reuse of components.
Django is a high-level Python web framework designed to encourag…
By Narayana M V L | Jul 28, 2024


Introducing Summarly: Your AI Sidekick for Quick YouTube Summaries

Introduction
In our fast-paced world, time is precious. With so much content online, especially on YouTube, it can be hard to keep up. That's where Summarly comes in—a browser extension that uses AI to give you quick, concise summaries of YouTube vid…
By Syed Md Mihan Chistie | Jul 28, 2024


Remote Workers, Beware: 5 Cybersecurity Pitfalls That Could Ruin Your Job (And How to Avoid Them!)

In the age of telework—cyber threats lurk behind every click, and your home office could be a hacker's dream come true. More individuals are currently working from home than ever before, thus making the risks associated with cybersecurity higher than…
By VerifyVault | Jul 28, 2024



#Python Software Foundation

Python’s Supportive and Welcoming Environment is Tightly Coupled to Its Progress

By Deb Nicholson | Jul 26, 2024


Notice of Python Software Foundation Bylaws change, effective 10 August 2024

By Deb Nicholson | Jul 26, 2024



#Dev.to

Automatically reload Celery workers with a custom Django command

#django #celery #python
By Tyler Smith | Jul 22, 2024


Introducing gs-fastcopy

#python #performance #googlecloud #cloudstorage
By David Haley | Jul 22, 2024


LivePortrait AI: Transform Static Photos into Talking Videos. Now Supports Video-to-Video Conversion and Superior Expressions

#beginners #tutorial #python #ai
By Furkan Gözükara | Jul 22, 2024


"From Concept to Code: Building a Reminder App with Python"

#programming #python #devops #opensource
By Fortune | Jul 22, 2024


Python Matplotlib | Triangular Grid Interpolation

#labex #python #coding #programming
By Labby | Jul 22, 2024


Concurrent and Parallel Programming in Python (course)

#beginners #python #learning #programming
By Aidas Petryla | Jul 22, 2024


🐍 Python Pro Tips That I Wish I Use More…

#python #programming #softwaredevelopment #codenewbie
By Hisham Elamir | Jul 22, 2024


Do Not Make This Mistake with Python Descriptors

#python #django #descriptors
By Dmitry Posokhov | Jul 22, 2024


The Python alternative to Power BI, Qlik & Tableau

#python #programming #datascience #productivity
By Anmol Baranwal | Jul 22, 2024


Modernizing Bootstrap in a C# .NET Codebase: A Python-Powered Migration from 3 to 5

#python #productivity #webdev
By Stokry | Jul 22, 2024


Ibuprofeno.py💊| #147: Explica este código Python

#python #spanish #learning #beginners
By Cristian Fernando | Jul 22, 2024


A Comprehensive Python Framework for Web Development by Eazealliance

#webdev #web2py #python
By eazealliance services | Jul 22, 2024


IS Django Dying?

#discuss #python #django #webdev
By krishnaa192 | Jul 22, 2024


Understanding List Comprehensions in Python

#python #programming #beginners
By Mangabo Kolawole | Jul 22, 2024


Creating Your Own AI Assistant Made Easy with Sista AI

#ai #react #javascript #python
By Sista AI | Jul 22, 2024


How to use Phonepe api in Python and Integrate phonepe gateway

#phonepe #python #payment #api
By Ankit malik | Jul 22, 2024


I 10x’d my Coding Productivity Using this AI Tool: I wish I had known it Earlier 🤯

#javascript #python #opensource #ai
By Nevo David | Jul 22, 2024


How to Create a Simple URL Shortener Tool with Python

#python #flask #urlshortener #programming
By ZeroByteCode | Jul 22, 2024


How to Create a Basic Article Writing Tool with Python and OpenAI API

#python #ai #openai #writing
By ZeroByteCode | Jul 22, 2024


Python – List slicing

#beginners #python #programming #softwaredevelopment
By OLOHIOMEU | Jul 23, 2024


CPU SIMULATOR

#python #learning
By Santiago Díaz | Jul 22, 2024


Wanting what was or will be

#python #100daysofpython #beginners
By Myrojyn | Jul 22, 2024


PYMODINS

#pymodins #python #programming #opensource
By Nandhan | Jul 23, 2024


Building a CLI Hangman Game in Python

#codingnomads #python #cli #webdev
By Tyler Edlin | Jul 23, 2024


Fixed bugs for my pytorch like library

#pytorch #python #tensorflow #machinelearning
By Okerew | Jul 23, 2024


Accepting Bitcoin payments with Python, Rust and PyO3

#python #rust #bitcoin #tutorial
By Rafael Viscarra | Jul 23, 2024


gs-fastcopy: get CPU count for upload workers

#performance #cloudstorage #googlecloud #python
By David Haley | Jul 23, 2024


Stay Updated with Python/FastAPI/Django: Weekly News Summary (15/07/2024-21/07/2024

#python #django #fastapi #flask
By Poovarasu Sekar | Jul 23, 2024


I Scoured Udemy For The Best Developer Courses: Here Are The 3 Teachers That Are Worth Your Time

#learning #webdev #python #javascript
By Jeff Jakinovich | Jul 23, 2024


Asynchronous Programming with Asyncio

#python #beginners
By Mangabo Kolawole | Jul 23, 2024


Defining tasks, brokers, workers, and backends in Celery

#celery #python #django
By Tyler Smith | Jul 23, 2024


Top 20 Web Crawling Tools zur schnellen Datenextraktion von Websites

#webscraping #octoparse #python #webdev
By Emilia | Jul 23, 2024


THE BASICS OF PYTHON

#python #beginners #basic #programming
By Hillary-prosper Wahua | Jul 23, 2024


Programming Tips and Tricks: Level Up Your Coding Game

#webdev #coding #sharepointframework #python
By Alex Roor | Jul 23, 2024


🗣️ OpenAI Language Learning Assistant UPDATE

#openai #python #opensource #cli
By GeroZayas | Jul 23, 2024


How We Create Outdoor Celebrations Website: Technologies and Future Goals

#javascript #python
By Landon Carter | Jul 23, 2024


Ibuprofeno.py💊| #148: Explica este código Python

#beginners #learning #spanish #python
By Cristian Fernando | Jul 23, 2024


Enhancing User Experience with Voice UI Controller through Sista AI

#ai #react #javascript #python
By Sista AI | Jul 23, 2024


Implementing React and Django with Docker and Nginx

#javascript #python #react #django
By Oscar | Jul 23, 2024


How Random Numbers are Generated

#random #javascript #python #how
By Sh Raj | Jul 23, 2024


Web Development: Mastering Them All

#webdev #programming #python #devops
By jinesh vora | Jul 23, 2024


10 Advanced Python Hacks 4 You

#python #softwaredevelopment #coding #programming
By Hisham Elamir | Jul 23, 2024


PassCrypt: A CLI based Password Manager

#python #cli #showdev #documentation
By Tejus Gupta | Jul 23, 2024


AI Trading Model

#ai #machinelearning #python #programming
By Dexter | Jul 23, 2024


Learning Python.

#webdev #python
By Ibad Shah | Jul 23, 2024


Enhance your algorithm skills: The ultimate guide to Atcoder in 2024

#atcoder #competativeprogramming #python #beginners
By Fire Dingo | Jul 23, 2024


Python: From Beginners to Pro Part 4

#python #programming #beginners #learning
By Scofield Idehen | Jul 23, 2024


Top Python Libraries Every Developer Should Know

#python #programming #ai
By MyExamCloud | Jul 24, 2024


Building an Equal weight portfolio allocation strategy with Python

#python #finance
By Pluri45 | Jul 24, 2024


Creating Voice UI in React: The Ultimate Guide With Sista AI

#ai #react #javascript #python
By Sista AI | Jul 24, 2024


Making a Roguelike while chillin out part I

#python #gamedev #programming #devjournal
By Draculinio | Jul 24, 2024


Possible topics for Python podcast

#podcast #python #humanities
By Boris Orekhov | Jul 24, 2024


How to use razorpay api and integrate payment gateway

#python #razorypay #api #payment
By Ankit malik | Jul 24, 2024


Working with PDF and Word Documents in Python

#python #pythontraining #pythononline
By Nanditham | Jul 24, 2024


Python List Difference | Programming Tutorials | Lab

#labex #python #coding #programming
By Labby | Jul 24, 2024


DuckDuckGo Scraper ohne Kodierung

#nocoding #python #webscraping #duckduckgo
By Emilia | Jul 24, 2024


Fighting The Bad Guys in a Fun Way

#cybersecurity #security #coding #python
By DiegoGo | Jul 24, 2024


Enhancing User Experience with Open Source AI Voice Assistants

#ai #react #javascript #python
By Sista AI | Jul 24, 2024


Customer Segmentation – Time Based Cohort Analysis

#dataanalysis #cohortanalysis #python #customersegmentation
By mwang-cmn | Jul 24, 2024


Ibuprofeno.py💊| #149: Explica este código Python

#python #spanish #learning #beginners
By Cristian Fernando | Jul 24, 2024


Monitor the Performance of your Python FastAPI App with AppSignal

#python #fastapi
By Jan Giacomelli | Jul 24, 2024


Understanding FastAPI: How OpenAPI works

#fastapi #openapi #python #pydantic
By Rafael de Oliveira Marques | Jul 24, 2024


Plugins de Obsidian para Programadores

#python #javascript #obsidian #productivity
By GeroZayas | Jul 24, 2024


Tricky Python Questions

#python #career #webdev #interview
By Tomer Raitz | Jul 24, 2024


8.Python Loops

#programming #learning #beginners #python
By Ranjith Jr | Jul 24, 2024


7.Strings Indexing & Slicing

#python #beginners #programming #learning
By Ranjith Jr | Jul 24, 2024


PHP vs. Python: The Comeback Kid

#php #python
By Ayan Ozturk | Jul 24, 2024


AI Research Agent with memory using GPT-4o-mini: Step-by-Step Guide.

#webdev #python #programming #beginners
By Ebikara Dandeson Spiff | Jul 24, 2024


Python – Indexing and Slicing

#programming #beginners #tutorial #python
By ABYS | Jul 24, 2024


Python

#python
By msp | Jul 24, 2024


Python: From Beginners to Pro (Project Part)

#python #programming #beginners #webdev
By Scofield Idehen | Jul 24, 2024


Embrace the Power of Nix for Your Python + Rust Workflow

#nix #python #devops #opensource
By Hussain Sultan | Jul 24, 2024


¿Que es python?

#python #webdev #beginners #programming
By Ludwig | Jul 24, 2024


Generating Fake bulk data using Factory-Boy in Python

#python #testing #programming
By Subhodeep Sarkar | Jul 24, 2024


Azure Cloud Resume Challenge

#azure #python #cloud #microsoft
By Jordan Mccowan | Jul 25, 2024


An Introduction to Decorators: Enhancing Functions in Python

#python #programming #beginners
By Mangabo Kolawole | Jul 25, 2024


Enhanced Password Management: Edit Passwords Seamlessly

#javascript #python #sql #tools
By InterSystems Developer | Jul 25, 2024


Unity Catalog for IRIS Workloads – Collision Theory Confirmed

#ai #cloud #python #security
By InterSystems Developer | Jul 25, 2024


Using LLMs without Burning Dollars – Different Database Query Strategies

#ai #chatgpt #python #fhir
By InterSystems Developer | Jul 25, 2024


Creando API con FAST API y con el servidor uvicorn: si tus cambios no se actualizan en tu servidor lugar

#fastapi #beginners #python
By Mirina-Gonzales | Jul 25, 2024


Harnessing Real-Time Object Detection in the Browser with TensorFlow.js and COCO-SSD

#tensorflow #javascript #machinelearning #python
By Ekemini Thompson | Jul 25, 2024


Introduction to Python for Backend Engineering

#webdev #python #beginners #programming
By kihuni | Jul 25, 2024


Demystifying React UI Controllers: Empowering Apps with Sista AI

#ai #react #javascript #python
By Sista AI | Jul 25, 2024


The Journey of Creating the Dupont Plumbing Website: Overcoming Challenges and Embracing Future Goals

#javascript #python
By Mason Blake | Jul 25, 2024


Intron: Junk or not Junk, that is the quine-tion

#quine #dna #selfrep #python
By Darshan A S | Jul 25, 2024


CRUD Operations In Python & Django – Part 2

#python #django #fullstack #web
By Praveen Bisht | Jul 25, 2024


Use SQLite as a Celery broker in Django

#django #celery #python #sqlite
By Tyler Smith | Jul 25, 2024


Hiring a Remote Blockchain Developer (Python/Solidity / Smart Contract)

#python #blockchain #web3 #solidity
By carlos christian gil | Jul 25, 2024


Introduction to Django and Setting Up the Development Environment

#webdev #django #beginners #programming
By kihuni | Jul 25, 2024


Azure Pipelines: uv Cache

#python #azurepipelines #azure
By Alexander Kammerer | Jul 25, 2024


Ibuprofeno.py💊| #150: Explica este código Python

#python #spanish #learning #beginners
By Cristian Fernando | Jul 25, 2024


How to Create a Simple Markdown to HTML Converter in Python

#python #productivity
By Stokry | Jul 25, 2024


Build a real-time crypto analytics dashboard with Beavers and Perspective

#python #streaming #kafka
By 0x26res | Jul 25, 2024


What I've Learned This Week #0

#python #flask #programming #learning
By Kodex | Jul 25, 2024


Dive into Real-Time with Python: From Web Apps to AI and Beyond

#python #webdev #productivity #programming
By Tharun Kumar | Jul 25, 2024


Beginner’s Guide to Implementing a Simple Machine Learning Project

#machinelearning #tutorial #python #beginners
By Osama B.Sassi | Jul 25, 2024


Creating a CSV to Graph Generator App Using ToolJet and Python Libraries 🚀

#python #beginners #programming #tutorial
By Karan Rathod | Jul 25, 2024


Python is a versatile language and you can indeed use it for web development

#beginners #python #ai #learning
By Olatunji Ayodele Abidemi | Jul 25, 2024


Python Index tutorial 22.07.2024

#python
By Arokya Naresh | Jul 25, 2024


Welcome to Virtual Bank: Your Simulated Banking Platform

#opensource #django #webdev #api
By Adeniji Olajide | Jul 25, 2024


Understanding Django Fundamentals

#webdev #beginners #python #django
By kihuni | Jul 25, 2024


sep, end parameter in python print function()

#python
By msp | Jul 25, 2024


Indexing and Slicing

#python
By Suresh S | Jul 25, 2024


Creating Custom Functions In PostgreSQL

#postgres #perl #python
By Lawrence Cooke | Jul 25, 2024


Introduction to Django: A Comprehensive Beginner's Guide to Backend Web Development

#webdev #django #backenddevelopment #softwaredevelopment
By Olatunde Emmanuel | Jul 25, 2024


Efficient Debugging in Python: A Guide to Using pdb Over print

#python #programming #beginners
By Mangabo Kolawole | Jul 25, 2024


𝗟𝗲𝗮𝗿𝗻 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 𝗙𝗿𝗼𝗺 𝗦𝗰𝗿𝗮𝘁𝗰𝗵

#machinelearning #dl #python
By Shahadat Sagor | Jul 25, 2024


Boot.dev vs Codecademy from newbie perspective

#javascript #webdev #beginners #python
By mlem_dev | Jul 26, 2024


FastAPI Todo App: Setting Up Your Todo App Project

#python #fastapi #webdev #tutorial
By James | Jul 26, 2024


Print()

#python #programming #parottasalna
By kavin suresh | Jul 26, 2024


Print()

#python #programming #parottasalna
By kavin suresh | Jul 26, 2024


Print()

#python #programming #parottasalna
By kavin suresh | Jul 26, 2024


Print()

#python #programming #parottasalna
By kavin suresh | Jul 26, 2024


Print()

#python #programming #parottasalna
By kavin suresh | Jul 26, 2024


Week 2 – Creating Simple Blog App

#django #python #webdev
By Jaylord Vhan Fabor | Jul 26, 2024


Comprehensive Machine Learning Terminology Guide

#machinelearning #deeplearning #python #beginners
By Appy | Jul 26, 2024


9 months of Machine Learning and beyond: Machine Learning A-Z

#machinelearning #deeplearning #python #ai
By Alexey Tukalo | Jul 26, 2024


Reinforcement Learning from Scratch – Part 1 – Tabular Q Learning

#ai #machinelearning #python #tutorial
By Akshay Ballal | Jul 26, 2024


Ibuprofeno.py💊| #151: Explica este código Python

#python #spanish #learning #beginners
By Cristian Fernando | Jul 26, 2024


Messaging System with Flask App and RabbitMQ/Celery for Email Handling 🚀

#python #devops #celery #rabbitmq
By akintola abdulazeez oladele | Jul 26, 2024


The Importance of Fibonacci in Machine Learning and Data Science

#python #machinelearning #datascience
By lilyNeema | Jul 26, 2024


XGBoost: The Superpower of Gradient Boosting

#python #ai #machinelearning #beginners
By Mohd Aquib | Jul 26, 2024


Building and Training a Neural Network with PyTorch: A Step-by-Step Guide

#machinelearning #python #ai #learning
By Paul Chibueze | Jul 26, 2024


Making a Roguelike while chillin out part II

#python #gamedev #learning #programming
By Draculinio | Jul 26, 2024


Method Resolution Order in Python 3

#python #beginners #inheritance #oop
By Hungrywolf | Jul 26, 2024


Create a Simple Blog Application Using Django

#django #webdev #backend #beginners
By kihuni | Jul 26, 2024


Using Python in QGIS to scale up London's cycle infrastructure to match Amsterdam.

#python #mapping #tutorial
By Eamon Magd | Jul 26, 2024


Functions()

#python #programming #functions
By kavin suresh | Jul 26, 2024


Operators, Conditionals and Inputs

#python #operators #conditionals #inputs
By kavin suresh | Jul 26, 2024


Building a Travel Support Agent with RAG and PostgreSQL, Using IaC.

#rag #llm #python #aws
By Elizabeth Fuentes L | Jul 26, 2024


tool guitar players

#guitar #opensource #python
By Thomas Volk | Jul 26, 2024


What is the difference between `gettext` and `gettext_lazy`?

#django
By DoriDoro | Jul 26, 2024


PYTHON-FUNDAMENTALS: CONSTANTS, VARIABLES AND DATA TYPES

#python #variables #constants #datatypes
By kavin suresh | Jul 26, 2024


Getting Accurate Exchange Rates with Currency JSON API

#api #react #python #ai
By martinbaldwin127 | Jul 26, 2024


Why You Need Voice Assistant on Your Website

#ai #react #javascript #python
By Sista AI | Jul 27, 2024


Diversifying Emojis With AI

#emoji #ai #creativecoding #python
By Jordan | Jul 27, 2024


Handling JSON Data in Python

#python #programming #webdev #beginners
By Mangabo Kolawole | Jul 27, 2024


How to Replace OOP in Rust?

#rust #oop #python #backend
By Igor Yusupov | Jul 27, 2024


Indexing and slicing

#python #programming #indexing #slicing
By kavin suresh | Jul 27, 2024


Voice E-Commerce Revolution: Enhancing Online Shopping Experience with Sista AI

#ai #react #javascript #python
By Sista AI | Jul 27, 2024


Web-server X Load Balancers

#devops #docker #githubactions #django
By Fife Oluwabunmi | Jul 27, 2024


Get better autocomplete for Faker when using factory_boy

#python #testing
By Tyler Smith | Jul 27, 2024


Trading System Components

#tutorial #architecture #python #development
By Jungle Sven | Jul 27, 2024


Talk with You Series #3

#python #tutorial #algorithms
By Max Kumundzhiev | Jul 27, 2024


Journal of special developments at my current job

#django
By DoriDoro | Jul 27, 2024


Ibuprofeno.py💊| #152: Explica este código Python

#python #spanish #learning #beginners
By Cristian Fernando | Jul 27, 2024


Advanced Grade System (Need Help)

#python
By Ashish Kumar Dixit | Jul 27, 2024


C++ : speed obsession in the game industry

#cpp #python #java #csharp
By Taqmuraz | Jul 26, 2024


The Creation of the Epic Spray Foam Website: Challenges, Technologies, and Future Goals

#python #javascript
By Hudson Blake | Jul 27, 2024


dnenv.py: A Basic Tool to Manage Local .NET SDK Version

#dotnet #python #devops
By Benedict Hazel | Jul 27, 2024


A new cybersecurity/cryptography repo

#cybersecurity #cryptography #python #opensource
By TidyCoder | Jul 27, 2024


Top 10 data science blogs to follow for beginners and intermediate

#beginners #ai #datascience #python
By D Rahulsingh | Jul 27, 2024


Discord AI Bot with Cohere LLM Integration

#discord #ai #opensource #python
By SupermanSpace | Jul 27, 2024


🧡how to set precision in cpp for floating or double datatype 💪

#cpp #c #javascript #python
By aryan015 | Jul 27, 2024


🧡How to take input in javascript using console (codechef)

#javascript #react #competativeprogramming #python
By aryan015 | Jul 27, 2024


Python virtual Environments

#python
By Keanu Dirkse | Jul 27, 2024


Automate Spider Creation in Scrapy with Jinja2 and JSON

#python #scrapy #automation #json
By Ajit Kumar | Jul 28, 2024


Animating Sprites In 2D games

#programming #python #learning #pygame
By Muhammad Faseeh | Jul 27, 2024


Here is Predicting Agricultural Crop Production in India Using Power BI

#powerfuldevs #analytics #python #datascience
By puja Jorwar | Jul 27, 2024


Async/Await vs. Threads: Choosing the Right Approach

#python #programming #beginners #performance
By Mangabo Kolawole | Jul 27, 2024


Emails Setup in Django Using AWS

#aws #cloud #python #django
By Steve Yonkeu | Jul 28, 2024


10 Essential Practices for Building Robust LLM Applications

#python #llm #ai #chatgpt
By Vaibhav Singh | Jul 28, 2024


How to debug your Python mocks or imports

#python #unittest #mock #testing
By Sophie Warner | Jul 28, 2024


How the Recomendation System Works…

#machinelearning #database #python #web
By krishnaa192 | Jul 28, 2024


Web Development: Rust🦀 vs Go🦫 vs Python🐍

#rust #go #python #webdev
By Sabbha | Jul 28, 2024


Python & MariaDB: Which Driver? An Example of Executing a Stored Procedure That Returns Multiple Result Sets

#python #mariadb #driver
By Be Hai Nguyen | Jul 28, 2024


Mastering Python: A Collection of Coding Challenges 🚀

#labex #python #programming #tutorials
By Labby | Jul 28, 2024


How to create custom nodes in ComfyUI

#comfyui #stablediffusion #genai #python
By Dhanush Reddy | Jul 28, 2024


AI/ML Scholarship Registration OPEN

#ai #machinelearning #python #techtalks
By Sakshi | Jul 28, 2024


A Beginner’s Guide to Django Web Framework: Django from Novice to Expert

#python #backend #django #coding
By KUSEH SIMON WEWOLIAMO | Jul 28, 2024