Skip to content

Instantly share code, notes, and snippets.

View adrienbrunet's full-sized avatar

Adrien Brunet adrienbrunet

View GitHub Profile
@adrienbrunet
adrienbrunet / README.md
Created March 7, 2017 16:20 — forked from tito/README.md
Unpack Kivy APK

This is a script that you can use to check the content of a Kivy-based APK. It will automatically create a temporary directory, unpack everything, show you the files inside, and drop a shell for more inspection.

chmod +x unpackapk
./unpackapk PATHTOAPK.apk

Or if you just want the file listing:

cat > $(git --exec-path)/git-ass << EOF
echo '(‿ˠ‿)'
EOF
chmod +x $(git --exec-path)/git-ass
@adrienbrunet
adrienbrunet / keybase.md
Created August 25, 2016 10:59
Claiming who am I

Keybase proof

I hereby claim:

  • I am adrienbrunet on github.
  • I am abrunet (https://keybase.io/abrunet) on keybase.
  • I have a public key whose fingerprint is 878D F8EB 8D2E 2F9C FF80 6002 34FC 5DEB 9A6D 57C5

To claim this, I am signing this object:

import random
tab = [random.randint(0, 100) for i in range(50)]
for i in range(5, 49, 5):
print(tab[i])
# directement sans boucle
print(tab[5::5])