Skip to content

Instantly share code, notes, and snippets.

View MohiuddinSumon's full-sized avatar

Mohiuddin Sumon MohiuddinSumon

View GitHub Profile
@hbsdev
hbsdev / clean_py.sh
Last active July 14, 2024 19:48 — forked from joelverhagen/clean_py.sh
Recursively remove all .pyc files and __pycache__ directories in the current directory.
#!/bin/sh
# recursively removes all .pyc files and __pycache__ directories in the current
# directory
find . | grep -E "(__pycache__|\.pyc$)" | xargs rm -rf
@asif-mistry
asif-mistry / Remove_MIUI_Bloatware.bat
Created June 9, 2018 18:27
Batch file to remove preinstalled bloated apps in MIUI devices with ADB
@echo off
set /p Y=Enter adb.exe folder path:
cd %Y%
adb devices
pause
for %%X in (
"com.android.browser"
"com.android.chrome"
"com.android.email"
"com.android.thememanager"
@Snarp
Snarp / google-docs-copy.js
Last active July 12, 2024 13:19
Script to allow copying from a protected Google Doc
/*
<https://stackoverflow.com/questions/40296831/is-it-possible-to-force-a-copy-of-a-protected-google-doc>
NOTE - 2021-05-24
-----------------
The script below isn't the fastest way to copy-and-paste from a protected
Google Doc. Before trying it, I'd suggest following MikoFrosty's advice from
the comments: