Skip to content

Instantly share code, notes, and snippets.

View lunaisnotaboy's full-sized avatar
🏳️‍⚧️
nya

Luna Nova lunaisnotaboy

🏳️‍⚧️
nya
View GitHub Profile

Introduction

Welcome to the PK Hack section of starmen.net! Since the early 2000s, programming enthusiasts in the community have gathered together to play around with EarthBound's game engine, creating custom music and dialogue, making translations for languages like Spanish and Brazillian Portugese, and in extreme cases, whole new stories and cutscenes! With CoilSnake, the hacking tool the community uses and works on together, anyone can experiment with the game like this, the only limiting factors being free time and imagination.

Click here to go to the forum - http://forum.starmen.net/forum/Community/PKHack

Getting Started

If you're ready to hop into the world of PK Hacking, then you'll want to download the latest version of CoilSnake, and check out this collection of helpful tutorials on the wiki!

@castwide
castwide / rails.rb
Last active October 24, 2024 16:26
Enhance Rails Intellisense in Solargraph
# The following comments fill some of the gaps in Solargraph's understanding of
# Rails apps. Since they're all in YARD, they get mapped in Solargraph but
# ignored at runtime.
#
# You can put this file anywhere in the project, as long as it gets included in
# the workspace maps. It's recommended that you keep it in a standalone file
# instead of pasting it into an existing one.
#
# @!parse
# class ActionController::Base
@reillysiemens
reillysiemens / signing-vbox-kernel-modules.md
Last active March 13, 2025 12:54
Signing VirtualBox Kernel Modules

Signing VirtualBox Kernel Modules

These are the steps I followed enable VirtualBox on my laptop without disabling UEFI Secure Boot. They're nearly identical to the process described on [Øyvind Stegard's blog][blog], save for a few key details. The images here are borrowed from the [Systemtap UEFI Secure Boot Wiki][systemtap].

  1. Install the VirtualBox package (this might be different for your platform).
    src='https://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo'
@bmaupin
bmaupin / open-source-sso.md
Last active April 6, 2025 21:43
Comparison of some open-source SSO implementations

ⓘ This list is not meant to be exhaustive and is not guaranteed to be maintained. See the comments for updates and alternative options.

(Items in bold indicate possible concerns)

Keycloak WSO2 Identity Server Gluu CAS OpenAM Shibboleth IdP
OpenID Connect/OAuth support yes yes yes yes yes yes
Multi-factor authentication yes yes yes yes yes yes
Admin UI yes yes yes yes yes no
OpenJDK support yes yes partial² yes
@JayFoxRox
JayFoxRox / convert.sh
Created January 7, 2018 05:41
N64 ROM (z64) to ELF
#!/usr/bin/bash
# Get entry point from N64 ROM
dd if=test.z64 bs=1 skip=8 count=4 of=entrypoint >& /dev/null
# Convert entrypoint to little endian
#mips-elf-objcopy -I binary -O binary --reverse-bytes=4 entrypoint entrypoint
# Construct an ELF
mips-elf-objcopy -I binary test.z64 -O elf32-bigmips -B mips --adjust-section-vma .data+0x80000000 foo.elf
# Patch to MIPS III
printf '\x20\x00\x00\x00' | dd bs=1 seek=36 count=4 conv=notrunc of=foo.elf >& /dev/null
FILES=`find . -name "*.java"`
for f in $FILES
do
filename="${f%.*}"
if file -I $f | grep -wq "iso-8859-1" || file -I $f | grep -wq "us-ascii" ; then
echo -n "$f"
mkdir -p converted
cp $f ./converted
#!/usr/bin/sudo ruby
#
# revealer.rb -- Deobfuscate GHE .rb files.
#
# This is simple:
# Every obfuscated file in the GHE VM contains the following code:
#
# > require "ruby_concealer.so"
# > __ruby_concealer__ "..."
@fntlnz
fntlnz / self-signed-certificate-with-custom-ca.md
Last active April 2, 2025 11:18
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@dvliman
dvliman / gist:11264471
Created April 24, 2014 18:24
4chan source code leak
<?
if(file_exists('/www/global/lockdown')) {
if($_COOKIE['4chan_auser'] && $_COOKIE['4chan_apass'] && ($_POST['mode']=='usrdel'||$_GET['mode']=='latest')) {
// ok
}
else {
die('Posting temporarily disabled. Come back later!<br/>&mdash;Team 4chan (uptime? what\'s that?)');
}
}
include_once "./yotsuba_config.php";