July 2020 - Page 11 of 69

Python String isalnum() — step-by-step Python tutorial on Progressive Robot

Python String isalnum()

URL: https://www.progressiverobot.com/python-string-isalnum/ Python string isalnum() function returns True if it's made of alphanumeric characters only. A character is alphanumeric if it's either an alpha or a [number](/community/tutorials/python-numbers). If the string is empty, then isalnum() returns False. !python string isalnum() Python string isalnum() example s = 'HelloWorld2019' print(s.isalnum()) Output: True s = 'Hello World 2019' print(s.isalnum()) […]

Read more
How to Deploy Applications with Docker Compose on RHEL 7 — step-by-step RHEL 7 tutorial on Progressive Robot

How to Deploy Applications with Docker Compose on RHEL 7

How to Deploy Applications with Docker Compose on RHEL 7 Docker Compose lets you define and run multi-container applications using a single YAML file. Instead of managing individual docker run commands for each service, you describe the entire application stack — web server, database, cache, message queue — in a docker-compose.yml file and bring everything […]

Read more
How To Use Droplet Tagging with the cloud provider API — step-by-step DevOps tutorial on Progressive Robot

How To Use Droplet Tagging with the cloud provider API

Droplet tagging is a new feature, not yet exposed via the the cloud provider Control Panel, but available to users of the API. This feature allows you to group and locate Droplets by applying tags, as well as initiate actions across all the Droplets with a specific tag. This guide explains basic usage of the feature with cURL.

Read more
Oracle Linux 8 — numpy — vulnerability — patch and remediation guide — diagnosis and fix on Oracle Linux 8

Oracle Linux 8 — numpy — vulnerability — patch and remediation guide (ELSA-2019-3704)

🟡 Medium   ⏱ 10–30 min  Last verified: 25 May 2026 Affected versions: Oracle Linux 8 📖 ~4 min read  •  Source: ELSA advisory ELSA-2019-3704 Related CVEs: CVE-2019-6446 Table of contents Symptom & Impact Environment & Reproduction Root Cause Analysis Quick Triage Step-by-Step Diagnosis Solution – Primary Fix Solution – Alternative Approaches Verification & Acceptance […]

Read more
Como criar elementos React com o JSX — step-by-step Javascript tutorial on Progressive Robot

Como criar elementos React com o JSX

O autor selecionou a Creative Commons para receber uma doação como parte do programa Write for DOnations. Neste tutorial, você aprenderá como descrever elementos com o JSX. O JSX é uma abstração que permite que…

Read more
How to Install and Use Podman with systemd Socket Activation on RHEL 9 — step-by-step RHEL 9 tutorial on Progressive Robot

How to Install and Use Podman with systemd Socket Activation on RHEL 9

Podman is RHEL 9’s default container engine and, unlike Docker, runs entirely rootless and integrates natively with systemd. Socket activation is a systemd feature that lets the kernel hold a listening socket open while the service is stopped; the moment the first connection arrives, systemd starts the corresponding service and hands the socket over. This […]

Read more
CHAT