Skip to content

Instantly share code, notes, and snippets.

@nuclearglow
nuclearglow / alacritty-terminfo.sh
Created June 8, 2022 08:00
Alacritty install terminfo
wget https://raw.githubusercontent.com/alacritty/alacritty/master/extra/alacritty.info && tic -xe alacritty,alacritty-direct alacritty.info && rm alacritty.info
@tayyebi
tayyebi / FilterMastodonToots.js
Created October 6, 2020 14:28
To filter hashtag #هزلیات from Mastodon.
var childDivs = document.getElementsByClassName('status');
for( i=0; i< childDivs.length; i++ )
{
var childDiv = childDivs[i];
if (childDiv.textContent.includes("#هزلیات")) {
childDiv.style.display='none';
}
}