This guide needs basic terminal (SSH) knowledge.
cd ~/.apps
wget https://github.com/userdocs/qbittorrent-nox-static/releases/download/release-4.3.1_v1.2.11/amd64-glibc-qbittorrent-nox -O qbittorrent-nox
chmod +x qbittorrent-nox| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.Data; | |
| using System.Drawing; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| using System.Threading.Tasks; |
| #!/usr/bin/env node | |
| const fs = require('fs'); | |
| const crypto = require('crypto'); | |
| if (process.argv.length < 3){ | |
| console.log(`Missing path`); | |
| process.exit(1); | |
| } | |
| const path = process.argv[2]; |
| # COMP1117 A1Q2 sample solution | |
| # By Raghu Saxena | |
| result = [] | |
| previous_letter = 'a' | |
| input_letter = input() | |
| count = 0 | |
| while input_letter != '!': | |
| if input_letter == previous_letter: |
| "workbench.colorTheme": "Default High Contrast", | |
| "workbench.colorCustomizations": { | |
| "[Default High Contrast]": { | |
| "editor.background": "#070025", | |
| "editor.foreground": "#037cbd", | |
| "editor.lineHighlightBorder": "#ff00ff", | |
| "editor.selectionBackground": "#ffb4f5a4", | |
| "selection.background": "#008000", | |
| "statusBarItem.remoteBackground": "#f807d800", | |
| "activityBar.background": "#070025", |
Download link: https://aka.ms/terminal
Download link: https://git-scm.com/downloads
Download link: https://code.visualstudio.com/download
| #!/bin/bash | |
| for file in *.flac; do | |
| input="$file" | |
| output="${file%.flac}.m4a" | |
| ffmpeg -i "$input" -c:v copy -acodec alac "$output" | |
| done | |
| echo "Conversion complete." |
For setup, see: https://ckcr4lyf.github.io/tech-notes/services/nginx/nginx-ech.html
TODO: make a full git repo (TBD if needed?)
Live Demo: https://rfc5746.mywaifu.best:443/
This gist is just to collect all the links etc. to make it easy. I will try and keep it updated if something changes.
This assumes a clean phone with no trace of ReVanced or MicroG.
DO NOT RUN THIS , it will attempt to recursively overwrite files.
What follows is very simple deobufscation & explanation of what the code is doing. I have changed the library imports to make it more clear
The original code: https://github.com/RIAEvangelist/node-ipc/blob/847047cf7f81ab08352038b2204f0e7633449580/dao/ssl-geospec.js
import path from "path";