Skip to content

Instantly share code, notes, and snippets.

View mid-kid's full-sized avatar

mid-kid mid-kid

View GitHub Profile
@mid-kid
mid-kid / region.py
Created February 4, 2015 17:28
Regionfree patcher for 3ds game
import sys
with open(sys.argv[1], "r+b") as f:
f.seek(0x2018)
f.write("\xFF\xFF\xFF\x7F")
f.close
#!/usr/bin/python
# -*- coding: utf-8 -*-
import argparse
import os
import random
import string
import tempfile
import binascii
import sys
import subprocess
@mid-kid
mid-kid / minecraft-chat-client.py
Last active July 9, 2025 17:07
Basic minecraft chat client written in Python.
#!/usr/bin/env python3
"""
Simple script that implements the minecraft protocol
to create a basic chat client for said game.
No encryption, no online mode, no parsing of chat messages.
I tried to make it as extendable as possible, so hack away.
PEP8 Note: Ignored E302 (2 newlines between functions)
"""
@mid-kid
mid-kid / Cinnamon-Network-Connections-Shortcut.py
Last active December 14, 2015 11:58
Adds a new Network Manager applet with a network connections shortcut in Cinnamon
import shutil
import os
try:
shutil.rmtree(os.environ["HOME"]+"/.local/share/cinnamon/applets/[email protected]/")
except:
pass
shutil.copytree("/usr/share/cinnamon/applets/[email protected]/", os.environ["HOME"]+"/.local/share/cinnamon/applets/[email protected]/")
os.chdir(os.environ["HOME"]+"/.local/share/cinnamon/applets/[email protected]/")
@mid-kid
mid-kid / rocketpi-motd.sh
Last active December 12, 2015 07:09 — forked from piksel/raspi-motd.sh
Modified raspi-motd.sh. Thanks to piksel for the template
#!/bin/bash
logo="$(tput setaf 2)
.~~. .~~.
'. \ ' ' / .' $(tput sgr0) _ $(tput setaf 1)
.~ .~~~..~. $(tput sgr0) _ _| |_ _ $(tput setaf 1)
: .~.'~'.~. : $(tput sgr0) ___ ___ ___| |_ _|_ _| ___|_|$(tput setaf 1)
~ ( ) ( ) ~ $(tput sgr0) | _| . | _| //| -_| |_ | . | |$(tput setaf 1)
( : '~'.~.'~' : ) $(tput sgr0) |_| |___|___|___|___|___| | _|_|$(tput setaf 1)
~ .~ ( ) ~. ~ $(tput sgr0) |_| $(tput setaf 1)