Skip to content

Instantly share code, notes, and snippets.

View benjioh5's full-sized avatar
📲
Now Coding

Benjamin Hyo-keun Oh benjioh5

📲
Now Coding
View GitHub Profile
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active May 2, 2025 12:10
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@khvn26
khvn26 / steamos-vscode-docker-guide.md
Last active March 1, 2025 12:46
SteamOS VSCode + Docker guide

SteamOS VSCode + Docker guide

  1. Install Docker:

    sudo pacman -S docker
  2. Enable Docker systemctl unit:

@markuta
markuta / checkm8_downgrade.md
Created January 1, 2023 12:28
How to downgrade checkm8 devices from iOS 15/16

Important: Please don't use the comment section to ask for help, I most likely won't respond there as I have it muted due to too many notifications. Join r/jailbreak (#genius-bar) or FDR Bureau (#futurerestore-support) instead.

How to downgrade checkm8 devices from iOS 15/16

This is a guide for downgrading (or upgrading) to unsigned versions with futurerestore on checkm8 devices (A11 and below). You must have blobs for the version you want to go to, and SEP/BB compatibility may limit how far you can go.

Current SEP compatibility

The latest SEP/BB as of right now is iOS 16.0, which is INCOMPATIBLE with anything below. On devices that got iOS 16, you must use 15.6 RC SEP/BB.

@daniel-geon-park
daniel-geon-park / PCP.cpp
Last active April 29, 2020 14:50
Undecidable C++ Grammar Example
#include <algorithm>
#include <type_traits>
template <int... Ints>
struct Row {
constexpr static bool empty = (sizeof...(Ints) == 0);
};
template <typename Upper, typename Lower>
struct Domino {
#!/usr/bin/env python3
# initial script by b1n4r1b01 but he deleted his repo
# https://gist.github.com/woachk/6092f9ae950455dcdf8428c3ce2d639e
# added python3 support
import sys
import struct
import os
@akme
akme / eos.https.txt
Created May 15, 2019 20:17
EOS HTTPS API Endpoint hosts list
api.eosargentina.io
api.eosnewyork.io
bp.eosvolga.one
api.eosmetal.io
bp.cryptolions.io
eu.eosdac.io
api.eos.minergate.com
eosbp.atticlab.net
mainnet.eoscanada.com
api.eosimpera.com
@dogtopus
dogtopus / csrotau.py
Created December 12, 2018 20:37
CSR OTAU binary parser
#!/usr/bin/env python3
# CSR OTAU binary parser
# https://developer.qualcomm.com/qfile/34081/csr102x_otau_overview.pdf
# For use with test and demonstration only. This is obviously not official and
# is not affiliated with Qualcomm.
import io
import os
import sys
Title: h2spice
URL: http://h2spice.blogspot.kr/feeds/posts/default
Title: NULL's Laboratory
URL: http://null0.tistory.com/rss
Title: { cr3denza }
URL: http://cr3denza.github.io/feed.xml
Title: HACKABILITY
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 3, 2025 06:28
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example