Skip to content

Instantly share code, notes, and snippets.

View nullmastermind's full-sized avatar
:shipit:
chill

Null nullmastermind

:shipit:
chill
View GitHub Profile
@nullmastermind
nullmastermind / debloatMEmu.md
Created December 5, 2022 12:34 — forked from TameemS/debloatMEmu.md
Debloating & Optimizing MEmu

Inspired by this

Edit 22/8/2021: I have updated MEmu and it seems like it reinstalls the apps and re-enables the services. Repeat steps 5, 7, 8, and 9 if you update MEmu.

Debloating MEmu

In my experience, Nox can be quite slow and choppy, and looks like I'm not the only person with this problem. A lot of people say that MEmu performs better than Nox, and I could agree with that. I have no chopping issues with it so far. But like Nox, there are kinda shady stuff going on. No one has made a guide on this, so I did it.

@nullmastermind
nullmastermind / UDPClient.hpp
Created March 19, 2022 21:37 — forked from kaimallea/UDPClient.hpp
Super simple UDP client using boost
#include <iostream>
#include <boost/array.hpp>
#include <boost/asio.hpp>
using boost::asio::ip::udp;
class UDPClient
{
public:
UDPClient(
1635592960824 $2b$10$wSXHsdh2gV5eDg0h9tSZl.DYgIgFZlqQXxtnINwKEg1JNWjW2Feeq $2b$10$n24hb5fRPbKnhWxnGF751ubmM.w76jCCNp/rwXyZ19phmzte0uNoK $2b$10$AJIaIGHehzr05A/gFmL8d.SEG/SC7pxjYsfdALnvcRa/uUYLyKEpC $2b$10$/0I4kj41pKHHbrhkAoJYherjOwk0zM12oXgGP8os2H7dVGEn6HzOu $2b$10$5PRANlnNRMaDpN2d418uTeu2uJdlzUNjftPH44PsXzIoYQMXQ52EW $2b$10$NUd.wmEp/TifXHP7Moa/HeoSolnEgovVVj/mAlTv5wONqQNDj6Kfy $2b$10$ra5KYWti4.v7/9kzdQ2Q2umod.tud.9CsXNLPn9eEZJXnezg3xBmq $2b$10$uqRceeaiVTXO6NVGVapX8eSpmx4bJunxzA1GHL4AchAbKdJnGnYna $2b$10$B8138oZXfZUNB4vaHo/NkuAM7x6wx5uoaVgtL4gcuTiW/NIemYC0y $2b$10$9AopKrmDrZuxxflvBTAoyOxRXqg8ioeIbtwtPOM7c8DURrNGLph.2 $2b$10$yil9agh/SkaQSFH1e7Ol7O3amC4dZsP3niqOVA7NApZ6Vj.i6JSUW $2b$10$/xDksoCdJeaFZ111WkKVh.LbLw4FoPuWgISR.SM/zidwGfrqzwEge $2b$10$q3i1nBszHAC5eMsNbWGQo.p.2PMc0a8FBhlPxebYTLA23nXAErRLO $2b$10$9ucMbfavSkL3E8n/co5PFe5ZbOsaagX0wuIfHt98BT0NGUUxe2kYq $2b$10$aDAcqOIvqGZvSZTrAuUxzuBQUskXc9RqecEufYlt2gUStQ.ZKeFgm $2b$10$b2gnU5HPDyrWMutfXTl2ousW0PdHQPYXgJPzgQb4hsnux1lMVnEnS $2b$10$3S34l9.Dc6Y0dMRHj3O4kOJTn0K
import 'package:flutter_screenutil/flutter_screenutil.dart';
class Units {
static final md = 1.0;
static final xs = 0.75;
static final sm = 0.875;
static final lg = 1.125;
static final xl = 1.25;
static final xl2 = 1.5;
static final xl3 = 1.875;
@nullmastermind
nullmastermind / machine.js
Last active June 30, 2021 17:27
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@nullmastermind
nullmastermind / machine.js
Last active June 30, 2021 10:53
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@nullmastermind
nullmastermind / android-backup-apk-and-datas.md
Created May 1, 2021 10:06 — forked from AnatomicJC/android-backup-apk-and-datas.md
Backup android app, data included, no root needed, with adb

Backup android app, data included, no root needed, with adb

adb is the Android CLI tool with which you can interact with your android device, from your PC

You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.

Fetch application APK

To get the list of your installed applications:

@nullmastermind
nullmastermind / AdbCommands
Created January 13, 2021 03:53 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@nullmastermind
nullmastermind / kernel.py
Created September 8, 2020 09:31 — forked from korakot/kernel.py
Install rust, cargo in Colab
# run this once, then reload, and then skip this
!apt install rustc
!gdown --id 1PULtTc-2e9z4bswh_SQqL5oy_4JpfV7c
!chmod +x evcxr_jupyter
!./evcxr_jupyter --install
// install dependency
:dep cmd_lib
use cmd_lib::run_cmd as sh;