| Description: | Rather than the inconsistent sort:random that gets fully scrambled with every new seed/change, i propose a modulo operation filter. id:(integer) returns one post that matches the id, modulo:(integer) should return all posts where `id%(integer)` returns 0.
for example modulo:2 should only shows posts with even ids, modulo:100 should return all posts with id
s ending in 00, etc.
this way you can browse your favourites in a way other than picking a random page in the middle or sort:random and as far as I can tell it should be fairly easy to code
as an optional addition you could maybe add something to change the hardcoded 0 so you can also get odd posts |