Skip to content

Instantly share code, notes, and snippets.

View Underdoge's full-sized avatar
🏠
Working from home

Underdoge Underdoge

🏠
Working from home
View GitHub Profile
@Underdoge
Underdoge / mockme.py
Last active May 18, 2017 18:46 — forked from hikilaka/mockme.py
Added random uppercase/lowercase and /prism
import weechat
import random
SCRIPT_NAME = 'mockme'
SCRIPT_AUTHOR = 'hikilaka,underdoge'
SCRIPT_VERSION = '1.0.1'
SCRIPT_LICENSE = 'none'
SCRIPT_DESC = 'Converts your text into a mOcKiNg VeRsIoN'
weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION,
@Underdoge
Underdoge / ansi2unicode.pl
Created August 4, 2017 08:49 — forked from revmischa/ansi2unicode.pl
Convert raw ANSI to IRC or HTML
#!/usr/bin/perl
# ansi2unicode.pl
# 4/18/2007
#
# convert an ANSI file to unicode, suitable for display in irssi/mirc or html
# usage: ansi2unicode.pl inputfile [-tc] [-o outputmode] [outputfile]
# -t = terminal output, no color
# -o = output mode, currently only html and irc supported, default is irc
# outputfile = filename to output to if html specified
@Underdoge
Underdoge / create-iso.sh
Created October 2, 2024 22:47 — forked from julianxhokaxhiu/create-iso.sh
Simple bash script to create a Bootable ISO from macOS Catalina Install Image from Mac App Store
#!/usr/bin/env bash
#===========================================================================
# Works only with the official image available in the Mac App Store.
# Make sure you download the official installer before running this script.
#===========================================================================
DISK_SIZE="${2:-16016m}"
VERSION="${1:-Sequoia}"
#===========================================================================