Project Github
Github: https://github.com/DoctorLai/SteemRebloggerService/
Introduction
@ilovecoding is a steem account that only reblogs programming-related articles
Changes and New Features
Commit here: Refactoring to reduce the CPU overload and make code better.
Commit here: Adding blacklist tags so that it does not reblog test posts under tag test.
Commit here: Automatic voting on programming posts as a support. The voting percentage is set in config.json
:
// voting
const voting_post = (account, permlink, weight) => {
/* @params username, password, author, permlink, weight */
if (weight <= 0) return;
steem.broadcast.vote(config.posting_key, config.account, account, permlink, weight, function(err, result) {
if (result && !err) {
log("voted on " + account + "/" + permlink);
} else {
log(err);
log(result);
}
});
}
I hope this encourages steemians write more programming-related posts on steemit! If you want to help this little project or like this initiatives, you can delegate to @ilovecoding - any amount of delegation is appreciated!
To delegate to @ilovecoding, you can use this simple SP delegation tool
Support me and my work as a witness - witness thread by
- voting me here, or
- voting me as a witness proxy - let @justyy represent you.
Thank you! Some of My Contributions: SteemIt Tutorials, Robots, Tools and APIs