Thank you for your contribution.
- magic numbers such as
if (nextPosts.length === 100) { startPermlink = nextPosts[99].permlink; startAuthor = nextPosts[99].author }
- why not
index = (index + 1) % maxIndex
instead ofif (index < maxIndex) index += 1 ; else index = 0
- why not use something like mongodb for better scaleablity. I am sure the table will become very huge and there will be performance issues later.
- What is the innovation for this project? I have seen similar projects.
Your contribution has been evaluated according to Utopian policies and guidelines, as well as a predefined set of questions pertaining to the category.
To view those questions and the relevant answers related to your post, click here.
Need help? Write a ticket on https://support.utopian.io/.
Chat with us on Discord.
[utopian-moderator]