<center>  </center> Have you seen @robinhoodwhale's <a href="https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore">teaser intro post</a>? The basic idea, as I understand it, is to build out a new whale whose voting tastes and curation habits are determined by a group of people, a hive mind, instead of a single individual. I find this idea fascinating and wanted to support it while also challenging myself to write my own bot in PHP. The bot monitors @robinhoodwhale's voting activity and, if there's a new vote, goes ahead and votes on that same post using piston. The idea being, as more people vote up what @robinhoodwhale votes on, the more curation rewards @robinhoodwhale will make and the more visibility those posts will get (making @robinhoodwhale even more valuable to the community). I worked on the CopyCatVoter bot yesterday and had it running all night. Here's the output from its first day of life: ``` ➜ Bots git:(master) ✗ php CopyCatVoterTest.php 2016-08-28T02:47:38+00:00 Starting CopyCatVoter for lukestokes who wants to copy robinhoodwhale... ------------ NEW VOTE! ----------- robinhoodwhale/re-kateblack-a-rant-about-a-germ-obsessed-parent-and-outdoor-play-20160827t201239908z 2016-08-27T20:13:54 ---------------------------------- Already voted. ...................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................... ------------ NEW VOTE! ----------- kazumba/modern-day-edgar-cayce-nostradamus 2016-08-28T07:12:00 ---------------------------------- Voting... . ------------ NEW VOTE! ----------- robinhoodwhale/re-kazumba-modern-day-edgar-cayce-nostradamus-20160828t071218005z 2016-08-28T07:12:27 ---------------------------------- Voting... ..................................................................................... ------------ NEW VOTE! ----------- webosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach 2016-08-28T07:34:21 ---------------------------------- Voting... ... ------------ NEW VOTE! ----------- robinhoodwhale/re-webosfritos-thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach-20160828t073446896z 2016-08-28T07:35:03 ---------------------------------- Voting... ............................................ ------------ NEW VOTE! ----------- robinhoodwhale/re-picokernel-alpha-squeek-io-twitter-alternative-for-the-steem-blockchain-20160828t074629039z 2016-08-28T07:46:36 ---------------------------------- Voting... ............................................... ------------ NEW VOTE! ----------- naquoya/sometimes-we-just-need-to-rage-against-the-machine 2016-08-28T07:58:48 ---------------------------------- Voting... ... ------------ NEW VOTE! ----------- robinhoodwhale/re-naquoya-sometimes-we-just-need-to-rage-against-the-machine-20160828t075914448z 2016-08-28T07:59:36 ---------------------------------- Voting... ............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................. ------------ NEW VOTE! ----------- dorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli 2016-08-28T13:11:21 ---------------------------------- Voting... .. ------------ NEW VOTE! ----------- robinhoodwhale/re-dorit-israeli-experimental-learning-space-education-by-dr-dorit-israeli-20160828t131146396z 2016-08-28T13:12:03 ---------------------------------- Voting... ..................................... ------------ NEW VOTE! ----------- tonypeacock/join-a-niche-online-community-here-s-10-reasons-why 2016-08-28T13:21:48 ---------------------------------- Voting... .. ------------ NEW VOTE! ----------- robinhoodwhale/re-tonypeacock-join-a-niche-online-community-here-s-10-reasons-why-20160828t132210398z 2016-08-28T13:22:15 ---------------------------------- Voting... ............................................................................................. ------------ NEW VOTE! ----------- jaytaylor/on-international-dog-day-be-more-dog 2016-08-28T13:46:18 ---------------------------------- Voting... .. ------------ NEW VOTE! ----------- robinhoodwhale/re-jaytaylor-on-international-dog-day-be-more-dog-20160828t134633948z 2016-08-28T13:47:03 ---------------------------------- Voting... .................................................................................................................. ------------ NEW VOTE! ----------- sitaru/yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there 2016-08-28T14:16:24 ---------------------------------- Voting... . ------------ NEW VOTE! ----------- robinhoodwhale/re-sitaru-yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there-20160828t141641424z 2016-08-28T14:16:48 ---------------------------------- Voting... ................................................................................................................................................................................................................................................................... ------------ NEW VOTE! ----------- anahilarski/graphic-design-and-social-media-pro-from-panama 2016-08-28T15:23:42 ---------------------------------- Voting... . ------------ NEW VOTE! ----------- robinhoodwhale/re-anahilarski-graphic-design-and-social-media-pro-from-panama-20160828t151705067z 2016-08-28T15:23:48 ---------------------------------- Voting... ..................................................................................................................................... ------------ NEW VOTE! ----------- owdy/color-for-the-color-blind-the-science-behind-the-enchroma-glasses 2016-08-28T15:58:18 ---------------------------------- Voting... ... ------------ NEW VOTE! ----------- robinhoodwhale/re-owdy-color-for-the-color-blind-the-science-behind-the-enchroma-glasses-20160828t155910607z 2016-08-28T15:59:15 ---------------------------------- Voting... ....................................................................................................................................................................................................................................................................................... ------------ NEW VOTE! ----------- lukmarcus/wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday 2016-08-28T17:11:18 ---------------------------------- Voting... . ------------ NEW VOTE! ----------- robinhoodwhale/re-lukmarcus-wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday-20160828t171141695z 2016-08-28T17:11:48 ---------------------------------- Voting... ............... ``` I just changed the configuration settings this morning so now it will only vote up root posts and not vote on the comments @robinhoodwhale votes on. I'm doing this to conserve some voting power for people in my feed, but will probably change that up based on how active I plan to be on Steemit for a given time period. All the code for this is on Github here: <a href="https://github.com/lukestokes/php-steem-tools">https://github.com/lukestokes/php-steem-tools</a>. The CopyCatVoter code is <a href="https://github.com/lukestokes/php-steem-tools/blob/master/src/SteemTools/Bots/CopyCatVoter.php">here</a> and the <a href="https://github.com/lukestokes/php-steem-tools/blob/master/tests/Bots/CopyCatVoterTest.php">code to run it</a> is currently in a test folder. This is basically my embarrassing prototype sandbox play code, but I'm putting it out there publicly in case anyone else wants to play with it also. You'll need to be able to run php and have piston configured with your posting key and have no password on your piston wallet (I hear from @xeroc some changes will be coming in the future to allow for ENV variable for this). So why did I do this instead of just using my account at <a href="https://streemian.com/">https://streemian.com/</a> and its curation trail feature? Well, mainly because I wanted to challenge myself. I really like the idea of having my own bot I can tweak and adjust, almost like a pet. I'm already thinking of improvements to make, such as ensuring it will unvote a post if @robinhoodwhale removes a vote. Also, I like to have the output available for me to review. I'm not one to automate social media activities, so it took a while for me to warm up to the idea of trusting others to curate good content. I had to trust the hive mind to promote content which will benefit Steemit as a platform. With it running locally, I can easily review the posts and still use that 24 hour window to remove my vote if it's something I don't personally think is beneficial to the network or if it is contrary to my subjective opinion of what I "like." If you want to know more about @robinhoodwhale, give them a follow. You can review the list of <a href="https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0">posts they've already voted for in this spreadsheet</a> which is updated in real time, as far as I understand. Shout out to <a href="https://steemit.com/@kyriacos">@kyriacos</a> for the awesome artwork and the <a href="https://steemit.chat/channel/robinhood">robinhood</a> / <a href="https://steemit.chat/channel/robinhood-links">robinhood-links</a> chat channels. I hope you're having a great weekend! **Steem On** [](https://steemit.com/@lukestokes)
author | lukestokes |
---|---|
permlink | trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale","bots","curation","automation","php"],"users":["robinhoodwhale","xeroc"],"image":["https://s22.postimg.org/3nc2dom01/steemwhale.jpg","https://www.steemimg.com/images/2016/08/14/LukeStokes01712.png"],"links":["https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore","https://github.com/lukestokes/php-steem-tools","https://github.com/lukestokes/php-steem-tools/blob/master/src/SteemTools/Bots/CopyCatVoter.php","https://github.com/lukestokes/php-steem-tools/blob/master/tests/Bots/CopyCatVoterTest.php","https://streemian.com/","https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0","https://steemit.com/@kyriacos","https://steemit.chat/channel/robinhood","https://steemit.chat/channel/robinhood-links"]} |
created | 2016-08-28 18:33:15 |
last_update | 2016-08-28 21:11:06 |
depth | 0 |
children | 46 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 19.943 HBD |
curator_payout_value | 4.114 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,697 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,454 |
net_rshares | 12,889,415,656,285 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 3,370,763,019,096 | 100% | ||
boy | 0 | 3,716,393,231 | 100% | ||
xeroc | 0 | 2,018,736,530,061 | 100% | ||
bue-witness | 0 | 4,511,375,320 | 100% | ||
bunny | 0 | 836,372,556 | 100% | ||
ajvest | 0 | 491,037,814,113 | 100% | ||
bue | 0 | 64,458,777,800 | 100% | ||
mini | 0 | 1,991,756,697 | 100% | ||
moon | 0 | 256,330,811 | 100% | ||
masteryoda | 0 | 623,883,875,204 | 100% | ||
bonapartist | 0 | 106,091,578,017 | 100% | ||
proctologic | 0 | 11,442,714,264 | 100% | ||
healthcare | 0 | 746,881,679 | 100% | ||
tuck-fheman | 0 | 855,894,993,737 | 100% | ||
daniel.pan | 0 | 1,159,981,233 | 100% | ||
chitty | 0 | 299,893,452,698 | 100% | ||
patrice | 0 | 6,646,348,234 | 100% | ||
helen.tan | 0 | 345,661,496 | 100% | ||
gregory-f | 0 | 13,737,465,174 | 100% | ||
instructor2121 | 0 | 23,532,851,956 | 100% | ||
jerome-colley | 0 | 1,965,487,747 | 100% | ||
acidyo | 0 | 20,572,124,000 | 100% | ||
steve-walschot | 0 | 138,094,111,002 | 100% | ||
oaldamster | 0 | 53,914,539,744 | 100% | ||
coar | 0 | 1,411,861,696 | 100% | ||
asch | 0 | 73,816,010,256 | 100% | ||
murh | 0 | 2,144,715,220 | 33.01% | ||
ranko-k | 0 | 41,349,153,995 | 100% | ||
treeleaves | 0 | 457,365,085 | 2% | ||
taoteh1221 | 0 | 373,381,756,141 | 100% | ||
applecrisp | 0 | 364,318,019 | 100% | ||
givemeyoursteem | 0 | 6,961,474,454 | 100% | ||
samether | 0 | 13,310,507,864 | 100% | ||
thecryptodrive | 0 | 49,112,341,218 | 100% | ||
bravenewcoin | 0 | 120,980,010,120 | 100% | ||
herzmeister | 0 | 69,685,458,255 | 100% | ||
everythink | 0 | 28,898,266,287 | 100% | ||
infovore | 0 | 441,273,170,513 | 100% | ||
magdalena | 0 | 438,907,956 | 100% | ||
schro | 0 | 141,004,228,310 | 100% | ||
thedashguy | 0 | 136,510,118,400 | 100% | ||
mark-waser | 0 | 5,827,019,645 | 100% | ||
albertogm | 0 | 21,456,445,660 | 28% | ||
lukestokes | 0 | 234,296,653,518 | 100% | ||
ben99 | 0 | 4,543,981,642 | 100% | ||
magnebit | 0 | 5,753,790,444 | 100% | ||
razvanelulmarin | 0 | 62,464,802,399 | 100% | ||
superfreek | 0 | 1,919,856,958 | 100% | ||
wisehammer | 0 | 1,057,194,488 | 100% | ||
cryptoiskey | 0 | 35,894,808,596 | 100% | ||
acassity | 0 | 28,328,356,527 | 100% | ||
azaan | 0 | 4,144,765,674 | 100% | ||
arcaneinfo | 0 | 5,474,192,369 | 100% | ||
ladyclair | 0 | 250,229,854 | 100% | ||
bacchist | 0 | 48,422,672,327 | 100% | ||
cannav | 0 | 7,509,515,373 | 100% | ||
romait | 0 | 9,249,115,921 | 100% | ||
expanse | 0 | 4,975,536,259 | 100% | ||
soupernerd | 0 | 2,649,803,356 | 100% | ||
menta | 0 | 44,780,842,484 | 100% | ||
yogi.artist | 0 | 14,079,754,966 | 100% | ||
mindover | 0 | 20,041,232,983 | 100% | ||
steemswede | 0 | 66,070,094 | 100% | ||
adamgud | 0 | 226,147,199 | 100% | ||
derekareith | 0 | 56,445,584,042 | 100% | ||
rxhector | 0 | 536,360,473 | 100% | ||
furion | 0 | 63,143,114,580 | 100% | ||
strangerarray | 0 | 24,615,091,776 | 100% | ||
spiz0r | 0 | 10,433,095,430 | 100% | ||
ausbitbank | 0 | 10,365,174,465 | 100% | ||
steem1653 | 0 | 670,273,570 | 100% | ||
anyx | 0 | 168,947,762,452 | 100% | ||
repholder | 0 | 142,215,696,802 | 100% | ||
jesta | 0 | 189,544,385,979 | 100% | ||
karen13 | 0 | 5,276,685,276 | 100% | ||
diana.catherine | 0 | 34,452,081,459 | 100% | ||
dwinblood | 0 | 13,663,044,222 | 100% | ||
meesterboom | 0 | 8,969,098,809 | 100% | ||
jaycobbell | 0 | 14,274,121,007 | 100% | ||
allmonitors | 0 | 8,828,405,906 | 100% | ||
inertia | 0 | 70,065,210,728 | 100% | ||
lichtblick | 0 | 6,919,066,301 | 100% | ||
wildchild | 0 | 120,162,058 | 100% | ||
nippel66 | 0 | 12,387,394,181 | 100% | ||
imp3 | 0 | 2,939,478,253 | 100% | ||
iamwne | 0 | 1,487,880,898 | 100% | ||
calaber24p | 0 | 220,031,099,851 | 100% | ||
thylbom | 0 | 56,921,332,898 | 100% | ||
royaltiffany | 0 | 28,777,395,361 | 100% | ||
bones | 0 | 3,227,397,574 | 100% | ||
bendjmiller222 | 0 | 17,691,606,618 | 100% | ||
tarindel | 0 | 7,778,747,906 | 100% | ||
celsius100 | 0 | 19,633,543,541 | 100% | ||
sauravrungta | 0 | 43,607,525,276 | 100% | ||
jl777 | 0 | 246,045,180,632 | 100% | ||
politicasan2 | 0 | 1,139,144,177 | 100% | ||
grin | 0 | 114,213,797 | 100% | ||
team-leibniz | 0 | 24,393,303,610 | 100% | ||
fatboy | 0 | 35,567,732,014 | 100% | ||
webdeals | 0 | 7,289,374,494 | 100% | ||
proto | 0 | 22,100,599,535 | 100% | ||
curator | 0 | 598,459,575 | 100% | ||
brianphobos | 0 | 31,223,582,636 | 100% | ||
michaeldodridge | 0 | 9,379,809,106 | 100% | ||
tygergamer | 0 | 1,945,721,967 | 100% | ||
steemuwe | 0 | 719,753,883 | 100% | ||
nicoleta | 0 | 77,368,907 | 100% | ||
jasonstaggers | 0 | 34,353,610,364 | 100% | ||
weenis | 0 | 2,601,777,531 | 100% | ||
steemdrive | 0 | 103,656,599,962 | 100% | ||
taker | 0 | 11,048,161,290 | 100% | ||
sykochica | 0 | 1,884,834,922 | 100% | ||
timcliff | 0 | 2,640,573,956 | 100% | ||
yng-entrepreneur | 0 | 20,204,434,115 | 100% | ||
laonie1 | 0 | 25,934,610,459 | 100% | ||
laonie2 | 0 | 26,492,606,089 | 100% | ||
laonie3 | 0 | 26,504,067,845 | 100% | ||
feelapi | 0 | 1,570,153,730 | 100% | ||
viktor.phuket | 0 | 9,421,789,992 | 100% | ||
aleksandraz | 0 | 9,009,430,361 | 100% | ||
minion | 0 | 4,888,677,510 | 100% | ||
andrew0 | 0 | 1,163,632,772 | 100% | ||
laonie4 | 0 | 26,500,014,017 | 100% | ||
laonie5 | 0 | 26,499,037,280 | 100% | ||
laonie6 | 0 | 26,496,510,008 | 100% | ||
laonie7 | 0 | 26,493,787,766 | 100% | ||
laonie8 | 0 | 26,491,146,749 | 100% | ||
romancs | 0 | 713,974,649 | 100% | ||
laonie9 | 0 | 26,489,725,839 | 100% | ||
luke490 | 0 | 136,228,051 | 100% | ||
dolov | 0 | 1,315,422,750 | 100% | ||
jphamer1 | 0 | 9,568,495,848 | 100% | ||
velourex | 0 | 14,240,603,277 | 100% | ||
oflyhigh | 0 | 3,423,333,937 | 100% | ||
sillygoon | 0 | 238,337,441 | 100% | ||
driv3n | 0 | 42,027,599,838 | 100% | ||
nano2nd | 0 | 51,172,913 | 100% | ||
razberrijam | 0 | 58,602,625 | 100% | ||
chinadaily | 0 | 1,050,437,459 | 100% | ||
kyriacos | 0 | 9,971,297,203 | 100% | ||
anotherjoe | 0 | 38,460,202,037 | 100% | ||
kafkanarchy84 | 0 | 13,618,563,581 | 100% | ||
mrgrey | 0 | 7,239,535,767 | 100% | ||
voltarius | 0 | 3,407,540,696 | 100% | ||
laonie10 | 0 | 26,484,168,009 | 100% | ||
emilyjane | 0 | 898,707,871 | 100% | ||
barrycooper | 0 | 68,950,759,267 | 100% | ||
mikemacintire | 0 | 12,178,373,062 | 100% | ||
hilarski | 0 | 14,583,243,204 | 100% | ||
onetree | 0 | 3,530,186,924 | 100% | ||
daut44 | 0 | 25,551,061,344 | 100% | ||
newandold | 0 | 2,592,690,795 | 100% | ||
jennsky | 0 | 193,788,098 | 100% | ||
richardcrill | 0 | 1,994,156,610 | 100% | ||
laonie11 | 0 | 26,091,209,143 | 100% | ||
davidjkelley | 0 | 1,649,941,704 | 100% | ||
crion | 0 | 51,718,188 | 100% | ||
digital-wisdom | 0 | 8,124,894,843 | 100% | ||
jwaser | 0 | 5,693,943,859 | 100% | ||
maarnio | 0 | 261,044,004 | 100% | ||
pjo | 0 | 89,563,584 | 100% | ||
bwaser | 0 | 2,684,999,820 | 100% | ||
alina1 | 0 | 52,182,445 | 100% | ||
bones261 | 0 | 304,997,419 | 100% | ||
charlieshrem | 0 | 185,518,573,247 | 100% | ||
tracemayer | 0 | 69,859,252,986 | 100% | ||
jcvanleur | 0 | 59,985,601 | 100% | ||
bones555 | 0 | 581,992,317 | 100% | ||
boxcarblue | 0 | 461,844,295 | 100% | ||
robinhoodwhale | 0 | 34,265,548,518 | 100% | ||
steemrocket | 0 | 57,373,974 | 100% | ||
ellepdub | 0 | 1,516,067,251 | 100% | ||
herpetologyguy | 0 | 1,098,737,630 | 100% | ||
morgan.waser | 0 | 4,811,931,106 | 100% | ||
teemsteem | 0 | 51,238,118 | 100% | ||
faucetguy | 0 | 0 | 100% | ||
inna-yatsuk | 0 | 0 | 100% |
Thanks @lukestokes for sharing the code and taking all the time to create your robinhoodwhale follow bot. It was interesting to see the underlying code behind a bot :)
author | applecrisp |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193106652z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["lukestokes"]} |
created | 2016-08-28 19:31:06 |
last_update | 2016-08-28 19:31:06 |
depth | 1 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 167 |
author_reputation | 2,828,526,129,552 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,364 |
net_rshares | 0 |
It's probably not the best example of bot code as it's just my own playground, but I'm glad you enjoyed looking at it. :)
author | lukestokes |
---|---|
permlink | re-applecrisp-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193859767z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:39:00 |
last_update | 2016-08-28 19:39:00 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,495 |
net_rshares | 0 |
How do you learn to build bots? Please tell me where to go to learn @lukestokes, cheers!
author | arcaneinfo |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193556559z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["lukestokes"]} |
created | 2016-08-28 19:35:57 |
last_update | 2016-08-28 19:35:57 |
depth | 1 |
children | 4 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 14,902,978,467,172 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,449 |
net_rshares | 0 |
It would depend what specifically the bot you want to create will end up doing. Creating a bot to go through a web page and extract all images on it is quite different from say a bot that will buy and sell on a market exchange. In the case of creating an upvote bot for Steemit, I would suggest learning a computer language like Python first, then using a Steemit API for Python, like @xeroc's Piston. There are other libraries for other languages, but Python seems to be the go-to language. Learning computer programming is not something that can be done for the faint of heart. I would suggest going the route of a prepackaged solution like Steemian.com if you're not really into it.
author | bitcoiner |
---|---|
permlink | re-arcaneinfo-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t222256448z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["xeroc"]} |
created | 2016-08-28 22:23:30 |
last_update | 2016-08-28 22:23:30 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 685 |
author_reputation | 28,017,014,641,958 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,033,637 |
net_rshares | 0 |
There isn't a place to go, other than Google, as far as I know. I've been building web stuff since 1996, and it took me over a month of frustration trying to figure out the Steem API enough to start querying it and figuring things out. Sorry I don't have a more cheery answer for you.
author | lukestokes |
---|---|
permlink | re-arcaneinfo-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t194223883z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:42:24 |
last_update | 2016-08-28 19:42:24 |
depth | 2 |
children | 2 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 284 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,547 |
net_rshares | 10,032,608,648 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arcaneinfo | 0 | 5,474,192,369 | 100% | ||
bitcoiner | 0 | 4,558,416,279 | 100% |
Thank You for that:)
author | arcaneinfo |
---|---|
permlink | re-lukestokes-re-arcaneinfo-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t200346876z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 20:03:48 |
last_update | 2016-08-28 20:03:48 |
depth | 3 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 14,902,978,467,172 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,868 |
net_rshares | 0 |
Haha, I've been doing web dev since grade school! At the time it was all about Geocities, spacer gifs, Microsoft Frontpage, Java Applets, etc..... oh the nostalgia... =O
author | bitcoiner |
---|---|
permlink | re-lukestokes-re-arcaneinfo-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t220152912z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 22:02:27 |
last_update | 2016-08-28 22:02:27 |
depth | 3 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.107 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 169 |
author_reputation | 28,017,014,641,958 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,033,398 |
net_rshares | 234,695,377,119 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lukestokes | 0 | 234,695,377,119 | 100% |
Very cool idea. I wish I knew a bit more about php so I could fiddle around and make a bot. I don't mind bots, but mostly only if the content is reviewed by the owner and not solely upvoting content that will curate the most rewards, but that will make steemit more valuable long term.
author | bendjmiller222 |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160829t013353962z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-29 01:33:54 |
last_update | 2016-08-29 01:33:54 |
depth | 1 |
children | 6 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 24,513,111,975,788 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,035,518 |
net_rshares | 0 |
I really enjoyed reading all of the posts today which my bot upvoted while I slept last night. I would have voted for them if I had found them myself. So far, 1 day into it, I'm happy about @robinhoodwhale promoting content I like. **Trust the hive mind.** :)
author | lukestokes |
---|---|
permlink | re-bendjmiller222-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160829t030117413z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["robinhoodwhale"]} |
created | 2016-08-29 03:01:18 |
last_update | 2016-08-29 03:01:18 |
depth | 2 |
children | 5 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 259 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,036,302 |
net_rshares | 0 |
Maybe something could be created that shows a feed of potential content you may like that doesn't need you to vote on it (so as not to use up your voting power when you may be too busy to check it some nights). I think there was talk of a "suggested feed," but it may have been removed or something
author | bendjmiller222 |
---|---|
permlink | re-lukestokes-re-bendjmiller222-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160829t120253666z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-29 12:02:54 |
last_update | 2016-08-29 12:02:54 |
depth | 3 |
children | 4 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 298 |
author_reputation | 24,513,111,975,788 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,040,235 |
net_rshares | 0 |
Excellent work @lukestokes ! keep it up
author | kyriacos |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t195122653z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["lukestokes"]} |
created | 2016-08-28 19:51:21 |
last_update | 2016-08-28 19:51:21 |
depth | 1 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 151,079,958,921,004 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,672 |
net_rshares | 9,971,297,203 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kyriacos | 0 | 9,971,297,203 | 100% |
Thanks! I love the artwork.
author | lukestokes |
---|---|
permlink | re-kyriacos-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t200407468z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 20:04:06 |
last_update | 2016-08-28 20:04:06 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,875 |
net_rshares | 0 |
**Update**: unfortunately I broke things with a code push yesterday, but it's working now and has unvote support. Additionally (and I think this is really cool), it exports the posts it votes on to a file and has a `currationReport()` function that will show you how much the bot is earning in terms of curation rewards (Steem Power): ``` ➜ Bots git:(master) ✗ php CopyCatVoterTestCurationReport.php 0.039,kazumba/modern-day-edgar-cayce-nostradamus 0.233,webosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach 0.236,naquoya/sometimes-we-just-need-to-rage-against-the-machine 0.037,dorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli 0.037,tonypeacock/join-a-niche-online-community-here-s-10-reasons-why 0.179,jaytaylor/on-international-dog-day-be-more-dog ``` So you can support a great initiative and get some love for your wallet as well. Double win!
author | lukestokes |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160829t144717589z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-29 14:47:18 |
last_update | 2016-08-29 14:47:18 |
depth | 1 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 917 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,041,996 |
net_rshares | 245,317,086,469 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lukestokes | 0 | 245,317,086,469 | 100% |
Also, <a href="https://steemit.com/robinhoodwhale/@laonie/how-to-set-up-your-own-voting-bot-for-robinhoodwhale">check out this post</a> by @laonie where he mentions how to get set up. Hopefully I'll have time in the next few days to clean up this code some more.
author | lukestokes |
---|---|
permlink | re-lukestokes-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160829t164159494z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["laonie"],"links":["https://steemit.com/robinhoodwhale/@laonie/how-to-set-up-your-own-voting-bot-for-robinhoodwhale"]} |
created | 2016-08-29 16:42:00 |
last_update | 2016-08-29 16:42:00 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.112 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 262 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,043,441 |
net_rshares | 240,111,027,628 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lukestokes | 0 | 240,111,027,628 | 100% |
I'm not sure I get this ... so, we're supposed to run our own bots and follow robin? is that it?
author | luminousvisions |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t192421598z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:24:21 |
last_update | 2016-08-28 19:24:21 |
depth | 1 |
children | 7 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | -8,545,544,437,418 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,248 |
net_rshares | 0 |
Hey @luminousvisions, thanks for the comment. You're not "supposed" to do anything you don't feel like doing. :) This isn't really a bot for public consumption, as I tried to clarify in my post, it's just my own sandbox code I've been playing around with. If you do want to follow vote what RHW votes on, you can use https://streemian.com/ to do that.
author | lukestokes |
---|---|
permlink | re-luminousvisions-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193820298z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["luminousvisions"],"links":["https://streemian.com/"]} |
created | 2016-08-28 19:38:21 |
last_update | 2016-08-28 19:38:21 |
depth | 2 |
children | 6 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 352 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,490 |
net_rshares | 19,518,593,637 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
luminousvisions | 0 | 19,518,593,637 | 100% |
<code>Closed Beta: Streemian.com is currently in closed-beta for testing and improvements. You will require an invitation code to join. Expect things to break any time!</code>
author | luminousvisions |
---|---|
permlink | re-lukestokes-re-luminousvisions-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t195855229z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:58:54 |
last_update | 2016-08-28 19:58:54 |
depth | 3 |
children | 5 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 175 |
author_reputation | -8,545,544,437,418 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,800 |
net_rshares | 0 |
This is awesome! Thank you for your work, Luke!
author | mikemacintire |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t191815193z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:18:15 |
last_update | 2016-08-28 19:18:15 |
depth | 1 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 18,549,112,052,063 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,147 |
net_rshares | 0 |
Thank you, and you're welcome!
author | lukestokes |
---|---|
permlink | re-mikemacintire-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193925246z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:39:24 |
last_update | 2016-08-28 19:39:24 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,500 |
net_rshares | 0 |
As a newbie on Hive, how can I use this info? I am sorry I don't know tooo much
author | regenerette |
---|---|
permlink | re-lukestokes-qrxz8i |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"app":"peakd/2021.04.2"} |
created | 2021-04-22 01:38:45 |
last_update | 2021-04-22 01:38:45 |
depth | 1 |
children | 0 |
last_payout | 2021-04-29 01:38:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 19,223,847,830,374 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,199,701 |
net_rshares | 0 |
Thanks Luke for creating something to help out the Robin Hood Whale initiative, hopefully in the near future we will have something even simpler. We would like to inform you that you have been chosen as a featured author by the @robinhoodwhale initiave. Kudos
author | robinhoodwhale |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t190154303z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["robinhoodwhale"]} |
created | 2016-08-28 19:01:54 |
last_update | 2016-08-28 19:01:54 |
depth | 1 |
children | 3 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.518 HBD |
curator_payout_value | 0.030 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 262 |
author_reputation | 15,654,567,591,100 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,899 |
net_rshares | 988,882,612,069 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
streemian | 0 | 248,074,956,035 | 100% | ||
thecryptodrive | 0 | 49,111,637,043 | 100% | ||
thedashguy | 0 | 173,404,744,995 | 100% | ||
isteemit | 0 | 53,724,617,453 | 100% | ||
bacchist | 0 | 47,329,213,772 | 100% | ||
yogi.artist | 0 | 14,079,754,966 | 100% | ||
pipertomcat | 0 | 1,925,694,420 | 100% | ||
derekareith | 0 | 56,445,584,042 | 100% | ||
spiz0r | 0 | 10,224,547,278 | 100% | ||
repholder | 0 | 142,215,696,802 | 100% | ||
condra | 0 | 31,170,149,922 | 100% | ||
jed78 | 0 | 3,833,127,336 | 100% | ||
steemdrive | 0 | 106,618,001,855 | 100% | ||
feelapi | 0 | 1,570,153,730 | 100% | ||
minion | 0 | 4,994,953,108 | 100% | ||
kyriacos | 0 | 9,971,297,203 | 100% | ||
nulliusinverba | 0 | 622,230,499 | 100% | ||
robinhoodwhale | 0 | 33,566,251,610 | 100% |
Thanks, but I'm concerned me being featured might upset some people because I've already gathered a bit of a following on my own and am no longer a minnow. Clearly, you're free to promote whoever you want and promoting a post which promotes your initiative makes obvious sense... but yeah. Anyway. Thanks. :)
author | lukestokes |
---|---|
permlink | re-robinhoodwhale-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t191337259z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:13:36 |
last_update | 2016-08-28 19:13:36 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 308 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,070 |
net_rshares | 0 |
I agree, even tho with some googling and some trial/error I could set up that bot to auto vote rhw, I'd appreciate a "noob" guide to set it up. :))
author | minion |
---|---|
permlink | re-robinhoodwhale-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t190453538z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:04:54 |
last_update | 2016-08-28 19:09:54 |
depth | 2 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 3,133,996,004,573 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,945 |
net_rshares | 3,833,127,336 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jed78 | 0 | 3,833,127,336 | 100% |
The best approach right now is to probably use https://streemian.com/ to do this for you.
author | lukestokes |
---|---|
permlink | re-minion-re-robinhoodwhale-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t191409073z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"links":["https://streemian.com/"]} |
created | 2016-08-28 19:14:09 |
last_update | 2016-08-28 19:14:09 |
depth | 3 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,073 |
net_rshares | 4,888,677,510 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
minion | 0 | 4,888,677,510 | 100% |
Dear @lukestokes, you may also want to read our [open letter to the robinhoodwhale...](https://steemit.com/robinhoodwhale/@steemjustice/an-open-letter-to-robinhood-whale)
author | steemjustice |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t183731406z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["lukestokes"],"links":["https://steemit.com/robinhoodwhale/@steemjustice/an-open-letter-to-robinhood-whale"]} |
created | 2016-08-28 18:37:39 |
last_update | 2016-08-28 18:37:39 |
depth | 1 |
children | 10 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 37,324,999,098 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,504 |
net_rshares | 0 |
### Not a whale: [](http://content.screencast.com/users/lukestokes/folders/Jing/media/a974b1b3-e274-4ae6-999b-4b74b63d7491/00002423.png) So is "steemjustice" an account which is going to go around telling others they are doing it wrong? Did you bother to bring up this concern with them directly first in the chat room instead of posting about it in an open letter? There are enough things in this world to complain about. I prefer we spend our energy creating new, valuable things for others to enjoy. Have a nice day.
author | lukestokes |
---|---|
permlink | re-steemjustice-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t184447759z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"image":["http://content.screencast.com/users/lukestokes/folders/Jing/media/a974b1b3-e274-4ae6-999b-4b74b63d7491/00002423.png"]} |
created | 2016-08-28 18:44:48 |
last_update | 2016-08-28 18:44:48 |
depth | 2 |
children | 5 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 641 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,592 |
net_rshares | 20,191,648,590 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
luminousvisions | 0 | 20,191,648,590 | 100% |
@lukestokes the point is @dollarvigilante is HER client and the @anahilarski is clearly not a "small fish" in need of help from the @robinhoodwhale as she already is proxy with the most powerfull accounts of steemit. The open question to the @robinhoodwhale remains unanswered: why are they supporting an account that is clearly NOT a minnow and is already supported by whales, instead of upvoting real unnoticed accounts. @robinhoodwhale is clearly not helping the minnows with this attitude of empowering the ones which already have power...
author | steemjustice |
---|---|
permlink | re-lukestokes-re-steemjustice-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t185722404z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["lukestokes","dollarvigilante","anahilarski","robinhoodwhale"]} |
created | 2016-08-28 18:57:30 |
last_update | 2016-08-28 18:57:30 |
depth | 3 |
children | 4 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 546 |
author_reputation | 37,324,999,098 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,831 |
net_rshares | 0 |
>"I am a graphic designer and do not control the Dollar Vigilante account." @anahilarski >"So basically @anahilarski manages the @dollarvigilante account." @steemjustice You are spreading false information.
author | trogdor |
---|---|
permlink | re-steemjustice-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t184239142z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["anahilarski","dollarvigilante","steemjustice"]} |
created | 2016-08-28 18:42:39 |
last_update | 2016-08-28 20:20:30 |
depth | 2 |
children | 3 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 22,905,182,177,434 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,030,566 |
net_rshares | 0 |
@dollarvigilante (the super-empowered steemit account) is @anahilarski's client. Clearly she is not a small fish without powerfull friends on steemit. Remember @robinhoodwhale was suppouse to help small fish withouth powerfull friends on steemit...
author | steemjustice |
---|---|
permlink | re-trogdor-re-steemjustice-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t193031280z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["dollarvigilante","anahilarski","robinhoodwhale"]} |
created | 2016-08-28 19:30:39 |
last_update | 2016-08-28 19:30:39 |
depth | 3 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 37,324,999,098 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,355 |
net_rshares | 0 |
This: [](https://postimg.org/image/q6drmfxaj/) She doesn't need the support of the @robinhoodwhale, that's the point.
author | steemjustice |
---|---|
permlink | re-trogdor-re-steemjustice-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t223304812z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["robinhoodwhale"],"image":["https://s9.postimg.org/p43l3wehb/robinhoodwhale.jpg"]} |
created | 2016-08-28 22:33:12 |
last_update | 2016-08-28 22:33:12 |
depth | 3 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 192 |
author_reputation | 37,324,999,098 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,033,772 |
net_rshares | 0 |
Thanks guys for helping out the minnows :) @robinhoodwhale @lukestokes
author | steemrocket |
---|---|
permlink | re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t192033673z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"],"users":["robinhoodwhale","lukestokes"]} |
created | 2016-08-28 19:20:33 |
last_update | 2016-08-28 19:20:33 |
depth | 1 |
children | 1 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 295,259,103,558 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,186 |
net_rshares | 0 |
I hope it works out well!
author | lukestokes |
---|---|
permlink | re-steemrocket-re-lukestokes-trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale-20160828t194245724z |
category | robinhoodwhale |
json_metadata | {"tags":["robinhoodwhale"]} |
created | 2016-08-28 19:42:45 |
last_update | 2016-08-28 19:42:45 |
depth | 2 |
children | 0 |
last_payout | 2016-09-29 00:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 556,640,380,599,219 |
root_title | "Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,031,552 |
net_rshares | 0 |