Skip to content

Instantly share code, notes, and snippets.

View omnituensaeternum's full-sized avatar
💭
Committing crimes against humanity

H1V3 omnituensaeternum

💭
Committing crimes against humanity
  • Low Earth Orbit
View GitHub Profile
@sachsgit
sachsgit / .bash_aliases
Last active June 9, 2023 17:16
Common Aliases for BASH
#!/usr/bin/bash
alias .......='cd ../../../../../..' # 6 Back
alias ......='cd ../../../../..' # 5 Back
alias .....='cd ../../../..' # 4 Back
alias ....='cd ../../..' # 3 Back
alias ...='cd ../..' # 2 Back
alias ..='cd ..' # 1 Back
@Prof-Bloodstone
Prof-Bloodstone / README.md
Last active February 19, 2024 22:39
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

@vivekjoshy
vivekjoshy / discord-ban-bot.py
Last active May 2, 2024 12:15
Script to ban members of a discord servers.
#!/usr/bin/python
"""
# WARNING!
# DO not use this script for malicious purposes!
# Author: daegontaven - taven#0001
# License: Public Domain
# README
# I have resigned from using discord indefinitely to pursue schoolwork.
# As such I will not be maintaining this script anymore.
@gingerbeardman
gingerbeardman / 0x0.sh
Last active October 28, 2022 00:37
Simple cli tool to use https://0x0.st for ephemeral file uploads. Install: curl https://gist.githubusercontent.com/gingerbeardman/5398a5feee9fa1e157b827d245678ae3/raw/9ea5c714b41bdef77a8984bc91ff5d248c48d048/0x0.sh | sudo tee /usr/local/bin/0x0.sh && sudo chmod +x /usr/local/bin/0x0.sh
#!/bin/sh
URL="https://0x0.st"
if [ $# -eq 0 ]; then
echo "Usage: 0x0.st FILE\n"
exit 1
fi
FILE=$1