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
div[data-testid="sidebarColumn"], header[role="banner"], h2[role="heading"] { display: none; } | |
div[data-testid="primaryColumn"], .r-1ye8kvj, .r-9x6qib { max-width: 600px; } | |
main[role="main"], html, body { background-color: #eee; } | |
main[role="main"] > div { width: inherit; max-width: 100%; margin: auto; } | |
.r-gtdqiz { position: inherit; } | |
/* avatars */ | |
div[data-testid="tweet"] > :first-child { display: none; } | |
/* action buttons */ | |
div[aria-label~="Reply"], div[aria-label~="Retweet"], div[aria-label="Share Tweet"] { display: none; } | |
.r-1mdbhws { max-width: 40px; } |
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
// ==UserScript== | |
// @name Basecamp Applause Boost | |
// @namespace https://www.onfocus.com/ | |
// @version 0.1 | |
// @description Create an applause boost button | |
// @author Paul Bausch | |
// @match https://3.basecamp.com/* | |
// @grant none | |
// ==/UserScript== |
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
javascript:(function(){window.location=window.location.toString().replace(/^https:\/\/mltshp\./,'https://s.mltshp.').replace(/\/p\//,'/r/')+'.gif';})() |
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
// ==UserScript== | |
// @name Embolden MeFi Logo & Headlines | |
// @namespace http://onfocus.com/ | |
// @version 0.1 | |
// @description Makes the modern theme more bold. | |
// @author pb | |
// @match https://*.metafilter.com/* | |
// @grant none | |
// ==/UserScript== |
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
#thanks, http://gizmodo.com/how-to-replace-twitters-dumb-heart-with-the-emoji-of-yo-1740302661 | |
.HeartAnimationContainer, .HeartAnimation { | |
visibility: hidden; | |
} | |
.HeartAnimationContainer:after, .Icon--heart:before { | |
content: '☆' !important; | |
visibility: visible; | |
display: inline-block; | |
position: relative; |
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
alias google-chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome'; | |
while read line; | |
do google-chrome "$line"; | |
done < textfile.txt |
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
// ==UserScript== | |
// @name Belong Tweets | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description add embedded via tweets | |
// @author @pbausch | |
// @match http://belong.io/ | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name New Userscript | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description embed tweets on Pinboard Popular page | |
// @author You | |
// @match https://pinboard.in/popular/ | |
// @grant none | |
// ==/UserScript== |
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
# thanks, https://eagereyes.org/data/scrape-tables-using-google-docs | |
=ImportHtml(URL, "table", num) |
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
#!/bin/bash | |
# Not sure where I found this one, but thanks! | |
URL=$(curl -s -A "iTunes/9.1.1" --compressed $1 | | |
grep -o 'https[^<]*' | | |
perl -n -mHTML::Entities -e ' ; print HTML::Entities::decode_entities($_) ;') | |
curl -s -A "iTunes/9.1.1" --compressed $URL | | |
grep -o 'feed-url="[^"]*' | | |
sed -e 's/feed-url="//' |
NewerOlder