Organic Post Viewer is a tool to see Steemit trending posts that did not pay to bid-bots to buy upvotes.
New Features
BEFORE : No bot addition by user, only the ones in the current array.
var bots = ["postdoctor", "moneymatchgaming", "slimwhale", "boostbot", "honestbot", "ebargains", "lost-ninja", "estream.studios", "adriatik", "redwhale", "minnowhelper", "mrswhale", "foxyd", "mitsuko", "dailyupvotes", "lovejuice", "steembloggers", "booster", "megabot", "voterunner", "authors.league", "canalcrypto", "whalebuilder", "mercurybot", "msp-bidbot", "promobot", "upmewhale", "redlambo", "lrd", "lightningbolt", "sunrawhale", "upyou", "thebot", "onlyprofitbot", "pushbot", "flymehigh", "nado.bot", "seakraken", "spydo", "childfund", "minnowvotes", "dolphinbot", "upme", "upboater", "proffit", "bluebot", "brupvoter", "oceanwhale", "jerrybanfield", "luckyvotes", "minnowfairy", "estabond", "bodzila", "peace-bot", "appreciator", "discordia", "emperorofnaps", "zapzap", "cryptoempire", "bearwards", "alphaprime", "therising", "buildawhale", "aksdwi", "sleeplesswhale", "isotonic", "noicebot", "upgoater", "dlivepromoter", "upmyvote", "youtake", "smartsteem", "fishbaitbot", "rocky1", "shares", "boomerang", "brandonfrye", "postpromoter", "pushup", "singing.beauty", "edensgarden", "pwrup", "inciter", "chronocrypto", "allaz", "sneaky-ninja"];
AFTER :
A bot addition button added to project.
When pressed, the current list of the bots is shown and there is an input box where the user can enter the name of the new bot.
Entering the new bot ( or circle voters ) name, it is added to the bot array.
As the close button is pressed, the list will be shown eliminating the posts that are upvoted by the new chosen bot or user.
The Scripts
Open a new div for bot addition screen
The function for making main screen invisible and bot addition div visible.
function add_bot() {
document.getElementById("bots_div").style.display = 'block';
document.getElementById("main_container").style.display = 'none';
document.getElementById("rank_tag").style.display = 'none';
document.getElementById("author_tag").style.display = 'none';
document.getElementById("tags_div").style.display = 'none';
document.getElementById("link_tag").style.display = 'none';
document.getElementById("votes_tag").style.display = 'none';
document.getElementById("value_tag").style.display = 'none';
document.getElementById("info_tag").style.display = 'none';
document.getElementById("button_div").style.display = 'none';
document.getElementById("name_the_bots").innerHTML="";
for (let i = 0; i < bots.length; i++) {
document.getElementById("name_the_bots").innerHTML=document.getElementById("name_the_bots").innerHTML+bots[i]+"<br />";
}
}
Add new bot to array
The function to add new bot to array and write it to the bot list DIV.
function add_new_bot() {
var new_bot = document.getElementById("username").value;
if ((new_bot=="")||(new_bot=="botname")){
window.alert("Please enter a valid bot name");
}
if ((new_bot!="")&&(new_bot!="botname")){
bots.push(new_bot);
var div_in=document.getElementById("name_the_bots").innerHTML
document.getElementById("name_the_bots").innerHTML=new_bot+"<br />"+div_in;
}
}
Close and Return to Search
The function connected to close button. It closes the bot addition div and re-make the search with the new bots added.
function close_bot(){
document.getElementById("bots_div").style.display = 'none';
document.getElementById("main_container").style.display = 'block';
document.getElementById("rank_tag").style.display = 'block';
document.getElementById("author_tag").style.display = 'block';
document.getElementById("tags_div").style.display = 'block';
document.getElementById("link_tag").style.display = 'block';
document.getElementById("votes_tag").style.display = 'block';
document.getElementById("value_tag").style.display = 'block';
document.getElementById("info_tag").style.display = 'block';
document.getElementById("button_div").style.display = 'block';
re_start();
}
Links
- Organic Post Viewer : https://fdsteemtools.neocities.org/organic.html
- Organic Post Viewer alternative : https://steemcash.neocities.org/organic.html
- GitHub : https://github.com/firedreamgames/steemit_trending_organic
Contact
- @FireDream - Steemit
- @firedream#3528 - Discord
Proof of Work
Posted on Utopian.io - Rewarding Open Source Contributors
Organic Post Viewer is a nice idea. Unfortunately, I think it is not working. It gives us the tranding page back as it used to be before the rise of the bid bots. But the trending page never worked in the first place.haejin's posts all over the place again.
I also think that bid bots do not have to be evil, maybe we just need to find the rules which would benefit the Steem platform.
Thanks, for working hard to improve the Steem platform.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is why I put addition of bots.
If you add Haejin to the list you see the trending list without his posts.
Thanks for your comment.
FD.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Ah, now I get it.
Treating Haejin as a bot is for sure not politically correct, but it solves my problem :)
Cheers
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey @firedream I am @utopian-io. I have just upvoted you!
Achievements
Utopian Witness!
Participate on Discord. Lets GROW TOGETHER!
Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you @utopian-io
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you for your contribution.
Need help? Write a ticket on https://support.utopian.io.
Chat with us on Discord.
[utopian-moderator]
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks, @codingdefined.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
They are numerous and frightening if you ask me. I will look into it for more understanding. Thanks for bringing this.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit