Skip to content

Instantly share code, notes, and snippets.

View WilliamGrah's full-sized avatar

William Grah WilliamGrah

View GitHub Profile
@WilliamGrah
WilliamGrah / debloatNox.md
Created September 16, 2019 12:25 — forked from Log1x/debloatNox.md
Debloating & Optimizing Nox

Debloating Nox

Nox, despite being the most feature-filled Android emulator, has a lot of negativity surrounding it due to their antics when it comes to making income off of their program. It is known for running repeated advertisments in the background, calling home and passing along system information (outside of your Android instance) as well as a vast amount of potentially sensitive data in an encrypted payload back to their multitude of servers. With the following preventitive measures, we can stop a majority of this happening as well as greatly improve the overall performance.

  1. Download and Install a fresh copy of Nox. The latest version is fine (for now). If you already have it installed, that is fine too. No need to reinstall.

  2. Enable Root Mode on Nox by clicking the gear icon and then checking the Root Startup box.

  3. Install a new Launcher from the Play Store. ANYTHING but Nox's default. I suggest [Nova Launcher](https://play.google.com/s

@WilliamGrah
WilliamGrah / tt.py
Created May 9, 2017 15:45
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".
for i in range(1,101):
resp = i
if (i%3) == 0:
resp = "Fizz"
if (i%5) == 0:
resp = "Buzz"
if ((i%3) == 0 and (i%5) == 0):
resp = "FizzBuzz"
print(resp)