Title: comment filters Author: rylai Pastebin link: http://pastebin.com/3tyL9bWV First Edit: Tuesday 19th of March 2013 05:55:12 PM CDT Last Edit: Tuesday 19th of March 2013 05:55:12 PM CDT ################################################# #                                               # #                  READ ME FIRST                # #                                               # ################################################# ## ------------------------------------------- ## # Any line that starts with a pound symbol (#)  # # will be ignored by the filter. Very useful for# # the set labelled "temporary use only!", as you# # can just enable them by removing the # in     # # front of the regular expression whenever you  # # need to enable them, and putting a # back in  # # front of them when you want to disable it     # # again.                                        # ## ------------------------------------------- ##   #!---------------------------------------------------------------!#   ## Default 4chan X, useful for reference ## # Filter Stallman copypasta on /g/: #/what you're refer+ing to as linux/i;boards:g ## End default 4chan X ##   #!---------------------------------------------------------------!# ##------------------- Temporary use only! -----------------------## #!---------------------------------------------------------------!#   # Block all posts with only a link to another post in the comment field with support for 8-digit post IDs because /mlp/ is at over 9,000,000 already. # /^>>\d{7,8}$/   # Block all posts with nothing in the comment field, contributed by roninDreamer # /^$/   # Block everything. Because fuck everything. # /.*/   #: Experimental/temp :#   # Any post over 100 words # /\W*(\w+(\W+|$)){100,}/   # Any post with more than 10 linebreaks # /(.*[$\n]){10,}/   #: End experimental/temp :#   #!---------------------------------------------------------------!# ##-------------------End temporary use only----------------------## #!---------------------------------------------------------------!#   ## Random shitposting   # blocks dubs/trips/quads/quints /(^|\s)(dubs|trips|quads|quints)($|\s)/i   # blocks those stupid lulz.net links /lulz\.net\/furi\/res\/\d+/i   ## End random shitposting   #!---------------------------------------------------------------!#