Skip to content

Instantly share code, notes, and snippets.

View StellarStoic's full-sized avatar
:octocat:
Interested in everything interesting

StellarStoic StellarStoic

:octocat:
Interested in everything interesting
View GitHub Profile
@melvincarvalho
melvincarvalho / NIP-133.md
Last active March 26, 2024 16:42
NIP-133.md

NIP-133

Nostr Game Score Event

draft optional author:melvincarvalho

This NIP defines an event used to represent scores for players within various games on the Nostr network. Each game is uniquely identified by a d tag, and each Nostr user can have a score associated with that game.

@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active August 9, 2025 07:15
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }
@gokulkrishh
gokulkrishh / media-query.css
Last active August 23, 2025 03:07
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */