Advanced Search
Search Results
17 total results found
Generate Key
gpg --full-generate-key Select defaults or the required option if you have them Select an expiration date Enter your personal information (it needs to be consistent with your account info) Use a secure passphrase Key can be listed with: gpg --lis...
Add Keys to Github/Gitea
Github Settings SSH and GPG keys New GPG Key Paste in the public key block Add GPG Key Turn on Vigilant mode Gitea Settings SSH / GPG Keys Add Key Paste in the public key block Add Key Verify Screenshot:
Telling Git about your Key
gpg --list-secret-keys --keyid-format=long git config --global user.signingkey <key> Screenshot:
Recovering from deleted efi
Create a Windows Install USB from another PC or have one on hand already Boot into Windows setup using Windows USB Click "Next" Click "Repair your computer" in bottom left corner Click "Troubleshoot" Click "Advanced" Click "Command Prompt" Type "diskp...
Branches - Gitflow
Main and dev For starters: Do as I say and not as I do. I say this because I myself have forgot to use separate branches. It is really easy to forget and you will only notice it when it becomes a pain in the ass to fix. Ok let's start this guide! Separate ...
Commiting
How do I commit right? What makes a good commit message? Separate subject from body with a blank line Limit the subject line to 50 characters Capitalize the subject line Do not end the subject line with a period Use the imperative mood in the subject...
Merge - Rebase - Squash
When should you use either of them? Merge Source: https://www.gitkraken.com/learn/git/git-merge (Last accessed 22.03.2023) Merging is used to merge two branches and preserve their history. It also makes it easier to undo mistakes. Rebase Source: https...
Typical workflow
How does a typical workflow look like? I am going to take one of my repo's as an example on how one would go about doing all the things I described in this book. I look at the feature I want to implement In my code I begin writing what I want to do in pla...
Prerequisites
Download yt-dlp with the package manager of your choice. Examples: sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp sudo chmod a+rx /usr/local/bin/yt-dlp python3 -m pip install -U yt-dlp yay yt-dlp...
Time to archive
How to archive an entire YouTube channel Create a directory where you want your files to be Download or create the necessary files to create directories, move files and download videos. Examples: #!/bin/sh if [ ! -d "video" ] ; then mkdir video && m...
Prerequisites
Download yt-dlp with the package manager of your choice. Examples: sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp sudo chmod a+rx /usr/local/bin/yt-dlp python3 -m pip install -U yt-dlp yay yt-dlp...
Time to archive
How to archive an entire YouTube channel Create a directory where you want your files to be Download or create the necessary files to create directories, move files and download videos. Examples: #!/bin/sh if [ ! -d "audio" ] ; then mkdir audio && m...
Let's create a home
Dont panic. We can fix this. Use the mkhomedir_helper command mkhomedir_helper <username>
How to do it
Preperations You need to be in a rescue system or have the disk unmounted. That is non negotiable!Also make a snapshot/backup of you system! Resizing e2fsck -f /dev/sdXY resize2fs /dev/sdXY XG fdisk /dev/sdX In fdisk you need to: Delete the old ...
How to online grow a ext4 partition
This tutorial uses Arch Linux so package names might vary Install cloud-guest-utils which includes growpart Backup your partition table so you can recover if neededsudo sfdisk -d /dev/sda > partition_bak.dmp Use growpart to grow the partitiongrowpart /dev...
How to mod ROUNDS
Install the ROUNDS beta called old-rounds-for-mods and get r2modman Launch r2modman and select ROUNDS. Create a new profile and now you can download mods! Enjoy playing the superior version of ROUNDS!!!
Snapshots
Commands with examples! See estimated size of snapshot zfs send -Rnv athena/backup/matrix@20240920 full send of athena/backup/matrix@20240920 estimated size is 53.3G total estimated size is 53.3G Monitor the progress of zfs send zfs send -R athena/...