Skip to content

Instantly share code, notes, and snippets.

@bryanjhv
bryanjhv / remove-yape-root-check.md
Last active November 11, 2024 15:09
Eliminar chequeo de ROOT de Yape BCP (Android)

Eliminar chequeo de ROOT de Yape BCP (Android)

Algunos puntos / aclaraciones

  • NO trabajo para BCP en este momento ni previo a esta fecha.
  • NO me hago responsable por lo que otros hagan con este script.
  • NO brindo ningún tipo de soporte, si quieres usarlo lee tutoriales.
  • SOLO para uso personal, NO hacerlo comercial. EVITAR piratear.
  • SI lo RE-POSTEAS, hazlo agregando un enlace a este ORIGINAL.
  • ESPERO que BCP mejore su APP en vez de chequeos TONTOS.
@bryanjhv
bryanjhv / fetch_vcdist.py
Created April 26, 2021 19:40 — forked from donno/fetch_vcdist.py
Downloads and extract the Visual C++ Redistributables.
"""Downloads and extract the Visual C++ Redistributables.
This is useful when working with minidump files as the user may be running
with a new different version of the runtime. This script aims to maintain
a copy of the various versions.
Versions are normally added once I encounter them.
This requires dark.exe from Wix (http://wixtoolset.org/releases/) and
expand.exe (File Expansion Utility - this comes with Microsoft Windows).
@bryanjhv
bryanjhv / Caddyfile
Created April 27, 2021 21:49
Aria2 daemon with Web UI using Caddy server
aria2.server.lan {
file_server
encode gzip zstd
root * /home/myself/Projects/aria2/docs
@jsonrpc {
path /jsonrpc
header Upgrade websocket
header Connection *Upgrade*
}
route {
@bryanjhv
bryanjhv / Raspberry and Gammu.md
Created April 28, 2021 22:35 — forked from tomysmile/Raspberry and Gammu.md
GAMMU: Send SMS with Raspberry Pi

Send SMS messages using Raspberry Pi.

Using gammu and Huawei E220

Prepare SD card with wheezy.

Login / complete rasp-config / reboot / login

Set vimrc to prevent annoying ADBC arrow keys

cp /etc/vim/vimrc ~/.vimrc

-- Get SMS summary from Gammu SMSD
-- from almost all content tables.
CREATE VIEW summary
AS
(
SELECT
'inbox' AS kind,
ID AS id,
ReceivingDateTime AS created,
@bryanjhv
bryanjhv / main.go
Created May 26, 2021 05:27 — forked from enricofoltran/main.go
A simple golang web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
package main
import (
"context"
"flag"
"fmt"
"log"
"net/http"
"os"
"os/signal"
@echo off
pushd "%~dp0"
rem enable gpedit on windows home (tested windows 10)
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum > pkgs.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >> pkgs.txt
for /f %%i in ('findstr /i . pkgs.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del pkgs.txt
pause
package main
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
if __name__ == "__main__":
from datetime import datetime, timedelta
from smbus import SMBus
from sys import argv
from time import sleep
argc = len(argv)
bus = SMBus(1 if argc < 2 else int(argv[1]))
rop = "r" if argc < 3 else argv[2].lower()[0:1]
package main
import (
"os"
"strconv"
"syscall"
"unsafe"
)
var mm []uint32