Skip to content

Instantly share code, notes, and snippets.

View talitastravassos's full-sized avatar
👩‍💻
code like a girl

Talita S. Travassos. talitastravassos

👩‍💻
code like a girl
View GitHub Profile
@talitastravassos
talitastravassos / script-tumblr-unfollow.js
Last active April 21, 2023 22:35
script to unfollow inactive tumblrs
// Find all entries with class "Ut4iZ eXQ6G veU9u"
let entries = document.querySelectorAll(".Ut4iZ.eXQ6G.veU9u");
// find all inactive tumblrs
let unfollowList = Array.from(entries).filter(entry => {
let updatedText = entry.querySelector(".fTJAC");
// for months
//return updatedText && updatedText.innerText.match(/Updated (1?[89]|10|11|12) months ago/)
return updatedText && updatedText.innerText.match(/Updated ([1-9]|10|11|12|13) years ago/)
@talitastravassos
talitastravassos / README.md
Created January 18, 2020 19:02 — forked from hofmannsven/README.md
Git Cheatsheet