Skip to content

Instantly share code, notes, and snippets.

View sanjarbek-ismatov's full-sized avatar
💻
Learner

Sanjarbek sanjarbek-ismatov

💻
Learner
View GitHub Profile
@snapeuh
snapeuh / remove_apps_miui.cmd
Created November 22, 2019 10:29
Remove some Google apps and MIUI apps on my Xiaomi 9T phone
@echo off
set /p Y=Enter adb path:
cd /d %Y%
adb devices
pause
adb shell pm uninstall --user 0 com.android.chrome
adb shell pm uninstall --user 0 com.google.android.apps.tachyon
adb shell pm uninstall --user 0 com.google.android.music
adb shell pm uninstall --user 0 com.google.android.talk
adb shell pm uninstall --user 0 com.google.android.videos

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@carlessanagustin
carlessanagustin / win2ix.md
Last active June 24, 2024 14:36
Windows and Unix command line equivalents
Windows command Unix command Notes
set env Set on Windows prints a list of all environment variables. For individual environment variables, set is the same as echo $ on Unix.
set Path export $PATH Print the value of the environment variable using set in Windows.
set PROJ -- result: PROJ=c:\project
echo %PROJ% echo $PROJ result: c:\project

|