Skip to content

Instantly share code, notes, and snippets.

View attawayinc's full-sized avatar
💭
I may be slow to respond.

attawayinc

💭
I may be slow to respond.
View GitHub Profile
@attawayinc
attawayinc / introrx.md
Created August 30, 2020 00:16 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@attawayinc
attawayinc / markdown-cheatsheet.md
Created August 30, 2020 00:16 — forked from jonschlinkert/markdown-cheatsheet.md
A better markdown cheatsheet.
@attawayinc
attawayinc / debloatNox.md
Created August 28, 2020 23:06 — 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

@attawayinc
attawayinc / Ubuntu
Last active August 6, 2020 17:04
Installations
# Install Docker_CE_CLI and Docker Compose
RUN apt-get update \
#
# Install Docker CE CLI
&& apt-get install -y apt-transport-https ca-certificates curl gnupg2 lsb-release \
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - 2>/dev/null \
&& echo "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list \
&& apt-get update \
&& apt-get install -y docker-ce-cli \
#
german21,415german amateur303,395german amateur sex547,557german amateur teen563,521german anal207,652german babe101,731german blonde99,224german creampie gangbang73,651german dirty talk33,811german gangbang43,635german girl145,661german goo girls109,999german granny28,309german homemade75,260german mature85,905german milf148,732german mistress25,302german mom62,733german porn191,567german pussy231,990german scout17,123german sex266,901german shemale64,324german sister36,340german slut62,537german sluts45,694german swinger22,810german teacher24,424german teen283,063german threesome61,131german tranny46,451german wife68,223germangoogirls1,453germanpickups39germanporncasting68germans199germany2,644
@attawayinc
attawayinc / go
Last active August 1, 2020 22:32
go
sudo apt install golang-go
web@tayrita:~/src/ato-toolkit$ go
Go is a tool for managing Go source code.
Usage:
go command [arguments]
The commands are:
@attawayinc
attawayinc / install
Last active June 24, 2020 04:40
install
sudo apt install p7zip-full
#
bash -c "$(wget https://raw.githubusercontent.com/mskyaxl/wsl-terminal/master/scripts/install.sh -qO -)" '' -t
@attawayinc
attawayinc / Powershell
Last active June 12, 2020 21:35
Powershell Installations
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi
DEBIAN_FRONTEND=noninteractive apt-get --yes update