- Web Discord: Press F12 or
right-click
on the page and selectInspect
. - On App Discord: Press Ctrl + Shift + I.
Discover gists
//Accidentally synced you spotfiy liked songs to soundcloud or just want to mass unlike? Here you go! Just set the number of songs! | |
// Go to soundcloud main page and paste in the console | |
(async function() { | |
let count = 0; | |
const limit = 50; // Set the number of songs to unlike | |
while (count < limit) { | |
var buttons = Array.from(document.querySelectorAll(".sc-button-like[title='Unlike']")); | |
if (buttons.length === 0) break; | |
buttons.forEach(button => { | |
if (count < limit) { |
Inspired by this
More of my guides: Debloating MEMu - Debloating Nox (Updated)
This mainly applies to LDPlayer9. They will probably work on the low end options (like LDPlayer5) but not guaranteed.
This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.
- Download LDPlayer, preferably an offline version from the version history
#!/bin/bash | |
# Demonstration: https://youtu.be/Uj3nmYq5LnQ | |
# MIT License | |
# | |
# Copyright (c) 2024 Ofee Oficsu | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal |
#r "Microsoft.VisualBasic" | |
using Microsoft.VisualBasic; | |
using System.Text.RegularExpressions; | |
// Select a measure | |
var offsetMeasure = Model.SelectMeasure(); | |
// Select an offset column | |
string offsetColumn = SelectColumn(Model.Tables["Dates"].Columns.Where( | |
col => col.Name.Contains("Offset"))) |
Also see the original Pieter Noordhuis's guide
You need:
- Raspberry Pi Model B (or B+) with a MicroSD Card $35-40
- An RTL-SDR dongle:
{ | |
"input": { | |
"blocklist": [], | |
"compressor#0": { | |
"attack": 5.0, | |
"boost-amount": 6.0, | |
"boost-threshold": -72.0, | |
"bypass": false, | |
"dry": -100.0, | |
"hpf-frequency": 10.0, |
aka what i did to get from nothing to done.
note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV
-
repo -> repository
-
clone
-> bring a repo down from the internet (remote repository like Github) to your local machine -
add
-> track your files and changes with Git -
commit
-> save your changes into Git -
push
-> push your changes to your remote repo on Github (or another website) -
pull
-> pull changes down from the remote repo to your local machine -
status
-> check to see which files are being tracked or need to be commited -
init
-> use this command inside of your project to turn it into a Git repository and start using Git with that codebase