Skip to content

Instantly share code, notes, and snippets.

Modes

Wireless Dongle Mode

Power controller on holding Steam and A buttons

Wireless Bluetooth Low Energy (BLE) Mode

Power controller on holding Steam and B buttons

Wireless BLE Pairing Mode

Power controller on holding Steam and Y buttons

@cualquiercosa327
cualquiercosa327 / mayaOnUbuntu.sh
Created February 28, 2024 18:50 — forked from heiths/mayaOnUbuntu.sh
Shell script to install and setup Autodesk Maya 2014 on Ubuntu 13.04
#!/bin/bash
#Heith Seewald 2012
#Feel free to extend/modify to meet your needs.
#Maya on Ubuntu v.1
#This is the base installer... I’ll add more features in later versions.
#if you have any issues, feel free email me at heiths@gmail.com
#### Lets run a few checks to make sure things work as expected.
#Make sure we’re running with root permissions.
if [ `whoami` != root ]; then
@cualquiercosa327
cualquiercosa327 / Makefile
Created February 20, 2024 15:01 — forked from alula/Makefile
AES bruteforcer (incrementer version)
# Clang compiler is recommended. It does much better job at understanding and optimizing SIMD code.
all:
clang brute-inc.c -o brute-inc -O3 -Wall -lpthread -maes -march=native -msse2 -msse -msse4.1
clean:
rm brute-inc
@cualquiercosa327
cualquiercosa327 / LabelTLOUNativesPC.java
Created February 5, 2024 22:44 — forked from ethylamine/LabelTLOUNativesPC.java
Labels native functions used within TLOU VM on PC
//Labels native functions used within TLOU VM on PC
//@author ethylamine
//@category FunctionID
import ghidra.app.script.GhidraScript;
import ghidra.program.model.util.*;
import ghidra.program.model.reloc.*;
import ghidra.program.model.data.*;
import ghidra.program.model.block.*;
import ghidra.program.model.symbol.*;
@cualquiercosa327
cualquiercosa327 / nativeUpdater.java
Created February 5, 2024 22:43 — forked from ethylamine/nativeUpdater.java
Analyzes and updates native addresses for GTA V on PS4, based on 2much4u's IDA script
//Analyzes and updates native addresses for GTA V on PS4, based on 2much4u's IDA script
//@author ethylamine
//@category Analysis
import ghidra.app.script.GhidraScript;
import ghidra.program.model.util.*;
import ghidra.program.model.reloc.*;
import ghidra.program.model.data.*;
import ghidra.program.model.block.*;
import ghidra.program.model.symbol.*;
@cualquiercosa327
cualquiercosa327 / SMBDIS.ASM
Created December 3, 2023 18:05 — forked from 1wErt3r/SMBDIS.ASM
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;This file is provided for your own use as-is. It will require the character rom data
;and an iNES file header to get it to work.
;There are so many people I have to thank for this, that taking all the credit for
;myself would be an unforgivable act of arrogance. Without their help this would
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no
@cualquiercosa327
cualquiercosa327 / README.md
Created April 22, 2023 23:55 — forked from thejoshwolfe/README.md
Plan for publishing the Hollow Knight Modding API to GitHub without infringing on copyright
@cualquiercosa327
cualquiercosa327 / rain-world.md
Created April 16, 2023 12:46 — forked from david-crespo/rain-world.md
How to Enjoy Rain World

How to Enjoy Rain World

A spoiler-free guide to the spoilers

TL;DR: play as long as you can without help, until you get frustrated. At that point, the recommended region order helps a lot without spoiling anything but region names. If you can't find the next region, the world map will tell you what direction to look in.

Rain World is a masterpiece — equal parts metroidvania, movement puzzler, immersive rat in Manhattan sim — but its strangeness makes it hard to appreciate. Some things that turned players and reviewers off were fixed in [patches](https://steamcommunity.com/games/312520/announcemen

@cualquiercosa327
cualquiercosa327 / ipynb_to_gallery.py
Created March 19, 2023 12:01 — forked from chsasank/ipynb_to_gallery.py
Convert jupyter notebook to sphinx gallery notebook styled examples.