Feedstack is a progammable social network.
We give developers the tools to make and share their own feeds.
That means you can decide what posts enter the feed. And the order in which they appear.
You can install Feedstack on IOS and on Android.
Each post has a ranking number.
A post with a higher ranking will show up in the feed before a post with a lower ranking.
The ranking is calculated by computeRanking.
The computeRanking function takes in 3 classes as input.
And then spits back a number as output, which becomes the new ranking.
Upload your implementation of computeRanking to Feedstack.
Feedstack will then generate a new feed based on the new implementation.
If computeRanking returns a number that is less than or equal to zero, then the post will not enter the feed.
If your implementation of computeRanking does not follow the same structure as the one shown here then it will not work.