NixOS Installation Guide - NixOS Wiki
K8s — Ingress, Ingress Class and Controller
A little K8s knowledge everyday!
Linux commands: Drop these old utilities for modern alternatives
These traditional Linux utilities have been revitalized with modern replacements.
How to implement a VPN
How to implement a VPN Software Development, API development, Indutrial IOT
How to build your own YouTube downloader in python - Bhutan Python Coders
YouTube downloader in python using pytube module. It has just five lines of code and you can download the HD video format.
ActivityPub
The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
Emulate Any ISA Card With A Raspberry Pi And An FPGA
One of the reasons the IBM PC platform became the dominant standard for desktop PCs back in the mid-1980s was its open hardware design, based around what would later be called the ISA bus. Any manu…
How to Install Chrony NTP to Synchronize Time in Linux
The Network Time Protocol (NTP) is a protocol used to synchronize Linux system clocks automatically over a network using the chrony NTP client.
Pleroma · GitLab
All Pleroma development
MUSICat
Sharing and supporting local musicwith digital public spaces
How To Remove Passphrase from SSL Certificate and SSH Key
In this guide, we will show how to remove an SSL certificate and ssh private key passphrase using the openssl and ssh-keygen command line tools.
Make swap better with zram on Linux
The ideal swap configuration depends on your use case and the amount of physical RAM in your host computer.
LetsEncrypt with HAProxy
We cover using LetsEncrypt to create SSL certificates with a HAProxy load balancer.
API v4 | mac2vendor.com OUI database lookup
Taking it home — Kubernetes on bare-metal
To learn how Kubernetes works you should run your own Kubernetes cluster on bare-metal hardware.
Discuss this post
In the world that I live in Kubernetes is all the rage. This is the world of professional software development and deployment where medium- and large-sized companies are trying to reduce cost and complexity of their IT platforms while at the same time becoming faster at making changes to the software that they run as services to either their internal or external customers.
Keyboard shortcuts, enumerated
Find all keyboard shortcuts and tips and more about technology on DefKey.com!
Drop swap for zram on Linux
Zram is a tool for creating an in-RAM compressed cache, specifically for use as swap space.
apt-offline - An Offline APT Package Manager
apt-offline is an offline package management tool that is used to install/upgrade software packages with their dependencies on Debian-based Linux distributions.
How to Scan QR Codes From an Image on Mobile - Make Tech Easier
Scanning a QR code on an Android or an iPhone is quite easy these days. This tutorial explains how to scan QR codes that are part of an image.
Libravatar :: federated avatar hosting service
Issuing and using SSH Certificates | Carlos Becker
SSH certificates allow system administrators to SSH into machines without having to manage authorized keys in the servers.
In summary, you create a key pair to be used as a Certificate Authority (CA), and add the public key of that key pair to the server:
TrustedUserCAKeys /etc/ssh/my-root-ca.pub Then, usually, a system administrator or an automated system creates certificates for the users that need to access the servers.
Those certificates are created with the CA’s private key, the user’s public key, a list of principals and a validity period.
Gitea
Ian Smith - Keyoxide
Modern and secure platform to manage a decentralized identity based on cryptographic keys
Why sysadmins should choose Awesome window manager on Linux
The Awesome window manager takes a "tiling" approach, meaning that each window you launch takes up a fraction of your desktop according to the number of windows you have open.
A Big List of Mastodon Resources
I took a pop at Mastodon several years ago, but it didn’t work. I couldn’t figure out how to make it social, and I didn’t have a good grasp of how the “federated” part…
Lesser-Known Options of Well-Known Unix/Linux Commands
Use these command-line switches in your terminal and shell scripts to boost your productivity
r/Freenet - infocalypse: truly decentralized version control over Freenet
2 votes and 0 comments so far on Reddit
Online List Tools - Simple, free and easy to use list processing utilities
World's simplest collection of useful browser-based list processing utilities. Reverse lists, join lists, randomize lists, change list item separator, and more.
File name without extension in bash for loop
In a for loop like this one:
for f in `ls *.avi`; do echo $f; ffmpeg -i $f $f.mp3; done
$f will be the complete filename, including the extension. For example, for song1.avi the output of the com...
Bash Scripting: Check if directory exists
In this tutorial, we show various methods to check if a directory exists via a Bash script or on the command line in Linux.