Skip to content

Instantly share code, notes, and snippets.

@hieu-van
hieu-van / getquote.py
Last active December 14, 2020 16:26
Mã Python lấy giá vàng SJC cho Ledger
#!/usr/bin/python3
import requests
import sys
from bs4 import BeautifulSoup
from datetime import datetime
page_url = "https://sjc.com.vn/giavang/textContent.php"
page = requests.get(page_url)
soup = BeautifulSoup(page.content, 'html.parser')
@hieu-van
hieu-van / clear_data_disabled_apps.sh
Created November 19, 2019 10:51
Clear data of disabled apps in Android
#!/bin/sh
for i in $(adb shell pm list packages -d | cut -d ':' -f 2); do
adb shell pm clear $i
done