Skip to content

Instantly share code, notes, and snippets.

View imnotdev25's full-sized avatar
🎯
Focusing

Bhavik Talaviya imnotdev25

🎯
Focusing
View GitHub Profile
<resources>
<string name="settings" translatable="false">Settings</string>
<string name="next" translatable="false">Next</string>
<string name="previous" translatable="false">Prev</string>
<string name="skip" translatable="false">Skip</string>
<string name="faq" translatable="false">FAQ</string>
<string name="mac_address" translatable="false">Mac Address:</string>
<string name="channel" translatable="false">Channel:</string>
@klingtnet
klingtnet / how-to-remove-bloatware-from-android-without-root-using-adb-only.md
Created July 27, 2019 11:10
How to remove bloatware from android without root using adb only

How to remove bloatware from android without root using adb only

  1. Make sure that USB debugging is enabled.
  2. Deactivate all bloatware apps.
  3. List the names of all deactivated packages:
$ adb shell pm list packages -d
@astrofrog
astrofrog / async_plotting.py
Created December 10, 2011 00:11
Asynchronous Plotting in Matplotlib: rather than call savefig directly, add plots to an asynchronous queue to avoid holding up the main program. Makes use of multiple processes to speed up the writing out. Suggestions welcome!
import time
import multiprocessing as mp
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt