create account

drdoogie.rb - Vote Trail Script by inertia

View this thread on: hive.blogpeakd.comecency.com
· @inertia ·
$150.15
drdoogie.rb - Vote Trail Script
#### Features

* YAML config.
  * `scale_votes` - scale votes in %
  * `max_age` - only vote if the post is under this number in minutes
  * `allow_upvote` - trail upvotes
  * `allow_downvote` - trail downvotes
  * `enable_comments` - vote for comments
  * `skip_tags` - do not vote if the post contains any of these tags
  * `only_tags` - only vote if the post includes at least one of these tags

#### Overview

Dr. Doogie (`drdoogie.rb`) is a voting bot that will trail the votes of other accounts in order to then mirror their voting pattern.

---

#### Install

To use this [Radiator](https://steemit.com/steem/@inertia/radiator-steem-ruby-api-client) script:

##### Linux

```bash
$ sudo apt-get install ruby-full git openssl libssl1.0.0 libssl-dev
$ gem install bundler
```

##### macOS

```bash
$ gem install bundler
```

I've tested it on various versions of ruby.  The oldest one I got it to work was:

`ruby 2.0.0p645 (2015-04-13 revision 50299) [x86_64-darwin14.4.0]`

First, clone this gist and install the dependencies:

```bash
$ git clone https://gist.github.com/d57c9bc744f05ada01d173521c01df8a.git drdoogie
$ cd drdoogie
$ bundle install
```

Then run it:

```bash
$ ruby drdoogie.rb
```

Check here to see an updated version of this script:

https://gist.github.com/inertia186/d57c9bc744f05ada01d173521c01df8a

---

#### Upgrade

Typically, you can upgrade to the latest version by this command, from the original directory you cloned into:

```bash
$ git pull
```

Usually, this works fine as long as you haven't modified anything.  If you get an error, try this:

```
$ git stash --all
$ git pull --rebase
$ git stash pop
```

If you're still having problems, I suggest starting a new clone.

---

#### Troubleshooting

##### Problem: What does this error mean?

```
drdoogie.yml:1: syntax error, unexpected ':', expecting end-of-input
```

##### Solution: You ran `ruby drdoogie.yml` but you should run `ruby drdoogie.rb`.

---

##### Problem: Everything looks ok, but every time drdoogie tries to post, I get this error:

```
`from_base58': Invalid version (RuntimeError)
```

##### Solution: You're trying to vote with an invalid key.

Make sure the `.yml` file `voters` item have the correct account name and WIF posting key.

##### Problem: The node I'm using is down.

Is there a list of nodes?

##### Solution: Yes, special thanks to @ripplerm.

https://ripplerm.github.io/steem-servers/

---

<center>
  <img src="http://i.imgur.com/NPRdGlr.jpg" />
</center>

See my previous Ruby How To posts in: [#radiator](https://steemit.com/created/radiator) [#ruby](https://steemit.com/created/ruby)

## Get in touch!

If you're using drdoogie, I'd love to hear from you.  Drop me a line and tell me what you think!  I'm @inertia on STEEM and [SteemSpeak](http://discord.steemspeak.com).
  
## License

I don't believe in intellectual "property".  If you do, consider drdoogie as licensed under a Creative Commons [![CC0](http://i.creativecommons.org/p/zero/1.0/80x15.png)](http://creativecommons.org/publicdomain/zero/1.0/) License.
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 100 others
properties (23)
authorinertia
permlinkdrdoogie-rb-vote-trail-script
categoryradiator
json_metadata{"tags":["radiator","ruby","steem","steemdev","curation"],"users":["ripplerm","inertia"],"image":["http://i.imgur.com/NPRdGlr.jpg","http://i.creativecommons.org/p/zero/1.0/80x15.png"],"links":["https://steemit.com/steem/@inertia/radiator-steem-ruby-api-client","https://gist.github.com/inertia186/d57c9bc744f05ada01d173521c01df8a","https://ripplerm.github.io/steem-servers/","https://steemit.com/created/radiator","https://steemit.com/created/ruby","http://discord.steemspeak.com","http://creativecommons.org/publicdomain/zero/1.0/"],"app":"steemit/0.1","format":"markdown"}
created2017-05-19 23:01:03
last_update2017-05-19 23:01:03
depth0
children50
last_payout2017-05-26 23:01:03
cashout_time1969-12-31 23:59:59
total_payout_value127.410 HBD
curator_payout_value22.743 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,052
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,579,719
net_rshares17,073,709,585,143
author_curate_reward""
vote details (164)
@bacchist ·
$0.91
Awesome. You rock!
๐Ÿ‘  , ,
properties (23)
authorbacchist
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170519t232312589z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-19 23:23:12
last_update2017-05-19 23:23:12
depth1
children5
last_payout2017-05-26 23:23:12
cashout_time1969-12-31 23:59:59
total_payout_value0.824 HBD
curator_payout_value0.089 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation85,392,357,715,964
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,580,212
net_rshares488,581,644,102
author_curate_reward""
vote details (3)
@inertia ·
$7.07
By the way, I added the ability to select between `irreversible` and `head` block modes.  I think I'll keep the default `irreversible` because it tends to be more reliable.  But `head` has its own delay of 6 seconds, which should be long enough to avoid a race condition.

To try out this change, you'll need to clone from the `develop` branch:

```bash
$ git clone https://gist.github.com/d57c9bc744f05ada01d173521c01df8a.git drdoogie
$ cd drdoogie
$ git checkout develop
$ bundle install
```
๐Ÿ‘  , , , ,
properties (23)
authorinertia
permlinkre-bacchist-re-inertia-drdoogie-rb-vote-trail-script-20170520t152941961z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 15:29:39
last_update2017-05-20 15:29:39
depth2
children4
last_payout2017-05-27 15:29:39
cashout_time1969-12-31 23:59:59
total_payout_value5.616 HBD
curator_payout_value1.459 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length493
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,600,825
net_rshares2,581,931,558,169
author_curate_reward""
vote details (5)
@battleaxe ·
$9.56
smarty pants, well done sir :)
๐Ÿ‘  ,
properties (23)
authorbattleaxe
permlinkre-inertia-re-bacchist-re-inertia-drdoogie-rb-vote-trail-script-20170520t162019245z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 16:20:21
last_update2017-05-20 16:20:21
depth3
children0
last_payout2017-05-27 16:20:21
cashout_time1969-12-31 23:59:59
total_payout_value7.170 HBD
curator_payout_value2.387 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation97,969,256,878,476
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,602,441
net_rshares3,192,697,405,307
author_curate_reward""
vote details (2)
@the50 ·
$0.47
@inertia .. is it possible to add a skiplist to doogie, so when we are trailing someone we can still avoid upvoting specific users?
๐Ÿ‘  
properties (23)
authorthe50
permlinkre-inertia-re-bacchist-re-inertia-drdoogie-rb-vote-trail-script-20170603t155221497z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-06-03 15:52:21
last_update2017-06-03 15:52:21
depth3
children2
last_payout2017-06-10 15:52:21
cashout_time1969-12-31 23:59:59
total_payout_value0.350 HBD
curator_payout_value0.116 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation1,666,282,754,225
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,115,544
net_rshares128,332,137,783
author_curate_reward""
vote details (1)
@churchboy ·
Amazing. I will have to figure out how these things work since my knowledge of all things coding is rudimentary at best.
properties (22)
authorchurchboy
permlinkre-inertia-drdoogie-rb-vote-trail-script-20171009t092438162z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-10-09 09:24:36
last_update2017-10-09 09:24:36
depth1
children0
last_payout2017-10-16 09:24: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_length120
author_reputation8,775,319,008,012
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,182,963
net_rshares0
@davidke20 ·
Hi there. Am new to Linux, so as Ruby. I have managed to get the VMBox started and loaded up. Currently I'm testing the script on STEEM chain, and also changed the nodes to STEEMS, also included the fail over in the YML. However, I'm getting some inconsistent result. Sometimes it works, some other time it doesn't. Not entirely sure what is the problem, or did I mess anything up. Ofcourse, I will continue to use this on HIVE chain soon, but for now I would like to use it on STEEM first. Appreciate if you can help me have a look if I screwed things up. LOL

`[root@localhost drdoogie]# ruby drdoogie.rb
Now trailing dailyke20 ...
/usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:839: warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open
/usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:839: warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open
/usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:839: warning: calling URI.open via Kernel#open is deprecated, call URI.open directly or use URI#open
`

This is on my screen, and even the head is upvoting, it seems doesn't pickup anything at all.

```^CTraceback (most recent call last):
        26: from drdoogie.rb:99:in `<main>'
        25: from drdoogie.rb:99:in `loop'
        24: from drdoogie.rb:106:in `block in <main>'
        23: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:143:in `operations'
        22: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:207:in `transactions'
        21: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:257:in `blocks'
        20: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:257:in `loop'
        19: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:260:in `block in blocks'
        18: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:260:in `catch'
        17: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/stream.rb:261:in `block (2 levels) in blocks'
        16: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:405:in `method_missing'
        15: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:405:in `loop'
        14: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:426:in `block in method_missing'
        13: from /usr/local/rvm/gems/ruby-2.7.0/gems/radiator-0.4.7/lib/radiator/api.rb:653:in `request'
        12: from /usr/local/rvm/gems/ruby-2.7.0/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb:958:in `request'
        11: from /usr/local/rvm/gems/ruby-2.7.0/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb:662:in `connection_for'
        10: from /usr/local/rvm/gems/ruby-2.7.0/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb:964:in `block in request'
         9: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http.rb:1492:in `request'
         8: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http.rb:1519:in `transport_request'
         7: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http.rb:1519:in `catch'
         6: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http.rb:1528:in `block in transport_request'
         5: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http/response.rb:31:in `read_new'
         4: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/http/response.rb:42:in `read_status_line'
         3: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/protocol.rb:201:in `readline'
         2: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/protocol.rb:191:in `readuntil'
         1: from /usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/protocol.rb:217:in `rbuf_fill'
/usr/local/rvm/rubies/ruby-2.7.0/lib/ruby/2.7.0/net/protocol.rb:217:in `wait_readable': Interrupt
```

And once I hit the break, this is what I got.

```
:trails:
  :dailyke20:
    :scale_votes: 100.00 %
    :max_age: 1440
    :allow_upvote: true
    :allow_downvote: false
    :enable_comments: true
    :skip_tags:
      - nsfw
      - test
    :only_tags:
      - wherein

:chain_options:
  :chain: steem
  :url: https://api.steemit.com
  :failover_urls:
          - https://api.steem.bts.tw
          - https://api.steems.top
          - https://api.steemitdev.com
          - https://api.steemjiang.com
          - https://cn.steems.top
          - https://steem.61bts.com
          - https://api.justyy.com
          - https://steemd.minnowsupportproject.org
          - https://s2.61bts.com
```

Very much appreciate if you can have a look.
properties (22)
authordavidke20
permlinkre-inertia-q9qv25
categoryradiator
json_metadata{"tags":["radiator"],"app":"peakd/2020.04.5"}
created2020-05-03 07:20:30
last_update2020-05-03 07:20:30
depth1
children4
last_payout2020-05-10 07: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_length4,805
author_reputation945,929,987,012,551
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,154,450
net_rshares0
@inertia ·
$0.10
These deprecation warnings are safe to ignore.

Looks like the stack trace is coming from `^C` to me, which is normal.

Other than that, are you saying it never votes?  How long do you let it run?
๐Ÿ‘  ,
properties (23)
authorinertia
permlinkq9rihv
categoryradiator
json_metadata{"app":"hiveblog/0.1"}
created2020-05-03 15:46:42
last_update2020-05-03 15:46:42
depth2
children3
last_payout2020-05-10 15:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,161,746
net_rshares241,258,244,698
author_curate_reward""
vote details (2)
@davidke20 ·
Thanks for fast response. Those `warning: calling URI.open via Kernel#open is deprecated, ` will appear after about 5 to 15 minutes. And after it repeated for about 5 or 6 times, then nothing will happen on the screen and it will sit still for hours until I hit the ^C and go out and check if I did anything wrong. Other than that, I'm pretty sure I'm doing all the upvotes with the head, and check back on the trails. It seems none of them are coming. I tried to remove some of the accounts and add on new ones. Sometimes after I did that, it work again. It feels like from 8am until 8pm I can't use it. I will have to keep on trying, and for some unknown reasons, evening some magic touch when I rerun ```ruby drdoogie.rb``` and suddenly everything come alive. LOL.

For your information, I duplicated a copy and run it with another profile on hive, everything works perfectly fine. No warning message at all. Super cool ๐Ÿ˜„ I really love it, except I have no HP on hive ๐Ÿ˜‚

Also, I'm reading on https://github.com/steemit/devportal-tutorials-rb/tree/master/tutorials/11_submit_comment_reply the submit comment reply, but I am hesitating to add it on the code. From what I see, if I add it to drdoogie, then all the accounts who voted will start commenting the same permlink๐Ÿคฃ Cause I'm looking for a way to leave a curation comment for the community if that being voted. Will be nice if you can give me some pointer, or I can leave a comment on the related post for this special request.
properties (22)
authordavidke20
permlinkre-inertia-q9rjdc
categoryradiator
json_metadata{"tags":["radiator"],"app":"peakd/2020.04.5"}
created2020-05-03 16:05:39
last_update2020-05-03 16:05:39
depth3
children2
last_payout2020-05-10 16:05: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_length1,486
author_reputation945,929,987,012,551
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id97,162,080
net_rshares0
@divram ·
Fantastic information
properties (22)
authordivram
permlinkre-inertia-drdoogie-rb-vote-trail-script-20180829t164615560z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2018-08-29 16:46:21
last_update2018-08-29 16:46:21
depth1
children0
last_payout2018-09-05 16:46:21
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_length21
author_reputation59,846,055,038
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,717,675
net_rshares0
@fisteganos ·
$0.50
So this can't work on a Windows machine?
๐Ÿ‘  ,
properties (23)
authorfisteganos
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t014632694z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 01:46:33
last_update2017-05-20 01:46:33
depth1
children2
last_payout2017-05-27 01:46:33
cashout_time1969-12-31 23:59:59
total_payout_value0.486 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation69,184,775,134,054
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,583,053
net_rshares282,109,058,189
author_curate_reward""
vote details (2)
@inertia ·
It is not easy to get it to work on Windows, but it is possible.  If you want to try it, the instructions for running `drphil.rb` are similar:

https://steemit.com/radiator/@inertia/drphil-rb-voting-bot-windows-installation

But I think it's probably better to use [VirtualBox](https://www.virtualbox.org/) and run Linux instead.
properties (22)
authorinertia
permlinkre-fisteganos-re-inertia-drdoogie-rb-vote-trail-script-20170520t015024556z
categoryradiator
json_metadata{"tags":["radiator"],"links":["https://steemit.com/radiator/@inertia/drphil-rb-voting-bot-windows-installation","https://www.virtualbox.org/"],"app":"steemit/0.1"}
created2017-05-20 01:50:24
last_update2017-05-20 01:50:24
depth2
children1
last_payout2017-05-27 01:50: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_length329
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,583,121
net_rshares0
@fisteganos ·
I'll try virtual box then. Thanks
properties (22)
authorfisteganos
permlinkre-inertia-re-fisteganos-re-inertia-drdoogie-rb-vote-trail-script-20170520t015612767z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 01:56:12
last_update2017-05-20 01:56:12
depth3
children0
last_payout2017-05-27 01:56: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_length33
author_reputation69,184,775,134,054
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,583,244
net_rshares0
@fth ·
Really very good work..
properties (22)
authorfth
permlinkre-inertia-drdoogie-rb-vote-trail-script-20171225t075950735z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-12-25 07:55:48
last_update2017-12-25 07:55:48
depth1
children0
last_payout2018-01-01 07:55: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_length23
author_reputation-21,541,844,673
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id25,132,482
net_rshares0
@fyrstikken ·
$0.54
Fantastic! Simply Fantastic!!
๐Ÿ‘  , , ,
properties (23)
authorfyrstikken
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t000828672z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 00:08:27
last_update2017-05-20 00:08:27
depth1
children0
last_payout2017-05-27 00:08:27
cashout_time1969-12-31 23:59:59
total_payout_value0.532 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation377,187,606,449,589
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,581,273
net_rshares301,938,877,301
author_curate_reward""
vote details (4)
@hansenator ·
$0.51
Sounds like a good way to work your way up fast! I'm going to do more research. Thank you!
๐Ÿ‘  ,
properties (23)
authorhansenator
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t001900163z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 00:18:54
last_update2017-05-20 00:18:54
depth1
children0
last_payout2017-05-27 00:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.511 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation4,489,120,226,821
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,581,472
net_rshares287,860,555,313
author_curate_reward""
vote details (2)
@jpederson96 ·
What about Windows? @inertia
properties (22)
authorjpederson96
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170923t161559858z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-09-23 16:16:00
last_update2017-09-23 16:16:00
depth1
children0
last_payout2017-09-30 16:16: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_length28
author_reputation32,016,589,036,669
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,720,547
net_rshares0
@marcusxman ·
$0.50
Unfortunately I no techno geek but all the more power to those who have the skills.
๐Ÿ‘  ,
properties (23)
authormarcusxman
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t010917645z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 01:09:18
last_update2017-05-20 01:09:18
depth1
children0
last_payout2017-05-27 01:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.499 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation1,601,688,281,300
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,582,351
net_rshares282,109,058,189
author_curate_reward""
vote details (2)
@mrwalt ·
@inertia Awesome share.  I look forward to playing around with this.
properties (22)
authormrwalt
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t053308352z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-05-20 05:33:09
last_update2017-05-20 05:33:09
depth1
children0
last_payout2017-05-27 05: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_length68
author_reputation12,519,418,659,235
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,587,437
net_rshares0
@namchau ·
$10.09
noob here,
I gave the above a go with my novice skill, face with this error when i call ruby drdoogie.rb

Error: Failed to open TCP connection to steemd.steemit.com:443 (getaddrinfo: No address associated with hostname)

Appreciate any guidance here. Thank you
๐Ÿ‘  ,
properties (23)
authornamchau
permlinkre-inertia-drdoogie-rb-vote-trail-script-20180112t011356473z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2018-01-12 01:13:57
last_update2018-01-12 01:13:57
depth1
children2
last_payout2018-01-19 01:13:57
cashout_time1969-12-31 23:59:59
total_payout_value9.568 HBD
curator_payout_value0.527 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation166,361,210,145
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,884,860
net_rshares1,288,331,557,840
author_curate_reward""
vote details (2)
@inertia ·
I haven't updated this gist in a while.  You can fix it by either doing a `bundle update` or by modifying `drdoogie.yml` and changing `steemd.steemit.com` to `api.steemit.com` (or both).
๐Ÿ‘  
properties (23)
authorinertia
permlinkre-namchau-re-inertia-drdoogie-rb-vote-trail-script-20180112t012010068z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2018-01-12 01:20:09
last_update2018-01-12 01:20:09
depth2
children1
last_payout2018-01-19 01:20: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_length186
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,885,796
net_rshares448,730,569
author_curate_reward""
vote details (1)
@namchau ·
Thank you @inertia! #follow & #upvoted(no value, sorry)
properties (22)
authornamchau
permlinkre-inertia-re-namchau-re-inertia-drdoogie-rb-vote-trail-script-20180112t013524038z
categoryradiator
json_metadata{"tags":["radiator","follow","upvoted"],"users":["inertia"],"app":"steemit/0.1"}
created2018-01-12 01:35:24
last_update2018-01-12 01:35:24
depth3
children0
last_payout2018-01-19 01:35: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_length55
author_reputation166,361,210,145
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,888,175
net_rshares0
@noganoo ·
Praise the Lord!  This is exactly what I needed.  Thank you @inertia!  Golos support too amirite?
๐Ÿ‘Ž  
properties (23)
authornoganoo
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170605t174525565z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-06-05 17:45:27
last_update2017-06-05 17:45:27
depth1
children1
last_payout2017-06-12 17:45: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_length97
author_reputation-12,409,054,499,907
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,223,797
net_rshares-3,462,227,884
author_curate_reward""
vote details (1)
@inertia ·
Correct.
properties (22)
authorinertia
permlinkre-noganoo-re-inertia-drdoogie-rb-vote-trail-script-20170605t174619244z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-05 17:46:18
last_update2017-06-05 17:46:18
depth2
children0
last_payout2017-06-12 17:46: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_length8
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,223,839
net_rshares0
@oluwoleolaide ·
Okay so where does this work for a semi-Rookie like me?
I guess i should stick to blogging and not meddling with higher powers.
properties (22)
authoroluwoleolaide
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170521t142608392z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-21 14:26:09
last_update2017-05-21 14:26:09
depth1
children0
last_payout2017-05-28 14:26: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_length127
author_reputation113,793,841,740,896
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,630,661
net_rshares0
@personz ·
Good features :D
properties (22)
authorpersonz
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t164332322z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 16:43:30
last_update2017-05-20 16:43:30
depth1
children0
last_payout2017-05-27 16:43: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_length16
author_reputation42,452,361,038,560
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,603,107
net_rshares0
@prameshtyagi ·
Hi,

I installed everything  required and could run the command but getting below error. Pls help me to resolve it.

[ec2-user@ip-172-31-31-207 drdoogie]$ ruby drdoogie.rb
Now trailing fyrstikken ...
fyrstikken voted for kda90305/ethereum-inventor-vitalik-buterin-meets-russian-pr                                                                             esident-vladimir-putin-andrew-quentson-on-03-06-2017 at 2.0 %
/home/ec2-user/.gem/ruby/2.0/gems/ffi-1.9.17/lib/ffi/library.rb:147:in `block in                                                                              ffi_lib': Could not open library 'ssl': ssl: cannot open shared object file: No                                                                              such file or directory. (LoadError)
Could not open library 'libssl.so': libssl.so: cannot open shared object file: N                                                                             o such file or directory
        from /home/ec2-user/.gem/ruby/2.0/gems/ffi-1.9.17/lib/ffi/library.rb:100                                                                             :in `map'
        from /home/ec2-user/.gem/ruby/2.0/gems/ffi-1.9.17/lib/ffi/library.rb:100                                                                             :in `ffi_lib'
        from /home/ec2-user/.gem/ruby/2.0/gems/bitcoin-ruby-0.0.10/lib/bitcoin/f                                                                             fi/openssl.rb:14:in `<module:OpenSSL_EC>'
        from /home/ec2-user/.gem/ruby/2.0/gems/bitcoin-ruby-0.0.10/lib/bitcoin/f                                                                             fi/openssl.rb:9:in `<module:Bitcoin>'
        from /home/ec2-user/.gem/ruby/2.0/gems/bitcoin-ruby-0.0.10/lib/bitcoin/f                                                                             fi/openssl.rb:8:in `<top (required)>'
        from /home/ec2-user/.gem/ruby/2.0/gems/bitcoin-ruby-0.0.10/lib/bitcoin/k                                                                             ey.rb:251:in `regenerate_pubkey'
        from /home/ec2-user/.gem/ruby/2.0/gems/bitcoin-ruby-0.0.10/lib/bitcoin/k                                                                             ey.rb:66:in `pub'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/trans                                                                             action.rb:132:in `signature'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/trans                                                                             action.rb:85:in `payload'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/trans                                                                             action.rb:72:in `process'
        from drdoogie.rb:64:in `block (2 levels) in vote'
        from drdoogie.rb:51:in `each'
        from drdoogie.rb:51:in `block in vote'
        from drdoogie.rb:38:in `each'
        from drdoogie.rb:38:in `vote'
        from drdoogie.rb:81:in `block (2 levels) in <main>'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:124:in `block (2 levels) in operations'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:123:in `each'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:123:in `block in operations'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:143:in `block (2 levels) in transactions'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:142:in `each'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:142:in `each'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:142:in `block in transactions'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:189:in `block (2 levels) in blocks'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:178:in `each'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:178:in `block in blocks'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:169:in `loop'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:169:in `blocks'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:138:in `transactions'
        from /home/ec2-user/.gem/ruby/2.0/gems/radiator-0.2.1/lib/radiator/strea                                                                             m.rb:109:in `operations'
properties (22)
authorprameshtyagi
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170603t164858433z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-03 16:48:48
last_update2017-06-03 16:48:48
depth1
children4
last_payout2017-06-10 16:48: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_length5,673
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,117,767
net_rshares0
@inertia · (edited)
$0.11
I think that version of ruby might be too old.  What OS/version are you on?

Nevermind, I see you solved it.
๐Ÿ‘  
properties (23)
authorinertia
permlinkre-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170606t174621038z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-06 17:46:21
last_update2017-06-06 17:47:03
depth2
children1
last_payout2017-06-13 17:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.105 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,284,994
net_rshares31,233,169,948
author_curate_reward""
vote details (1)
@prameshtyagi ·
I am using aws linux standard instance.
properties (22)
authorprameshtyagi
permlinkre-inertia-re-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170606t174856706z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-06 17:48:54
last_update2017-06-06 17:48:54
depth3
children0
last_payout2017-06-13 17:48: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_length39
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,285,118
net_rshares0
@prameshtyagi ·
I changed my WIF key from private to public and now I get following problem:
fyrstikken voted for beatdown/fifa-17-top-5-best-goals-of-the-month-may-2017 at 2.0 %
Unable to stream on current node.  Retrying in 5 seconds.  Error: Invalid version
 how to solve it?? Much appreciated
properties (22)
authorprameshtyagi
permlinkre-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170603t170823277z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-03 17:08:15
last_update2017-06-03 17:08:15
depth2
children1
last_payout2017-06-10 17:08:15
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_length280
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,118,599
net_rshares0
@prameshtyagi ·
Hello,

Just by searching around solved the problem. I had to install : sudo yum install openssl-devel

ref: http://www.sondaika.com/2015/04/solved-no-package-libssl-dev-available.html
properties (22)
authorprameshtyagi
permlinkre-prameshtyagi-re-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170603t181822940z
categoryradiator
json_metadata{"tags":["radiator"],"links":["http://www.sondaika.com/2015/04/solved-no-package-libssl-dev-available.html"],"app":"steemit/0.1"}
created2017-06-03 18:18:15
last_update2017-06-03 18:18:15
depth3
children0
last_payout2017-06-10 18:18:15
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_length184
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,121,523
net_rshares0
@prameshtyagi ·
$1.10
dear @inertia: I can successfully upvote but only for ONE trail account. Pls suggest how it can be done for many trail accounts
๐Ÿ‘  , ,
properties (23)
authorprameshtyagi
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170603t184556018z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-06-03 18:45:48
last_update2017-06-03 18:45:48
depth1
children7
last_payout2017-06-10 18:45:48
cashout_time1969-12-31 23:59:59
total_payout_value1.078 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,122,538
net_rshares289,655,463,918
author_curate_reward""
vote details (3)
@inertia ·
Just add more than one trail group.  E.g.:

```yaml
:trails:
  :banjo:
    :scale_votes: 100.00 %
    :max_age: 1440
    :allow_upvote: true
    :allow_downvote: true
    :enable_comments: true
    :skip_tags:
      - nsfw
      - test
    # :only_tags:
    #   - steemit
  :inertia:
    :scale_votes: 100.00 %
    :max_age: 1440
    :allow_upvote: true
    :allow_downvote: true
    :enable_comments: true
    :skip_tags:
      - nsfw
      - test
    # :only_tags:
    #   - steemit
```
properties (22)
authorinertia
permlinkre-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170603t184824805z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-03 18:48:24
last_update2017-06-03 18:48:24
depth2
children6
last_payout2017-06-10 18:48: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_length488
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,122,622
net_rshares0
@prameshtyagi ·
Thnx a lot @inertia. This is marvlous. But there is big message that shows up on screen after each re-upvote. Is it possible to suppress that?
properties (22)
authorprameshtyagi
permlinkre-inertia-re-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170603t190305908z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-06-03 19:03:00
last_update2017-06-03 19:03:00
depth3
children5
last_payout2017-06-10 19:03: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_length142
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,123,162
net_rshares0
@prameshtyagi ·
Hello @inertia - I am just curious to know if you have plans to implement following:
1. Check for curation reward growth per  minute and use that as criteria for upvote
2. Similar to maximum time - what about putting one more critera of minimum time
3. And physical location diversity index of upvoters to really pick quality content with global apeal
properties (22)
authorprameshtyagi
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170606t182937779z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-06-06 18:29:36
last_update2017-06-06 18:29:36
depth1
children2
last_payout2017-06-13 18:29: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_length351
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,287,305
net_rshares0
@inertia ·
$0.10
I'm not sure what minimum time would be useful for.  Maximum time is used to only vote if the creation is less than *n*.  This is useful for ignoring late votes that will yield very little benefit in curation.

Minimum time implies that you would like to ignore the early votes in favor of late ones.  I guess it makes sense for flexibility, but I'm not sure if it's typical use.

The other ideas you mention would require an analytic component.  Right now, drdoogie only uses the API to look at the blockchain and that is very limited in terms of evaluating analytics.
๐Ÿ‘  
properties (23)
authorinertia
permlinkre-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170606t183740628z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-06 18:37:42
last_update2017-06-06 18:37:42
depth2
children1
last_payout2017-06-13 18:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.102 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length569
author_reputation346,568,901,399,561
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,287,712
net_rshares30,389,134,624
author_curate_reward""
vote details (1)
@prameshtyagi ·
No issue. I was just curious about yr future plans.  This is already gr8 stuf.
properties (22)
authorprameshtyagi
permlinkre-inertia-re-prameshtyagi-re-inertia-drdoogie-rb-vote-trail-script-20170606t184024827z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-06-06 18:40:24
last_update2017-06-06 18:40:24
depth3
children0
last_payout2017-06-13 18:40: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_length78
author_reputation133,698,299,152,872
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,287,848
net_rshares0
@seablue ·
$0.94
Wow. That solves a problem of how I was going to trail Banjo without signing up on Streemian.  Thanks!
๐Ÿ‘  , , , , ,
properties (23)
authorseablue
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t000052544z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 00:00:48
last_update2017-05-20 00:00:48
depth1
children0
last_payout2017-05-27 00:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.906 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation18,862,018,948,644
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,581,099
net_rshares501,004,522,201
author_curate_reward""
vote details (6)
@teamsteem ·
$0.91
Awesome work @inertia! This looks like a powerful bot!
๐Ÿ‘  , ,
properties (23)
authorteamsteem
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170519t231941126z
categoryradiator
json_metadata{"tags":["radiator"],"users":["inertia"],"app":"steemit/0.1"}
created2017-05-19 23:19:18
last_update2017-05-19 23:19:18
depth1
children0
last_payout2017-05-26 23:19:18
cashout_time1969-12-31 23:59:59
total_payout_value0.815 HBD
curator_payout_value0.098 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation284,804,541,406,803
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,580,131
net_rshares488,581,644,102
author_curate_reward""
vote details (3)
@thatgermandude ·
that's what she said.. ehm...I'm the one, who knocks!...nooo...

It's gonna be legendary!
properties (22)
authorthatgermandude
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t005646692z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 00:56:45
last_update2017-05-20 00:56:45
depth1
children0
last_payout2017-05-27 00:56: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_length89
author_reputation44,042,814,400,473
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,582,148
net_rshares0
@vegansilverstack ·
Nice work!
properties (22)
authorvegansilverstack
permlinkre-inertia-drdoogie-rb-vote-trail-script-20170520t023626960z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2017-05-20 02:36:27
last_update2017-05-20 02:36:27
depth1
children0
last_payout2017-05-27 02:36: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_reputation14,687,983,627,289
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id3,584,066
net_rshares0
@wernner ·
namchau (44)  ยท  el aรฑo pasado
noob here,
I gave the above a go with my novice skill, face with this error when i call ruby drdoogie.rb

Error: Failed to open TCP connection to steemd.steemit.com:443 (getaddrinfo: No address associated with hostname
๐Ÿ‘  
properties (23)
authorwernner
permlinkre-inertia-drdoogie-rb-vote-trail-script-20190121t000841200z
categoryradiator
json_metadata{"tags":["radiator"],"app":"steemit/0.1"}
created2019-01-21 00:09:00
last_update2019-01-21 00:09:00
depth1
children0
last_payout2019-01-28 00:09: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_length249
author_reputation40,765,318,564
root_title"drdoogie.rb - Vote Trail Script"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id78,685,650
net_rshares502,103,678
author_curate_reward""
vote details (1)