Skip to content

Instantly share code, notes, and snippets.

@Zeltales
Zeltales / AutoFarmTheLastMeadow.md
Last active April 2, 2025 01:46
Auto Farm The Last Meadow Discord

sassyddd

Instructions

1. Open the Console:

  • Web Discord: Press F12 or right-click on the page and select Inspect.
  • On App Discord: Press Ctrl + Shift + I.

2. Enable DevTools on Discord (if it doesn't work):

  • Option 1: Use the PTB or Canary version of Discord.
@carterlasalle
carterlasalle / remove_soundcloud_liked.js
Created April 2, 2025 01:43
Accidentally synced you spotfiy liked songs to soundcloud or just want to mass unlike? Here you go! Just set the number of songs!
//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) {
@TameemS
TameemS / debloatLDPlayer.md
Last active April 2, 2025 01:41
Debloating LDPlayer

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.

Debloating LDPlayer

This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.

  1. Download LDPlayer, preferably an offline version from the version history
@oficsu
oficsu / fzf-history.sh
Last active April 2, 2025 01:39
An alterntive to __fzf_history__ that supports immediate execution, moving around match and showing date with arbitrary HISTTIMEFORMAT
#!/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")))
@lxe
lxe / goes16-rtlsdr.md
Last active April 2, 2025 01:37
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and 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,
@scyto
scyto / proxmox.md
Last active April 2, 2025 01:31
my proxmox cluster

ProxMox Cluster - Soup-to-Nutz

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

Purpose of Proxmox cluster project

Required Outomces of cluster project

  • 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