Skip to content

Instantly share code, notes, and snippets.

View carterlasalle's full-sized avatar

Carter LaSalle carterlasalle

View GitHub Profile
@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) {
@danhollick
danhollick / tailwind-css-v4.mdc
Last active June 5, 2025 11:12
Cursor rules file for Tailwind CSS v4.0
// Update globs depending on your framework
---
name: tailwind_v4
description: Guide for using Tailwind CSS v4 instead of v3.x
globs: ["**/*.{js,ts,jsx,tsx,mdx,css}"]
tags:
- tailwind
- css
---