This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
--- |