This file contains 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
// // THIS SCRIPT DELETES YOUR LIKES | |
// // I AM NOT RESPONSIBLE IF YOUR ACCOUNT GETS BANNED OR SUSPENDED BECAUSE IDK MAYBE THIS IS AGAINST TWITTER TOS | |
// 1. Go to your likes page, e.g. https://x.com/USERNAME/likes | |
// 2. Open the browser JavaScript console | |
// 3. Paste this script | |
// 4. Hit enter to run | |
This file contains 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
// Josh's Custom CSS Reset | |
// https://www.joshwcomeau.com/css/custom-css-reset/ | |
export const comeauReset = { | |
// 1. Use a more-intuitive box-sizing model. | |
'*, *::before, *::after': { | |
boxSizing: 'border-box', | |
}, | |
// 2. Remove default margin |