Shannon -jj Behrens: Python: My Favorite Python Tricks for LeetCode Questions
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not...
View ArticleAnwesha Das: How to add a renew hook for certbot?
After moving the foss.trainingserver to a new location, we found that TLS certificate was expired. I had looked and figured out that though certbot renewed the certificate, it never reloaded the...
View ArticlePyBites: The importance of practicing gratitude
Listen now:This week we talk about gratitude.Why? We spotted a trend that people are not saying thanks enough. We often suppose things are “just” working, forgetting that there is actually a lot of...
View ArticleJohn Ludhi/nbshare.io: PySpark Substr and Substring
PySpark Substr and Substringsubstring(col_name, pos, len) - Substring starts at pos and is of length len when str is String type or returns the slice of byte array that starts at pos in byte and is of...
View ArticleReal Python: The Real Python Podcast – Episode #122: Configuring a Coding...
Have you attempted to set up a Python development environment on Windows before? Would it be helpful to have an easy-to-follow guide to get you started? This week on the show, Christopher Trudeau is...
View ArticlePython for Beginners: Check For Superset in Python
In python, we use sets to store unique immutable objects. In this article, we will discuss what is a superset of a set. We will also discuss ways to check for superset in Python.What is a Superset?A...
View ArticleeGenix.com: eGenix Antispam Bot for Telegram 0.4.0 GA
IntroductioneGenix has long been running a local user group meeting in Düsseldorf called Python Meeting Düsseldorf and we are using a Telegram group for most of our communication.In the early days, the...
View ArticleStack Abuse: RetinaNet Object Detection with PyTorch and torchvision
IntroductionObject detection is a large field in computer vision, and one of the more important applications of computer vision "in the wild". On one end, it can be used to build autonomous systems...
View ArticleMike Driscoll: Python 101 - Debugging Your Code with pdb (Video)
Learn how to debug your Python programs using Python's built-in debugger, pdb with Mike DriscollIn this tutorial, you will learn the following:Starting pdb in the REPLStarting pdb on the Command...
View ArticleStack Abuse: Object Detection and Instance Segmentation in Python with...
IntroductionObject detection is a large field in computer vision, and one of the more important applications of computer vision "in the wild". On one end, it can be used to build autonomous systems...
View ArticleJohn Ludhi/nbshare.io: PySpark Replace Values In DataFrames
PySpark Replace Values In DataFrames Using regexp_replace(), translate() and Overlay() Functionsregexp_replace(), translate(), and overlay() functions can be used to replace values in PySpark...
View ArticleStack Abuse: Guide to the K-Nearest Neighbors Algorithm in Python and...
IntroductionThe K-nearest Neighbors (KNN) algorithm is a type of supervised machine learning algorithm used for classification, regression as well as outlier detection. It is extremely easy to...
View ArticleTalk Python to Me: #378: Flet: Flutter apps in Python
Have you heard of Flutter? It's a modern and polished UI framework to write mobile apps, desktop apps, and even web apps. While interesting, you may have kept your distance because Flutter is a Dart...
View ArticlePython for Beginners: Insert Element in A Sorted List in Python
Normally, we add elements to the end of a list in python. However, if we are given a sorted list and we are asked to maintain the order of the elements while inserting a new element, it might become a...
View ArticlePython Circle: The Rising Popularity of Python
The rising popularity of Python, why is python so popular, what is the future of Python, Is python going to be the top choice by 2025,
View ArticlePyCharm: PyCharm 2022.2.1 Is Out
The first minor release for PyCharm 2022.2 is available with the following fixes:We’ve enabled the new UI for setting up an interpreter via the Show all popup menu in the Python Interpreter popup...
View ArticleReal Python: How to Check if a Python String Contains a Substring
If you’re new to programming or come from a programming language other than Python, you may be looking for the best way to check whether a string contains another string in Python.Identifying such...
View ArticleAnarcat: Alternatives MPD clients to GMPC
GMPC (GNOME Music Player Client) is a audio player based on MPD (Music Player Daemon) that I've been using as my main audio player for years now.Unfortunately, it's marked as "unmaintained" in the...
View ArticleMike Driscoll: How to Convert Images to PDFs with Python and Pillow (Video)
Learn how to convert one or more of your photos into a PDF using the Python programming language and the Pillow package in Mike Driscoll's latest video tutorial!Learn more about working with PDFs in...
View ArticlePyBites: Making plots in your terminal with plotext
In this blog post a quick script to plot the frequency of our blog articles in the terminal. It’s good to see that we’re getting back on track The code gist is here.First we import the libraries we are...
View Article