Skip to content

Instantly share code, notes, and snippets.

View Aetherinox's full-sized avatar

Aetherinox Aetherinox

View GitHub Profile
@Aetherinox
Aetherinox / android-deshitify.md
Last active April 10, 2026 19:38
Android De-shitify Guide

About

This guide explains how to de-bloat an Android device using adb shell. It is intended for users who cannot unlock their bootloader or gain root access, but still want control over what runs on their phone.

On many modern devices, especially Samsung, system apps cannot be fully removed because the bootloader is locked. This means traditional methods like rooting or flashing modified systems are not available. Instead, this guide uses ADB commands to disable or uninstall apps for the current user, which stops them from running and removes them from the device interface.

The focus is on eliminating unnecessary software, reducing background activity, and limiting telemetry or data collection from preinstalled services.


@Aetherinox
Aetherinox / .bashrc
Created December 4, 2025 16:26
Bash alias for searching / listing files
#!/bin/bash
# #
# define > colors
#
# Use the color table at:
# - https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797
# #
declare -A c=(
[end]=$'\e[0m'
@Aetherinox
Aetherinox / README.md
Last active August 30, 2025 09:03

About

This gist explains how to use Discord Nitro themes so that you can change the appearance of your entire Discord interface without the need for any paid subscriptions.




@Aetherinox
Aetherinox / devices.md
Last active July 9, 2025 11:29
Historical Gaming Consoles, Space Orbiter / Rover / Probe, Raspberry Pi, CPU / Memory List

About

This is a quickly thrown together list of all gaming consoles, devices, and even space probes, including the CPU, architecture, CPU clockspeed, and onboard memory of the device.




@Aetherinox
Aetherinox / 3. OpenGist.md
Created June 25, 2025 01:27
3. OpenGist.md

This section explains how to integrate Opengist into your Obsidian.md notes


What is OpenGist?

OpenGist is a self-hosted solution that works in a similar manner to Github Gists, but with the added bonus that you control the entire site. It is great for private gist hosting, and also supports other users being able to register on your site and host their own gists. It also includes its own API, and is compatible with Github CLI (command-line)

This guide will not go into detailed instructions on how to install and configure an OpenGist server, however, you can use the buttons below for a very detailed set of instructions for getting started with your own self-hosted gist solution.

@Aetherinox
Aetherinox / colors_preview.sh
Created June 20, 2025 23:55
Bash Color Table Examples
# #
# simple color table for compatible bash colors
# #
preview_colors()
{
echo
echo " ANSI Standard Foreground Colors:"
for code in 30 31 32 33 34 35 36 37; do
printf " \033[${code}m%-15s\033[0m" "code ${code}"
@Aetherinox
Aetherinox / server.ts
Created June 11, 2025 00:33 — forked from JonathanTurnock/server.ts
Electron subprocess
import { randomUUID } from "node:crypto";
import * as os from "os";
import Aigle from "aigle";
import { UtilityProcess, utilityProcess } from "electron";
import { compact, flatten, values } from "lodash";
import { z } from "zod";
import { trpc } from "../trpc";
type ServerEntry = {
id: string;
@Aetherinox
Aetherinox / .bashrc
Last active May 23, 2025 09:57
Transfer.sh - Linux Alias (gpg, tar.gz support)
# #
# Transfer.sh > Upload
#
# This alias allows you to push files to your transfer.sh server.
# Supports GPG encryption, and tar.gz or zip compression.
#
# Needs to be placed in
# /home/$USER/.bashrc
# After adding, refresh the file using:
# source /home/$USER/.bashrc
@Aetherinox
Aetherinox / install-xrdp.sh
Created April 13, 2025 11:24 — forked from danawesome/install-xrdp.sh
Zorin OS 17 enhanced session install.sh
#!/bin/bash
# This script is for Zorin!_OS 17 to download and install XRDP+XORGXRDP via source.
#
# Based on the following scripts:
# https://github.com/microsoft/linux-vm-tools/tree/master/ubuntu/18.04
# https://github.com/microsoft/linux-vm-tools/pull/106
# https://gist.github.com/phillipsj/a4b6e4a1070b4320ed19e061fe2dd83d
# https://gist.github.com/kaitwalla/9fbcef47c5ff2b58cd353ba3744be4e5
# https://github.com/itsmebhavin/zorin-os-xrdp/blob/master/install.sh