Skip to content

Instantly share code, notes, and snippets.

@imathis
Created June 27, 2012 19:45
Show Gist options
  • Star 41 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save imathis/3006330 to your computer and use it in GitHub Desktop.
Save imathis/3006330 to your computer and use it in GitHub Desktop.
Tweetbot can use regular expressions to mute tweets in your timeline and mentions.

Hashtag abuse

Three or more hashtags.

#[^#]+#[^#]+#

Long hashtags (15+ characters): #hashtagpunchline

#[^ ]{15}

CamelCase hashtags (3+ Words): #NotSelfAware

#[^a-z ]+[^A-Z ]+[^a-z ]+[^A-Z ]+[^a-z ]+[^ ]*

Painful to read

Unforgivable word shortening: I'm near ur place r u busy?

\sur\s
\sr\s
\su\s

Mass conversations (4+ Mentions): @guy @dude @otherguy @man totally.

@[^@]+@[^@]+@[^@]+@

Retweet chains (2+ RTs): OMG RT @teengirlsquad RT @beebz I'm thinking of you.

RT[^RT]+RT

Mentions with only a URL (spam): @imathis tinyurl.com/spam

^@imathis *https?://[^ ]+$
@azizZaben
Copy link

I'm trying to mute ask.fm and sayat.me do you have any clue?

@imathis
Copy link
Author

imathis commented Jul 1, 2012

@azizZaben unfortunately Twitter replaces urls with their t.co shortened versions. Apps replace them inline with the full urls from the API provided metadata but the regex only matches on the original tweet text. Perhaps you could ask TapBots support to run mute filters after text replacement. I'll ask them too.

@kameit00
Copy link

With Tweetbot you can mute Clients. So it should be possible to mute ask.fm. For example: foursquare tweets have something like "foursquare" as the application used for writing the tweet. Does that make sense?

@kr
Copy link

kr commented Jan 9, 2013

Hello, I forked this gist and made the regexps easier to read. Some of my changes cause slightly different behavior, though, although some still match the exact same set of tweets.

@soundsgoodtome
Copy link

Thanks for these. However, there's still a format I can't find anywhere:

Say I follow @Superman, and he constantly talks about kryptonite. I don't want to mute all mentions of the word "kryptonite," just his mentions of it.

Would I simply mute:

@Superman+kryptonite

(?) Or is the syntax different? Thanks in advance.

@willeccles
Copy link

For the 3 hashtags one, I would have said (#[^# ]+[ ]*.*){3} 😄
Yours will not catch the 3rd hashtag completely, in a tweet such as "#magic is #cool and I also like the # sign." The third # is not a hashtag, but it still is counted as one.

@realrolfje
Copy link

realrolfje commented Nov 12, 2017

In recent developments, I would add:

Mute tweets longer than 140 characters: [^]{140}

See https://twitter.com/rolfje/status/929643146002255872

Apparently that does not work correctly, and .{140} means I loose all 140 char tweets with expanded links in them. I think this requires more work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment