Skip to content

Instantly share code, notes, and snippets.

@peteristhegreat
peteristhegreat / Readme.md
Last active October 10, 2021 01:09
Frog Town

Rather than create a deck from scratch, you can download a already-made deck from sites like deckstats.net

After you find the deck you want, click on "Tools" and select "Decklist" (or you can select "download" to pull down a txt file with the same info).

Frogtown is looking for QTYspaceNAMEOFCARD. Unfortunately, the deckstats decklist includes some square brackets and letters between the quantity and the name of the card.

Paste decklist into notepad++, and do a find-and-replace (with the "regular expression" radio button selected), and search for: \[.*\] Replace with nothing

@tomhicks
tomhicks / plink-plonk.js
Last active March 18, 2024 02:23
Listen to your web pages
@Log1x
Log1x / debloatNox.md
Last active April 18, 2024 00:18
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

@negz
negz / kubedump.sh
Last active March 6, 2024 18:42
Dump Kubernetes cluster resources as YAML
#!/usr/bin/env bash
set -e
CONTEXT="$1"
if [[ -z ${CONTEXT} ]]; then
echo "Usage: $0 KUBE-CONTEXT"
exit 1
fi
@JamesMGreene
JamesMGreene / gitflow-breakdown.md
Last active April 16, 2024 16:36
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository