Skip to content

Instantly share code, notes, and snippets.

View klich3's full-sized avatar
🖐️

Anton Sychev klich3

🖐️
View GitHub Profile
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active April 24, 2025 10:31
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@0xdevalias
0xdevalias / reverse-engineering-webpack-apps.md
Last active April 23, 2025 22:14
Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps
@startergo
startergo / Convert_Hex_to_SSDT_format.md
Last active October 23, 2023 14:52
Extract PowerPlay table and convert to SSDT format

Download and cd to upp

git clone https://github.com/sibradzic/upp.git && cd upp
python3 setup.py build
; temperature tower: https://www.thingiverse.com/thing:2729076
; appliy the following function in Klipper FW before running the temp tower:
TUNING_TOWER COMMAND="SET_HEATER_TEMPERATURE HEATER=extruder" PARAMETER=TARGET START=227.5 FACTOR=-.5 BAND=10
; This starts at 225deg and every 10mm reduces by 5deg until the top tower hits 180deg.
@johnwgillis
johnwgillis / How to setup GPG for git.md
Last active August 8, 2024 19:19
How to setup GPG for signing commits with Git, SourceTree, and GitHub on Mac

How to setup GPG for signing commits with Git, SourceTree, and GitHub on Mac

  1. Install GPG tools
    1. Install GPG tools and setup pin entry by running:
    brew install gnupg pinentry-mac
    mkdir -m 700 -p ~/.gnupg
    echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf
    killall gpg-agent