Skip to content

Instantly share code, notes, and snippets.

View Yaksinikos's full-sized avatar
🏴

Роман Корцаков Yaksinikos

🏴
View GitHub Profile
1 Ann Вд Шмит | Anna _ Schmidt
2 Јоган Јога Штоп | Johann Johannes Stoppel
3 Дородеа Јоуст | Dorothea Jost
4 Эма Штопель | Emma Stoppel
5 Вдова Доро Милер | _ Dorothea Müller
6 Јогон Конд Бауман. | Johann Konrad Baumann
7 Карл Јогонов Гельм | Karl Johannes Helm
8 Салмон Карл Шмит | Salomon Karl Schmidt
9 Самуел Шефер | Samuel Schäfer
10 Аукуст Бауман | August Baumann
@shmup
shmup / torrents.md
Last active October 29, 2025 02:51
transmission blocklist guide

Transmission Blocklist

The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.

It's as simple as downloading and installing the latest client:

@sarg
sarg / README.md
Last active December 23, 2024 16:19
rk30xx loader image unpacker

Obtaining RK3066 boot ROM.

Here are my steps.

At first, I took a look to RK30xxLoader(L)_V1.18.bin. This file appears in update.img for my device. So, I unpacked update.img using rk29Kitchen.

strings on that file returns nothing interesting, so I assumed the file is crypted

@myusuf3
myusuf3 / uninstall.sh
Created April 21, 2011 03:06
how to cleanly uninstall python packages installed with python setup.py
# Next time you need to install something with python setup.py -- which should be never but things happen.
python setup.py install --record files.txt
# This will cause all the installed files to be printed to that directory.
# Then when you want to uninstall it simply run; be careful with the 'sudo'
cat files.txt | xargs sudo rm -rf