Skip to content

Instantly share code, notes, and snippets.

View leap0x7b's full-sized avatar

leap123 leap0x7b

View GitHub Profile
@leap0x7b
leap0x7b / fort.user.js
Created December 28, 2023 11:24
Fortnitify
// ==UserScript==
// @name Fortnitify
// @version 1.0
// @description Replaces every single F to the Fortnite F
// @author leap123
// @match *://*/*
// @connect *
// @grant GM_xmlhttpRequest
// @grant GM_addStyle
// ==/UserScript==
@leap0x7b
leap0x7b / chpasswd.sh
Created January 11, 2021 05:11
Dialog-based password changer script
#!/bin/bash
## This script made to change your password with TUI dialog
## Original script made by NixCraft
## https://bash.cyberciti.biz/guide/A_password_box
# password storage
new=$(tempfile 2>/dev/null)
# trap it
trap "rm -f $new" 0 1 2 5 15
@leap0x7b
leap0x7b / passwd.sh
Created January 10, 2021 03:29
Dialog-based password changer script
#!/bin/bash
## This script made to change your password with TUI dialog
## Original script made by NixCraft
## https://bash.cyberciti.biz/guide/A_password_box
# password storage
if [[ "$EUID" -ne 0 ]]; then
old=$(tempfile 2>/dev/null)
fi
new=$(tempfile 2>/dev/null)