Skip to content

Instantly share code, notes, and snippets.

View Rodrirokr's full-sized avatar

Rodrigo García Rodrirokr

  • Grupo Biz
  • Guadalajara, Mex
View GitHub Profile
@Rodrirokr
Rodrirokr / install_busybox.sh
Last active May 3, 2019 23:36 — forked from alsanchez/install_busybox.sh
Install busybox on the x86 Android emulator
#!/bin/bash
wget --no-parent --no-host-directories --cut-dirs 3 -r https://busybox.net/downloads/binaries/1.30.0-i686/ -P /tmp/busybox
adb push /tmp/busybox /data/data/busybox
adb shell "mount -o rw,remount /system && mv /data/data/busybox /system/bin/busybox && chmod 755 /system/bin/busybox/busybox && /system/bin/busybox/busybox --install /system/bin"
@Rodrirokr
Rodrirokr / cors_test.json
Created June 26, 2018 16:12
CORS request
{
"texto": "este es un texto de prueba",
}