python3-stravalib

tool for accessing and downloading Strava data from the Strava

V3 web service. Stravalib provides a Client class that supports: * Authenticating with stravalib * Accessing and downloading strava activity, club and profile data * Making changes to account activities

podman-remote

tool to manage containers and pods (remote CLI)

Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers.

r-cran-dbscan

Density Based Clustering of Applications with Noise (DBSCAN)

Density Based Clustering of Applications with Noise (DBSCAN) and Related Algorithms provides a fast reimplementation of several density- based algorithms of the DBSCAN family for spatial data. Includes the clustering algorithms DBSCAN (density-based spatial clustering of applications with noise) and HDBSCAN (hierarchical DBSCAN), the ordering algorithm OPTICS (ordering points to identify the clustering structure), and the outlier detection algorithm LOF (local outlier factor). The implementations use the kd-tree data structure (from library ANN) for faster k-nearest neighbor search. An R interface to fast kNN and fixed-radius NN search is also provided. Hahsler, Piekenbrock and Doran (2019) <doi:10.18637/jss.v091.i01>.

luksy

offline encryption/decryption using LUKS formats (program)

luksy implements encryption and decryption using LUKSv1 and LUKSv2 formats. Think of it as a clunkier cousin of gzip/bzip2/xz that doesn't actually produce smaller output than input, but it encrypts, and that's nice.

qdiskinfo

CrystalDiskInfo alternative for Linux

QDiskInfo is a frontend for smartctl. It provides a user experience similar to CrystalDiskInfo. It shows the SMART (Self-Monitoring, Analysis, and Reporting Technology) data of modern hard disk drives.

python3-ratelimitqueue

Rate limited wrapper for Python 3's thread safe queues

This package extends the three built-in Python queues from the queue module - Queue, LifoQueue, and PriorityQueue - with configurable, rate limited counterparts. Specifically, the get() method is rate limited across all threads so that workers can safely consume from the queue in an unlimited loop, and putting the items in the queue doesn’t need to require blocking the main thread.