Skip to content

Instantly share code, notes, and snippets.

View Lovinoes's full-sized avatar
💤
lovin'hoes

Lovinoes Lovinoes

💤
lovin'hoes
  • Stuttgart, Germany
  • 09:39 (UTC +02:00)
View GitHub Profile
@mikaeldui
mikaeldui / CachyOS Kernel for Fedora with Secure Boot.md
Last active August 24, 2026 05:38
CachyOS Kernel for Fedora with Secure Boot

image

CachyOS Kernel for Fedora with Secure Boot

Did you just install kernel-cachyos and got hit by bad shim signature when booting? Me too. This is how I fixed it.

First, make sure you have Secure Boot with mokutil --sb-state.

Note, there's a second way of doing this by using sbctl, but I didn't want to wipe my Secure Boot keys.

Need help? Feel free to leave a comment below, contact me (@mikaeldui) on the CachyOS Discord, or send me an email.

@Lovinoes
Lovinoes / check-host.net.txt
Last active June 27, 2026 18:44
check-host
I update this list every 1-2 weeks
https://check-host.net/nodes/hosts
185.224.3.111 at1 - Austria, Vienna
45.162.230.209 br1 - Brazil, Sao Paulo
93.123.16.89 bg1 - Bulgaria, Sofia
198.135.169.20 ca1 - Canada, Vancouver
91.199.41.138 cy1 - Cyprus, Larnaca
65.109.182.130 fi1 - Finland, Helsinki
195.154.114.92 fr2 - France, Paris
@Prof-Bloodstone
Prof-Bloodstone / README.md
Last active June 27, 2026 21:59
Spigot restart script issues and solution

⚠️ This guide is for self-managed servers. If you rented a server and got a website through which you manage your server - you are on so called shared-hosting and this guide won't work for you.

What is spigot restart script

Spigot added a feature allowing for server to automatically restart on crashes, as well as when authorized user executes /restart command.

How it works

@trenutoo
trenutoo / migrate-pterodactyl.md
Last active May 23, 2026 18:29
Pterodactyl panel and wings migration

Pterodactyl Migration

Migrating panel

  1. Backup your hidden .env file containing the decryption APP_KEY from /var/www/pterodactyl

  1. Export the database, in this case ours is named panel
@Maxopoly
Maxopoly / iptables.rule
Last active April 8, 2025 01:06
IP tables for Minecraft
#You probably want to do this in root to reduce the amount of sudos required
su -
#Install iptables if you haven't already
#Alternatively use packet manager of your choice
apt-get install iptables
#Allow all incoming traffic to begin with
iptables -P INPUT ACCEPT
#Clean out any existing input rules. You may also remove the "INPUT" argument and run only "iptables -F" to clear all chains. When doing so, make sure there are no rules in other chains that you still need (list via "iptables -L"), for example Oracle cloud servers will have preset rules, which should not be removed.