Skip to content

Instantly share code, notes, and snippets.

View AnirudhaS's full-sized avatar

Anirudha Shingote AnirudhaS

View GitHub Profile
@dcower
dcower / remove_crashed_sessions.js
Created November 8, 2024 16:35
Remove crashed sessions in Tabs Outliner
function search_and_remove() {
// Search for crashed windows and tabs. Reverse the list so that we delete
// from the bottom, which is MUCH faster.
elements = Array.from(document.querySelectorAll('li.savedwinNTASC,li.savedtabNTASC')).reverse();
if (elements.length == 0) {
console.log("Finished removing stale windows and tabs.");
return;
}
@staltz
staltz / introrx.md
Last active December 31, 2025 13:31
The introduction to Reactive Programming you've been missing