Skip to content

Instantly share code, notes, and snippets.

View abzrg's full-sized avatar
👀
waiting

Ali Bozorgzadeh abzrg

👀
waiting
View GitHub Profile
@abzrg
abzrg / android.package.name.sh
Last active November 11, 2021 21:55
De-bloat android knowing the name of the applications
# source: https://forum.xda-developers.com/t/guide-debloat-remove-stock-apps-without-root.3829593/
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Hangout
adb shell pm uninstall -k --user 0 com.google.android.apps.docs # Google Drive
adb shell pm uninstall -k --user 0 com.google.android.apps.maps # Google Maps
adb shell pm uninstall -k --user 0 com.google.android.apps.photos # Google Photos
adb shell pm uninstall -k --user 0 com.google.android.apps.tachyon # Google Duo
adb shell pm uninstall -k --user 0 com.google.android.googlequicksearchbox # Google App
adb shell pm uninstall -k --user 0 com.google.android.music # Google Music
adb shell pm uninstall -k --user 0 com.google.android.videos # Play Movies
@abzrg
abzrg / template_metaprogramming_intro.md
Last active October 27, 2021 22:39
C++ template metaprogramming introduction ( Reproducing an article by: Nico Brailovsky )