Advanced fulltext search including deleted posts: https://search.pullpush.io New Unddit/Reveddit: https://undelete.pullpush.io Bookmarklet: javascript:window.open(location.href.replace(/:\/\/([\w-]+.)?(reddit\.com\/r|reveddit\.com\/v)\//i, "://undelete.pullpush.io/r/"), "_blank") Other reddit archive utilities: https://forum.pullpush.io/d/5-3rd-party-services-list-that-are-using-pullpush-api Search syntax for search.pullpush.io: https://adamj.eu/tech/2024/01/03/postgresql-full-text-search-websearch/ (table reproduced below) +------------------------------------------------------------------------+ | Query | Notes | |-----------------------------+------------------------------------------| | the donkey | Stop word "the" removed | |-----------------------------+------------------------------------------| | the blue donkey | The two words can appear in any order, | | | with any number of words between | |-----------------------------+------------------------------------------| | "blue donkey" | The words must appear together in the | | | given order | |-----------------------------+------------------------------------------| | "the donkey" | Stop words are removed within quotes | |-----------------------------+------------------------------------------| | donkey or mule | Either word will match | |-----------------------------+------------------------------------------| | "blue donkey" or "red mule" | One of the two phrases must match | |-----------------------------+------------------------------------------| | blue donkey or mule | Either "blue" and "donkey" match, or | | | just "mule" | |-----------------------------+------------------------------------------| | -mule | "mule" must not match | |-----------------------------+------------------------------------------| | donkey -mule | "donkey" matches and "mule" does not | |-----------------------------+------------------------------------------| | "blue donkey" -"red mule" | "blue donkey" matches and "red mule" | | | does not | +------------------------------------------------------------------------+