Skip to content

Instantly share code, notes, and snippets.

@JR-378
JR-378 / debloatNox.md
Last active January 29, 2020 20:26 — 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

@JR-378
JR-378 / TwoHandManipulatable.cs
Created October 8, 2018 07:07
Fixed TwoHandManipulatable.cs of HoloToolkit for Unity
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using HoloToolkit.Unity.UX;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using UnityEngine.Assertions;
namespace HoloToolkit.Unity.InputModule.Utilities.Interactions
@JR-378
JR-378 / Arduino-Mega-IBM-IoT.ino
Last active April 3, 2018 10:00
Use to connect to IBM Cloud IoT Platform with Arduino Mega 2560 and send JSON data from Dallas temperature sensor and analog pins through MQTT connection
// This code is used by Arduino Mega that is connected to Arduino Ethernet Shield V1,
// Dallas temperature sensor and LCD screen. The data is send to IBM Cloud IoT Platform
// through MQTT connection. Note: as this is insecure connection, you need to configure
// your IoT Platform connection security to TLS Optional. (Security -> Connection Security ->
// Default Rule -> Scope: Default, Security Level: TLS Optional)
// For security reasons, login details are replaced with xxxxxxxx
// Anyone may use this code as they wish.
#define DEBUG // Enable debug mode, comment it out to disable it.