Skip to content

Instantly share code, notes, and snippets.

View BelenCebrian's full-sized avatar
🎯
Focusing

Belén Cebrián BelenCebrian

🎯
Focusing
View GitHub Profile
@BelenCebrian
BelenCebrian / android-backup-apk-and-datas.md
Created January 4, 2024 19:37 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Don't hesitate to read comments, there is useful tips, thanks guys for this !

Fetch application APK

@BelenCebrian
BelenCebrian / link_extractor.py
Created April 7, 2021 08:31
Para buscar todos los enlaces de un mismo tipo en páginas con un patrón consecutivo (como enlaces a YouTube en los cursos de Eduteca)
@BelenCebrian
BelenCebrian / bobp-python.md
Created April 7, 2021 08:15 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@BelenCebrian
BelenCebrian / pdf2svgs.py
Created April 6, 2021 17:28 — forked from vitchyr/pdf2svgs.py
Convert PDF to multiple SVGs with Inkscape and pyPdf
"""
Author: Vitchyr Pong
Convert a PDF to svg files. Note that this is pretty slow since it makes
subprocess calls to inkscape's PDF-to-SVG command line convert.
Requirements:
- Inkscape (https://inkscape.org/)
- pyPdf (http://pybrary.net/pyPdf/)
- A '/tmp' directory. If not, you must pass in another directory.