Codon is a high-performance Python compiler that compiles Python code to native machine code without any runtime overhead. Typical speedups over Python are on the order of 10-100x or more, on a single thread. Codon's performance is typically on par with (and sometimes better than) that of C/C++. Unlike Python, Codon supports native multithreading, which can lead to speedups many times higher still.
piscope is a logic analyser (digital waveform viewer) for the RasPi. It shows the state (high or low) of selected GPIO pins in real-time. Uses the services of the pigpio library. pigpio needs to be running on the Pi whose GPIO are to be monitored. The pigpio library may be started as a daemon.
Install pigpiod on the RasPi: sudo apt-get install pigpiod pigpio-tools
Install PyScop on your workstation: yay -S pyscope
Start pigpiod: sudo pigpiod
Run pyscope on your workstation
export PIGPIO_ADDR=raspi
piscope
I donāt need your life story. I just want some food.
This book takes a single line of codeāthe extremely concise BASIC program for the Commodore 64 inscribed in the titleāand uses it as a lens through which to consider the phenomenon of creative computing and the way computer programs exist in culture. The authors of this collaboratively written book treat code not as merely functional but as a textāin the case of 10 PRINT, a text that appeared in many different printed sourcesāthat yields a story about its making, its purpose, its assumptions, and more. They consider randomness and regularity in computing and art, the maze in culture, the popular BASIC programming language, and the highly influential Commodore 64 computer.
Buy or download for free.
A database of motherboards, BIOS images, chipsets, manufacturers, drivers, software. If you have an ancient PC and you're trying to figure it out, check here first.
Google's proof-of-concept self hosted Docker registry.
Northwoods Baseball Sleep Radio is a full-length fake baseball game. There is no yelling, no loud commercials, no weird volume spikes. Fans call it "baseball radio ASMR".
It is the perfect podcast for sleeping or relaxing, if you're into that kind of thing.
Available wherever you get your podcasts.
Proposed schema for a .well-known/fursona JSON document.
A curated list of amazingly awesome open source resources related to broadcast technologies - GitHub - ebu/awesome-broadcasting: A curated list of amazingly awesome open source resources related to...
Podman is a daemonless, open source, Linux native tool designed to make it easy to find, run, build, share and deploy applications using Open Containers Initiative (OCI) Containers and Container Images. Podman provides a command line interface (CLI) familiar to anyone who has used the Docker Container Engine. Most users can simply alias Docker to Podman (alias docker=podman) without any problems. Similar to other common Container Engines (Docker, CRI-O, containerd), Podman relies on an OCI compliant Container Runtime (runc, crun, runv, etc) to interface with the operating system and create the running containers. This makes the running containers created by Podman nearly indistinguishable from those created by any other common container engine.
Containers under the control of Podman can either be run by root or by a non-privileged user. Podman manages the entire container ecosystem which includes pods, containers, container images, and container volumes using the libpod library. Podman specializes in all of the commands and functions that help you to maintain and modify OCI container images, such as pulling and tagging. It allows you to create, run, and maintain those containers and container images in a production environment.
Harbor is a self-hosted Docker registry that offers a large number of additional features that big companies probably love. Among those features are vulnerability scanning, third party authentication support, cryptographic signature and authentication, and a GUI.