create account

Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised) by klye

View this thread on: hive.blogpeakd.comecency.com
· @klye · (edited)
$67.16
Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)
<center>![](https://steemitimages.com/DQmZ7SPhXfSQoojuZvCJU9X95rLU9LJJm5e86RbuwkZ6ve8/image.png)</center>

<center><b>Ever wanted to upvote every new post in a certain tag?</b></center>

<center><h1>Vooby</h1></center>

Vooby stands for "Voting Noobies" and is a stand alone NodeJS script which allows anyone to automate upvoting all post in the  "#introduceyourself" (or any other) tag. I created it over the past few hours after deciding it would be neat to experiment with upvoting new users to see if it increases user retention.. and also to reward new comers to our network with their first little bit of post payout!

<center><h1>Installation & Bot Usage</h1></center>

First off this is a NodeJS script so you'll have to head on over to their website at [NodeJS.org](https://nodejs.org/) and install whatever offering they have for your operating system

<center>![](https://steemitimages.com/DQmb3k1fEigqSUpUbWke761zfdYzeF8RjiDLaHvr65omJiM/image.png)</center>

Once you've got nodeJS installed the next step is to copy the script below into a new file on your computer.. Preferably named "voobyv002.js" or something similar!

```
//--------------------------------------------------------------------------
//----- Vooby STEEM Bot  v0.0.2
//----- Developed by @KLYE || Free to Use for All! || Free to Modify -------
//----- Rekuirements to run: Node.js + steem.js
//----- npm install steem --save
//--------------------------------------------------------------------------
//----- PLEASE DO NOT USE THIS CODE BELOW MALICIOUSLY / FOR EVIL DEEDS -----
//--------------------------------------------------------------------------
//----- CONFIG + Get Rekuirements
// ***IMPORTANT*** Your Posting Private Key Below
var wifkey = ' ';

// ***IMPORTANT*** Enter Voting account below (no @)
var votey = "klye";

// ***IMPORTANT*** Enter the Tag you want to upvote new posts in
var targettag = "art";

// ***IMPORTANT*** May want to modify this (10000 = 100% vote)
var weight = 2;

// No need to modify these variables
var steem = require('steem');
var totalvote = 0;
var metadatascan;
var json_metadata;
var op;

//----- Script Started + Show Time
console.log("===================================================================");
console.log("-------------------------------------------------------------------");
console.log("- Vooby Bot v0.0.2 ONLINE - By @KLYE - Listening to STEEM Network -");
console.log("-------------------------------------------------------------------");
console.log("===================================================================");

//----- Grab Current STEEM Block
steem.api.streamBlockNumber(function (err1, newestblock) {
	console.log("Scanning Block #" + newestblock + " For New #" + targettag + " Posts - Posts Voted: " + totalvote);
});

//NOTE: Sometimes the Script Fails to Hook Into STEEM. Try Running Script Again if it Fails!

//----- See if Post is our Target Asshat ----
var process_post = function (op) {
	if (op["author"] != "") {
		console.log(targettag + " Post Has Been Detected! Upvoting!");
		steem.broadcast.vote(
			wifkey,
			votey,
			op["author"],
			op["permlink"],
			weight,
			function (downerr, result) {
				if (downerr) {
					var error = JSON.stringify(downerr);
					if (error.toLowerCase().indexOf("You have already voted in a similar way.\n") >= 0) {
						console.log("Oops! Vooby tried to vote for a post it already voted on!");
					}
				}
				if (result) {
					totalvote++;
					console.log("Successfully voted #" + targettag + " post!");
				}
			}
		);
	}
};
//----- Streeming Latest Block Operations
steem.api.streamOperations(function (err2, blockops) {
	// get 1st item in blockops an apply to operationType variable to check type later
	var opType = blockops[0];
	// get 2nd item in blockops and store it later to be parsed if it's our specified type of operation
	var op = blockops[1];
	if (op["json_metadata"] != undefined) {

		metadatascan = op["json_metadata"];
		if (metadatascan != '') {
			var tags = JSON.parse(metadatascan);
			var actualtags = tags["tags"];
			if (actualtags != undefined) {
				var tagtag = String(actualtags);

				if (op["parent_author"] === '') {
					if (tagtag.toLowerCase().indexOf(targettag) >= 0) {
						process_post(op);
					}
				}
			}

		}
	}
});

```


When you have the file saved to your computer open up command prompt (or equivalent) and navigate to the file. While you are doing this make sure to fill in the account you want to vote from and fill in your private posting key in whatever text editor of your choice.

<center>![](https://steemitimages.com/DQmYGCXPtVvJt9AfcE9CsASnyMfoH2cj5vZERtTKYzNRcdY/image.png)</center>

Make sure to install Steem.js using <code>npm install steem --save </code> - After that run it with the command <code>node voobyv001.js</code> and if it's been configured correctly it should run as pictured above. Super easy to run. Shouldn't be too much of a hassle. Enjoy voting the noobs!

<hr>

| https://steemitimages.com/200x200/http://puu.sh/rRLx4/cb96668c43.png | <center> <h4>VOTE @KLYE FOR WITNESS </h4><b><a href="https://steemit.com/~witnesses">steemit.com/~witnesses</a></b> </center> | https://steemitimages.com/200x200/http://puu.sh/rRLx4/cb96668c43.png |
|------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------|
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 57 others
properties (23)
authorklye
permlinkvooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script
categorysteemdev
json_metadata{"tags":["steemdev","news","vooby","nodejs","bot"],"users":["klye"],"image":["https://steemitimages.com/DQmZ7SPhXfSQoojuZvCJU9X95rLU9LJJm5e86RbuwkZ6ve8/image.png","https://steemitimages.com/DQmb3k1fEigqSUpUbWke761zfdYzeF8RjiDLaHvr65omJiM/image.png","https://steemitimages.com/DQmYGCXPtVvJt9AfcE9CsASnyMfoH2cj5vZERtTKYzNRcdY/image.png","https://steemitimages.com/200x200/http://puu.sh/rRLx4/cb96668c43.png"],"links":["https://nodejs.org/","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"}
created2017-07-01 07:08:09
last_update2017-07-01 11:18:09
depth0
children36
last_payout2017-07-08 07:08:09
cashout_time1969-12-31 23:59:59
total_payout_value56.073 HBD
curator_payout_value11.085 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,495
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,858,922
net_rshares7,941,968,505,616
author_curate_reward""
vote details (121)
@brianphobos ·
Vooby baby!
properties (22)
authorbrianphobos
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t074017502z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:40:18
last_update2017-07-01 07:40:18
depth1
children0
last_payout2017-07-08 07:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation171,082,199,137,461
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,861,102
net_rshares0
@eroche · (edited)
Can't wait to give this a try, this script can have so many good uses @klye. I was looking for something just like this. Do you know if it would run on a raspberry pi?
properties (22)
authoreroche
permlinkre-klye-201771t9301292z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1","format":"markdown+html","community":"esteem","users":["klye"]}
created2017-07-01 08:30:00
last_update2017-07-01 10:03:48
depth1
children2
last_payout2017-07-08 08:30:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation70,759,290,299,941
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,864,555
net_rshares0
@klye ·
No idea if nodeJS will run on a pi.. maybe?

Yep: http://thisdavej.com/beginners-guide-to-installing-node-js-on-a-raspberry-pi/
properties (22)
authorklye
permlinkre-eroche-re-klye-201771t9301292z-20170701t111942871z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["http://thisdavej.com/beginners-guide-to-installing-node-js-on-a-raspberry-pi/"],"app":"steemit/0.1"}
created2017-07-01 11:19:42
last_update2017-07-01 11:19:42
depth2
children1
last_payout2017-07-08 11:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,878,310
net_rshares0
@eroche ·
Cool, Ill give it a try and let you know how I get on.
properties (22)
authoreroche
permlinkre-klye-re-eroche-re-klye-201771t9301292z-20170701t112109720z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 11:20:57
last_update2017-07-01 11:20:57
depth3
children0
last_payout2017-07-08 11:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation70,759,290,299,941
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,878,430
net_rshares0
@fairbee ·
a real helpful Bot.. thanks for your efforts.
properties (22)
authorfairbee
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t072415319z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:24:24
last_update2017-07-01 07:24:24
depth1
children0
last_payout2017-07-08 07:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation142,126,803,055
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,976
net_rshares0
@felixxx ·
$9.69
Please don't make this a thing.

There is a bunch of accounts posting nothing but #introduceyourselve with stolen pictures from Korean ladies. And these accounts make a good income.

I invite you to follow @goodbot's quest or simply update your script to not vote for intros, which @goodbot has commented on.
👍  , , , , , , , , , , ,
properties (23)
authorfelixxx
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t072802975z
categorysteemdev
json_metadata{"tags":["introduceyourselve","steemdev"],"users":["goodbot"],"app":"steemit/0.1"}
created2017-07-01 07:28:00
last_update2017-07-01 07:28:00
depth1
children6
last_payout2017-07-08 07:28:00
cashout_time1969-12-31 23:59:59
total_payout_value7.414 HBD
curator_payout_value2.272 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation215,992,120,379,355
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,242
net_rshares1,145,013,568,308
author_curate_reward""
vote details (12)
@klye ·
$0.13
Hmmm. Perhaps I'll stop mine I guess.. Didn't realize we were having a scammer issue..
👍  
properties (23)
authorklye
permlinkre-felixxx-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t090340165z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 09:03:39
last_update2017-07-01 09:03:39
depth2
children0
last_payout2017-07-08 09:03:39
cashout_time1969-12-31 23:59:59
total_payout_value0.128 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,866,984
net_rshares15,249,758,944
author_curate_reward""
vote details (1)
@moderninvestor ·
After a few introductyourself posts you get flagged by the network and the bots, i clicked on a "new" post the other day , and someone had used it 150 times and bots were telling them they couldnt do this
properties (22)
authormoderninvestor
permlinkre-felixxx-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t073309657z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:33:09
last_update2017-07-01 07:33:09
depth2
children4
last_payout2017-07-08 07:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation863,642,104,819
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,592
net_rshares0
@felixxx ·
Yeah that's my bot, but it isn't flagging and it wouldn't have enough sp.
properties (22)
authorfelixxx
permlinkre-moderninvestor-re-felixxx-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t073516156z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:35:12
last_update2017-07-01 07:35:12
depth3
children3
last_payout2017-07-08 07:35:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation215,992,120,379,355
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,742
net_rshares0
@fem-of-war ·
Lol, nifty idea
properties (22)
authorfem-of-war
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t071035276z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:10:36
last_update2017-07-01 07:10:36
depth1
children0
last_payout2017-07-08 07:10:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation16,981,308,422,124
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,105
net_rshares0
@flemingfarm · (edited)
Stupid handy script!!!  I would like to add that it is good to install [Forever](https://github.com/foreverjs/forever) as I keep getting an error after a while from line 71:26, (var opType = blockops[0];) which drops the script requiring a manual restart.

I got around the manual restart with:

>npm install forever -g

Then run:
>forever start -e err.log vooby001.js

This will put the script into auto-restart and log any errors. I also made a little batch file to auto-start the script in case of computer restart and dropped that in my startup folder.
properties (22)
authorflemingfarm
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20180722t151548820z
categorysteemdev
json_metadata{"tags":["steemdev"],"links":["https://github.com/foreverjs/forever"],"app":"steemit/0.1"}
created2018-07-22 15:15:48
last_update2018-07-26 23:09:39
depth1
children0
last_payout2018-07-29 15:15:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length556
author_reputation1,372,467,955,607,216
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,593,497
net_rshares0
@heelzkinu ·
Can we download it in iOS ! iPhone @klye
properties (22)
authorheelzkinu
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t071035236z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["klye"],"app":"steemit/0.1"}
created2017-07-01 07:10:39
last_update2017-07-01 07:10:39
depth1
children0
last_payout2017-07-08 07:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation4,497,935,121,409
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,113
net_rshares0
@jakir ·
Love post,,, nex
properties (22)
authorjakir
permlinkre-klye-201771t141133360z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-01 07:11:39
last_update2017-07-01 07:11:39
depth1
children0
last_payout2017-07-08 07:11:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation266,474,198,727
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,186
net_rshares0
@jakir ·
Nex voting
properties (22)
authorjakir
permlinkre-klye-201771t143322545z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-01 07:33:27
last_update2017-07-01 07:33:27
depth1
children0
last_payout2017-07-08 07:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation266,474,198,727
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,609
net_rshares0
@jonny12 ·
I saved the file as a text file. I cannot open it, is it because its a text file?
properties (22)
authorjonny12
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t090911922z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 09:09:24
last_update2017-07-01 09:09:24
depth1
children1
last_payout2017-07-08 09:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation20,609,899,525
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,867,508
net_rshares0
@klye ·
save it with extension .js
properties (22)
authorklye
permlinkre-jonny12-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t091005459z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 09:10:06
last_update2017-07-01 09:10:06
depth2
children0
last_payout2017-07-08 09:10:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,867,563
net_rshares0
@maxdevalue ·
Nice one again from you @klye.  Turning geek!
properties (22)
authormaxdevalue
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t071655610z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["klye"],"app":"steemit/0.1"}
created2017-07-01 07:16:54
last_update2017-07-01 07:16:54
depth1
children0
last_payout2017-07-08 07:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation82,688,667,156,496
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,520
net_rshares0
@moorkedi · (edited)
thanks @kyle i just setup still works :D vooby versions  but need to upgrade about what about time section and want to listen not newblocks want to hot or trending one's any user guide for js api steem codes :D thanks for feedback for now
properties (22)
authormoorkedi
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20171120t002029472z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["kyle"],"app":"steemit/0.1"}
created2017-11-20 00:20:30
last_update2017-11-20 00:22:09
depth1
children0
last_payout2017-11-27 00:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length238
author_reputation4,354,280,945,178
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,927,315
net_rshares0
@neobarrack · (edited)
Will the robot be my cartoon?
Heheh :)
nice VOOOBY
properties (22)
authorneobarrack
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t072843088z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:28:45
last_update2017-07-01 07:29:06
depth1
children0
last_payout2017-07-08 07:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation585,650,009,147
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,300
net_rshares0
@practicaleric ·
What a brilliant idea. That bot will save time for people who want to upvote newbies.  So good
properties (22)
authorpracticaleric
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t081135575z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 08:11:39
last_update2017-07-01 08:11:39
depth1
children0
last_payout2017-07-08 08:11:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation201,589,792,288,900
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,863,292
net_rshares0
@rumania ·
wow lovely code, i got this :)
properties (22)
authorrumania
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20180408t111908650z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2018-04-08 11:19:12
last_update2018-04-08 11:19:12
depth1
children0
last_payout2018-04-15 11:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation-120,130,288
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id48,955,676
net_rshares0
@sanks7 ·
Great information keep it up 
upvote and resteem....
properties (22)
authorsanks7
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t070853310z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:10:00
last_update2017-07-01 07:10:00
depth1
children0
last_payout2017-07-08 07:10:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation2,803,413,975,094
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,058
net_rshares0
@steemitqa ·
VOOBY!!!!!!!!!!!!
properties (22)
authorsteemitqa
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t071027922z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:09:51
last_update2017-07-01 07:09:51
depth1
children0
last_payout2017-07-08 07:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation22,135,803,163,402
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,051
net_rshares0
@steemtable7 ·
Nice thank you for the voody bot
properties (22)
authorsteemtable7
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20171010t111808655z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-10-10 11:18:09
last_update2017-10-10 11:18:09
depth1
children0
last_payout2017-10-17 11:18:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation550,293,146,990
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,287,320
net_rshares0
@tinashe ·
you are a genius ,thank you
👍  
properties (23)
authortinashe
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t072647714z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:26:57
last_update2017-07-01 07:26:57
depth1
children1
last_payout2017-07-08 07:26:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation5,493,082,869,809
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,171
net_rshares1,334,814,504
author_curate_reward""
vote details (1)
@klye ·
No problem
properties (22)
authorklye
permlinkre-tinashe-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t090450547z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 09:04:51
last_update2017-07-01 09:04:51
depth2
children0
last_payout2017-07-08 09:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,867,087
net_rshares0
@tj4real ·
This is an introduction to programming.@Klye, you never cease to amaze me. I was recently thinking of how to enter into programming again. I have actually learnt some c++ and this just gives me some hint and motivation to learn more programming now. Thanks for sharing
properties (22)
authortj4real
permlinkre-klye-201771t73125849z
categorysteemdev
json_metadata{"tags":"steemdev","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-01 07:32:06
last_update2017-07-01 07:32:06
depth1
children0
last_payout2017-07-08 07:32:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation71,339,870,296,873
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,860,519
net_rshares0
@uruiamme ·
Can it be changed to upvote posts in the #bigfoot and #botlivesmatter categories?
properties (22)
authoruruiamme
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t110654336z
categorysteemdev
json_metadata{"tags":["bigfoot","botlivesmatter","steemdev"],"app":"steemit/0.1"}
created2017-07-01 11:06:48
last_update2017-07-01 11:06:48
depth1
children2
last_payout2017-07-08 11:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation1,096,312,041,437
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,877,202
net_rshares0
@klye ·
yep!

One sec I'll whip up an easier to edit version..!
properties (22)
authorklye
permlinkre-uruiamme-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t110729031z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 11:07:30
last_update2017-07-01 11:07:30
depth2
children0
last_payout2017-07-08 11:07:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,877,267
net_rshares0
@klye ·
Done. Check out the new version and edit to your liking.
properties (22)
authorklye
permlinkre-uruiamme-re-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t111856757z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 11:18:57
last_update2017-07-01 11:18:57
depth2
children0
last_payout2017-07-08 11:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation412,341,527,771,769
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,878,246
net_rshares0
@uruiamme ·
And seriously, could the particular tag be a variable, so our chosen tag can be typed just once?

Furthermore, how about an exclusion option in case one of the tags is (for example) #kr or nsfw, and we don't want to upvote those even if the user is tagging in the category we normally like?
properties (22)
authoruruiamme
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t111029487z
categorysteemdev
json_metadata{"tags":["kr","steemdev"],"app":"steemit/0.1"}
created2017-07-01 11:10:24
last_update2017-07-01 11:10:24
depth1
children0
last_payout2017-07-08 11:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation1,096,312,041,437
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,877,544
net_rshares0
@uruiamme ·
Hey @kyle, I have a beef with the Steemit faucet on the appearance of links. I wonder if you could produce a tweak like this in javascript, and then maybe make a "pull request" I think it's called to have it implemented in the main Steemit.com system.

The old school link always changed colors if you visited it. About 10 years ago, especially with links changing from the [traditional blue](https://steemd.com/@uruiamme) to the **dark black** (some with and some without an underline), web designers started to make links always appear as if they were unvisited.

I find this distressing and a poor user interface design element.

Can you:

1. Enforce the color change to `purple` for followed links using nodejs
2. Try to get this change into the Steemit.com site so that it's the default.

It's super important with the way I edit a post and create a comment. I want to make sure I copy-paste the URL correctly. If I enter it wrong, it should appear blue (never been there). If I enter it right, the link would be purple.

I'd almost even like to see different colors for @uruiamme style links... especially to let me know if I am a follower or they are a follower of me... but that's entirely different.

Thanks for your work!
properties (22)
authoruruiamme
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170702t191524296z
categorysteemdev
json_metadata{"tags":["steemdev"],"users":["kyle","uruiamme"],"links":["https://steemd.com/@uruiamme"],"app":"steemit/0.1"}
created2017-07-02 19:15:18
last_update2017-07-02 19:15:18
depth1
children0
last_payout2017-07-09 19:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,231
author_reputation1,096,312,041,437
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,052,400
net_rshares0
@vikbuddy ·
Hello Vooby , this is very cool and promising. I am into it. See you Soon. Good Luck . :)
properties (22)
authorvikbuddy
permlinkre-klye-vooby-steem-bot-v0-0-1-open-source-nodejs-introduceyourself-upvoting-script-20170701t071054340z
categorysteemdev
json_metadata{"tags":["steemdev"],"app":"steemit/0.1"}
created2017-07-01 07:11:24
last_update2017-07-01 07:11:24
depth1
children0
last_payout2017-07-08 07:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation117,258,029,544,007
root_title"Vooby STEEM Bot v0.0.2 - Open Source NodeJS New Post in Tag Vote Script (Revised)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,859,172
net_rshares0