create account

Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops · (edited)
$85.20
Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes
![Cover.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t78uMBWZF39zdb9yzMK9DxgJx2bwM3G2Tbxm6C41ZPrUAYXQYT2hBkgezWpvvkkvcWU.JPG)

I mentioned to @livinguktaiwan that I had to adjust the bonus weights for BOT voting because I am struggling to use up my voting power.

I can set the BOT to run, and hours later, it’s still going and has not breached the level I set as a cut-off. Fewer people are posting, and the ones who pass the rigorous tests I put in place are fewer.

![VotingBonus.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tRvj4QinhN78d31UJCXUtfUYYWpxfYrSiXsv5F2zhaK8VVu6i7RqULxuvseuVi7P1E5.JPG)

To put it simply..., these values are applied to whatever vote weight the BOT decides to give the author. So a vote of 10% could end up being somewhere between 14% and 19%. If the HIVE token decreases, then you will less $ value but more HIVE value.

It's free votes aka free money and nobody is interested, what’s wrong with everyone? If you get votes from @slobberchops **NOW** and they contain decimal points, then your post has been BOT voted.

![BOTVotedPosts.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tSxGFxhemTCnUx7d7CKXCyrUfGUSgBnfbNDuAzLGukvBH7bs4h6TTD12D9S1XhpQJkE.JPG)

You can see the this easily using [HiveTasks](https://hivetasks.com/@slobberchops). Whilst I would love to manually curate articles, there are not enough hours in the day, and running this twice or three times a day saves me a shitload of time.

![DebugEnabled.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t76pL3kpeTYrbCuuMRnC5x6F6jGGBYqYpHA6oaFCgYmVy7KYtUGgnYigjdcswQtbVqA.JPG)

Saturdays seem to be my BOT development days of late, I add some more code, up the version and test it with the debugmode variable set to True. I can then run it, without it voting for anyone, but the motions are all the same otherwise.

<center>
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23swngges7eHosSy3RZHGhG67EpAvaFuwXNDi6NQszyokK7GASNmSRJ2LiwKGxXHA6dbW.png)
...***'a section of the votees list. Anyone here is likely to get voted as of now as posts are a scarce commodity'...***
</center>

I do get generated logs for each run, but this aspect is a little crap or was. Choosing a random name from a large list is all very well, but in a single run, the same name could be picked out several times.

I needed a temporary list creating and cross-referencing against to ensure the same name is not submitted to all the various checks I use on every account and post when picked.

![DefinetheTempList.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/48FEFU9T9WswEt1XEs1YYKLhP9J7rL5maxgayWXc5U4juESibuTUbAJSvNw7N7Fub2.JPG)

Not a big deal, initialise it and then add it to the while loop within the account choosing part of the script. If the account name does not exist in votees_processed then the next line is executed.

![Original;DupeCode.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/Eo1wMUJbsfyeZC8Myp9JDRt3ikGkfUX2evQcxZAsuDVbLNZ7SHjbD1K8NBd4zwETiAw.JPG)

The main function that accepts a returned integer value into the outofvpaccounts variable kicks off the voting routine, and when it returns the account is then added to votees_processed with the append method.

![sooud_duplicate.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tRta9RsEUGEgBe6BCcDWUpk8w8Eys1DuDgpbDedpXeTsZEtXi9Ej2kfPqtvxKVJd4xZ.JPG)

It works but it looks shit when ran! I don't have my eyes glued to the screen output, but do like things to be highlighted. Using no spacing and red text shows me @sooud has been picked twice and identifies this fix works.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t76pLTEipRPeGe6HH1FWpmkjBokDekzu5HsyXgpzBCxtCGFV4tfy8c8ePEBg7SSZWPe.png)

Add a couple of line feeds, use AQUA and it's much easier to spot, especially when the text is racing up the screen.

![duplicate_screenlookfix.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tGVpus5w5uDBouqDUreU7LdTAs9RWSwDZAwsS2VQAsJiq1kUMyvc2hgddvrct6QV8Yq.JPG)

The longer the script runs, and finds nothing to vote, the more frequently it will find a duplicate name, and if the votees list is large enough, in theory all the voting accounts should reach their thresholds first. 

![morefrequentskips.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t756XYwjpfiuiRWTrbmV7Xmqpa9rcm4fZibW6rV6SGHTbdpPHjkkQsfAFaUX3NGgAx1.JPG)

This is why I want the votees list to be **LARGER** (more of that at the end of this post).

I did a similar thing (when it comes to colours) when adding the KE ratio factor into the last version of the BOT, so could easily see if the account was a '*Leeching Arsehole*'.

![unitmastervote.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tRmmuF84Z4YPzSmGVfvMo4yLNV4tJgT4hqH1TTVpzSbG19BrmQ879j6NzHATfVDnbuC.JPG)

@unitmaster could well have been one of those, but this is due to expectations of HP vs Account age. Not everyone posts everyday and is super active and that's where the second check comes in. The fact this author is talking about 'Hive Growth' is even better. 

4.82% is not a large vote, but I do like to spread the love, and @unitmaster's KE ratio is better than mine. Maybe I should add a extra bonus for level of KE. The lower, the bigger the bonus?

![endoflog.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/Eo6Rmo1C4kx5noEL122ixKR5RRqgZvsttCDQoNEKD5c3K6TvpH2pFAHap1WyzEyUANK.JPG)

The logs are now better but not perfect at all. 

31 accounts received a vote, not even close. It was actually 3. The reason being that 28 of the 31 eligible had already received a vote. Quite sad isn't it?

![0-3monthsoldcode.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t79F4qALDA6k4R2ZooHXHo249DpnEgnpk9Hbr92UbSSftwFgpZovmK7go6LGf4JMgjf.JPG)

@patif2025 is a new account and should have received a vote but as this was the last account to be checked before all of them were low on VP, no vote was issued. In fact this account should have been bypassed as it is too new, which made me fix yet another bug.

![0-3monthsodlcodefixed.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t72XbaqFaV6iLByavAJFescn4ZNCuPn2AmcnLucsMDh4aLfaHKtcLcABPd2hqcfjQ6y.JPG)

the snarkycomment variable reveals the answer and this one won't get a vote until 90 days has elapsed. @patif2025 will need to be a little more patient, but is a whitelisted account (for now).

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

**...'THE SLOBBERCHOPS WHITELIST'...**

Would you like to be whitelisted and eligible for votes by me (and a bunch of other accounts?). Drop me a comment on this post, and I *may* add you (subject to account checks). 

Twice or three times a day I manually run the BOT until the voting thresholds on all the accounts have been breached. You may get a vote, or you may be passed by. 

A vote depends on passing the checks I have put in place, and if your name is randomly picked. There's nothing to lose, you get votes, could be small or large and I get curation rewards. 

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

Do you like posting your Urbex content and photography for **FREE** on Facebook and YouTube? I like to get some form of reward for my work and every time I create I do just that. Take a look at **[The Urbex Community on HIVE](https://peakd.com/c/hive-104387/created)**.

If you want to keep creating for **FREE** then ignore what you are reading. If you want to be like me and gain something other than **BUGGER ALL** for your work then click **[here](https://youtu.be/0pnFg4igYuY)** and learn about posting on the HIVE blockchain.

<center>
My Urban Exploration Tales can be found directly on the internet via my
Website: '[Tales of the Urban Explorer](https://talesoftheurbanexplorer.co.uk/)'.
</center>

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

![TalesLogo.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23tbkz42cJ8HwULaL9SPMgb78qc5GL7ZBfC4nrsp2sk8ytmsQa4NJAhupa8zpu19gUgZ1.JPG)

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

<center>
![CurieCurator.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg)
</center>

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

<div class="pull-left">

![Drooling Maniac.JPG](https://steemitimages.com/DQmNfnfWNzzjZDZ7b1PukhSHLgL5g55apzyDpT4Jp7dP2CH/Drooling%20Maniac.JPG)

</div>

<div class="pull-right">

If you found this article so invigorating that you are now a positively googly-eyed, drooling lunatic with dripping saliva or even if you liked it just a bit, then please upvote, comment, rehive, engage me or all of these things.

</div>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 666 others
properties (23)
authorslobberchops
permlinkpython-libraries-hive-voting-bot-duplicate-account-and-new-account-fixes
categoryhive-163521
json_metadata"{"app":"peakd/2025.2.3","description":"...'FREE Votes up for grabs, what can be better than that?'...","format":"markdown","image":["https://files.peakd.com/file/peakd-hive/slobberchops/23t78uMBWZF39zdb9yzMK9DxgJx2bwM3G2Tbxm6C41ZPrUAYXQYT2hBkgezWpvvkkvcWU.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tRvj4QinhN78d31UJCXUtfUYYWpxfYrSiXsv5F2zhaK8VVu6i7RqULxuvseuVi7P1E5.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tSxGFxhemTCnUx7d7CKXCyrUfGUSgBnfbNDuAzLGukvBH7bs4h6TTD12D9S1XhpQJkE.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t76pL3kpeTYrbCuuMRnC5x6F6jGGBYqYpHA6oaFCgYmVy7KYtUGgnYigjdcswQtbVqA.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23swngges7eHosSy3RZHGhG67EpAvaFuwXNDi6NQszyokK7GASNmSRJ2LiwKGxXHA6dbW.png","https://files.peakd.com/file/peakd-hive/slobberchops/48FEFU9T9WswEt1XEs1YYKLhP9J7rL5maxgayWXc5U4juESibuTUbAJSvNw7N7Fub2.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/Eo1wMUJbsfyeZC8Myp9JDRt3ikGkfUX2evQcxZAsuDVbLNZ7SHjbD1K8NBd4zwETiAw.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tRta9RsEUGEgBe6BCcDWUpk8w8Eys1DuDgpbDedpXeTsZEtXi9Ej2kfPqtvxKVJd4xZ.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t76pLTEipRPeGe6HH1FWpmkjBokDekzu5HsyXgpzBCxtCGFV4tfy8c8ePEBg7SSZWPe.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tGVpus5w5uDBouqDUreU7LdTAs9RWSwDZAwsS2VQAsJiq1kUMyvc2hgddvrct6QV8Yq.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t756XYwjpfiuiRWTrbmV7Xmqpa9rcm4fZibW6rV6SGHTbdpPHjkkQsfAFaUX3NGgAx1.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tRmmuF84Z4YPzSmGVfvMo4yLNV4tJgT4hqH1TTVpzSbG19BrmQ879j6NzHATfVDnbuC.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/Eo6Rmo1C4kx5noEL122ixKR5RRqgZvsttCDQoNEKD5c3K6TvpH2pFAHap1WyzEyUANK.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t79F4qALDA6k4R2ZooHXHo249DpnEgnpk9Hbr92UbSSftwFgpZovmK7go6LGf4JMgjf.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23t72XbaqFaV6iLByavAJFescn4ZNCuPn2AmcnLucsMDh4aLfaHKtcLcABPd2hqcfjQ6y.JPG"],"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":["livinguktaiwan","slobberchops","sooud","unitmaster","patif2025"]}"
created2025-03-01 15:25:24
last_update2025-03-01 15:36:24
depth0
children88
last_payout2025-03-08 15:25:24
cashout_time1969-12-31 23:59:59
total_payout_value42.646 HBD
curator_payout_value42.555 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,833
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,577
net_rshares241,898,568,889,510
author_curate_reward""
vote details (730)
@alonicus ·
$0.12
I think I'm already on the whitelist (based on seeing upvotes with numbers after the dot 😁), so this comment is just to say a big "Thank You" for the upvotes πŸ˜€

Cheers !

!BBH
πŸ‘  
properties (23)
authoralonicus
permlinkre-slobberchops-ssgc2u
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 15:52:06
last_update2025-03-01 15:52:06
depth1
children1
last_payout2025-03-08 15:52:06
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.058 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation153,260,625,267,309
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,981
net_rshares335,160,716,981
author_curate_reward""
vote details (1)
@slobberchops ·
You're welcome, you should see the vote go up a little from now in terms of HIVE but not in $$ value as the bear seems to be hitting us. 

This is the best time to grow.., I can't use my VP so what do I do?
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-alonicus-ssgcbl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 15:57:21
last_update2025-03-01 15:57:21
depth2
children0
last_payout2025-03-08 15:57: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_length206
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,055
net_rshares0
author_curate_reward""
vote details (2)
@arc7icwolf ·
$0.22
Usually I open and read a Python post to learn, but when it's one of yours, it isn't anymore only about learning... it's also about reading the output of the script and have a laugh 🀣
πŸ‘  ,
properties (23)
authorarc7icwolf
permlinkre-slobberchops-ssgiw8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 18:19:21
last_update2025-03-01 18:19:21
depth1
children5
last_payout2025-03-08 18:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.111 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation502,084,492,890,907
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,140,796
net_rshares633,236,532,293
author_curate_reward""
vote details (2)
@slobberchops ·
$0.07
Oh yeah, there's always got to be some laughs! You should see the rest of the profanity this script generates.., there's limits on what I can show publicly .. πŸ˜€ 
πŸ‘  , , ,
properties (23)
authorslobberchops
permlinkre-arc7icwolf-ssgj0n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 18:22:03
last_update2025-03-01 18:22:03
depth2
children4
last_payout2025-03-08 18:22:03
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,140,855
net_rshares209,397,926,506
author_curate_reward""
vote details (4)
@arc7icwolf ·
>You should see the rest of the profanity this script generates...

Compared to yours my scripts must look sooooo boring ahahah !LOL
properties (22)
authorarc7icwolf
permlinkre-slobberchops-ssjmdj
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-03 10:27:21
last_update2025-03-03 10:27:21
depth3
children1
last_payout2025-03-10 10:27: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_length132
author_reputation502,084,492,890,907
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,176,488
net_rshares0
@jacobtothe ·
$0.08
If a script can't include profanity in the comments and dev output, what's the point of coding?
πŸ‘  ,
properties (23)
authorjacobtothe
permlinkre-slobberchops-ssgvdz
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 22:49:12
last_update2025-03-01 22:49:12
depth3
children1
last_payout2025-03-08 22:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation566,875,380,559,449
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,145,336
net_rshares220,313,433,619
author_curate_reward""
vote details (2)
@bozz ·
$0.24
That's pretty cool that you keep tweaking this. I wish I had the know how and the ambition to do something like this. I just stick with the hive.vote page because I am just that dumb.  Do you have to run this manually each day or does it just run all the time in the background?
πŸ‘  ,
properties (23)
authorbozz
permlinkre-slobberchops-ssgep7
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 16:48:42
last_update2025-03-01 16:48:42
depth1
children3
last_payout2025-03-08 16:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.118 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation2,256,533,784,497,946
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,852
net_rshares671,295,837,628
author_curate_reward""
vote details (2)
@slobberchops ·
$0.03
I could leave it 24/7, but it would probably crash during the night due to HIVE Node instability, as it does sometimes when running it manually several times a day. Then there's the cost.., too much.

>That's pretty cool that you keep tweaking this.

Its very satisfying knowing I have created something unique. There's others out there but not ones that generate the level of profanity mine does (for some accounts). That's for internal use only... of course πŸ˜€
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-bozz-ssgewe
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 16:53:03
last_update2025-03-01 16:53:03
depth2
children2
last_payout2025-03-08 16:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length461
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,927
net_rshares95,179,418,222
author_curate_reward""
vote details (3)
@bozz ·
$0.07
Haha,  yeah, that is pretty funny.  You definitely have something special.  I really am envious of you.  I'd love to make something cool like that one day.  My previous python thing for HIVE was kind of silly compared to this.
πŸ‘  ,
properties (23)
authorbozz
permlinkre-slobberchops-ssgf38
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 16:57:09
last_update2025-03-01 16:57:09
depth3
children1
last_payout2025-03-08 16:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length226
author_reputation2,256,533,784,497,946
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,989
net_rshares201,382,001,198
author_curate_reward""
vote details (2)
@bpcvoter1 ·
Dear @steevc,

https://hive.blog/hive/@steevc/re-jacobtothe-ssfzp9

https://peakd.com/hive-167922/@bpcvoter3/uncovering-themarkymark-s-withdrawal-activity-on-hive-blockchain

https://peakd.com/hive-167922/@bpcvoter2/the-truth-about-hive-exposing-corruption-and-building-a-better-future

https://peakd.com/hive-167922/@bilpcoinbpc/a-closer-look-at-hive-delegations-and-ocdb-transactions-uncovering-the-connections

https://peakd.com/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-102-buildawhale-scam-farm-on-hive-and-dear-steevc


You claim some people are "beyond hope" and that you’re not wasting any more time on us. Yet here your good friend @jacobtothe continues to downvote the truth instead of addressing the systemic abuse we’ve exposed. If you truly cared about making Hive better, you’d stop enabling corruption and start working toward solutionsβ€”instead of adding to the problem by silencing dissent.

Let’s be clear: we wonder what drives *you*. You say you care about Hive, but your actions tell a different story. Instead of fixing the issues we’ve brought to lightβ€”like scam farms, coordinated downvotes, and unethical practicesβ€”you turn a blind eye and suppress those who speak out. Downvoting the truth doesn’t erase it; it only highlights your inability to confront uncomfortable realities.

It’s telling that Blocktrades has so much to lose if Hive collapsesβ€”and even more telling that your friends have openly joked about being the last ones to β€œturn off the lights” if it all goes south. These statements reveal far more than you realize. The connections between accounts like @themarkymark, BuildaWhale, Blocktrades, and Alpha aren’t just speculationβ€”they’re becoming increasingly obvious to anyone paying attention. 

At Bilpcoin, our mission is simple: to expose corruption and fight for accountability. What do *you* really contribute besides chatting with your old friends and obsessing over young women online? Your priorities seem misplaced when compared to the urgent need for reform on Hive.

We’ve asked you repeatedly to reflect on your actions because this fight is bigger than you think. Every downvote you cast against the truth only adds fuel to the fire, further eroding trust in the ecosystem. Transactions don’t lie, and neither do we. The evidence is there for anyone willing to see itβ€”but will you finally open your eyes, or will you continue clinging to denial?

Sincerely,  
The Bilpcoin Team
πŸ‘  
properties (23)
authorbpcvoter1
permlinkssgbws
categoryhive-163521
json_metadata{"users":["steevc","jacobtothe","themarkymark"],"links":["https://hive.blog/hive/@steevc/re-jacobtothe-ssfzp9"],"app":"hiveblog/0.1"}
created2025-03-01 15:46:51
last_update2025-03-01 15:46:51
depth1
children0
last_payout2025-03-08 15:46:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,478
author_reputation-19,809,034,642,674
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,906
net_rshares0
author_curate_reward""
vote details (1)
@bpcvoter1 ·
Dear @steevc,

https://hive.blog/hive/@steevc/re-jacobtothe-ssfzp9

https://peakd.com/hive-167922/@bpcvoter3/uncovering-themarkymark-s-withdrawal-activity-on-hive-blockchain

https://peakd.com/hive-167922/@bpcvoter2/the-truth-about-hive-exposing-corruption-and-building-a-better-future

https://peakd.com/hive-167922/@bilpcoinbpc/a-closer-look-at-hive-delegations-and-ocdb-transactions-uncovering-the-connections

https://peakd.com/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-102-buildawhale-scam-farm-on-hive-and-dear-steevc


You claim some people are "beyond hope" and that you’re not wasting any more time on us. Yet here your good friend @jacobtothe continues to downvote the truth instead of addressing the systemic abuse we’ve exposed. If you truly cared about making Hive better, you’d stop enabling corruption and start working toward solutionsβ€”instead of adding to the problem by silencing dissent.

Let’s be clear: we wonder what drives *you*. You say you care about Hive, but your actions tell a different story. Instead of fixing the issues we’ve brought to lightβ€”like scam farms, coordinated downvotes, and unethical practicesβ€”you turn a blind eye and suppress those who speak out. Downvoting the truth doesn’t erase it; it only highlights your inability to confront uncomfortable realities.

It’s telling that Blocktrades has so much to lose if Hive collapsesβ€”and even more telling that your friends have openly joked about being the last ones to β€œturn off the lights” if it all goes south. These statements reveal far more than you realize. The connections between accounts like @themarkymark, BuildaWhale, Blocktrades, and Alpha aren’t just speculationβ€”they’re becoming increasingly obvious to anyone paying attention. 

At Bilpcoin, our mission is simple: to expose corruption and fight for accountability. What do *you* really contribute besides chatting with your old friends and obsessing over young women online? Your priorities seem misplaced when compared to the urgent need for reform on Hive.

We’ve asked you repeatedly to reflect on your actions because this fight is bigger than you think. Every downvote you cast against the truth only adds fuel to the fire, further eroding trust in the ecosystem. Transactions don’t lie, and neither do we. The evidence is there for anyone willing to see itβ€”but will you finally open your eyes, or will you continue clinging to denial?

Sincerely,  
The Bilpcoin Team

https://youtu.be/2u0fPgASLeY


https://youtu.be/HjEQ0lRCTDk
πŸ‘  
properties (23)
authorbpcvoter1
permlinksshuwx
categoryhive-163521
json_metadata{"users":["steevc","jacobtothe","themarkymark"],"image":["https://img.youtube.com/vi/2u0fPgASLeY/0.jpg"],"links":["https://youtu.be/2u0fPgASLeY\n<p>https://youtu.be/HjEQ0lRCTDk"],"app":"hiveblog/0.1"}
created2025-03-02 11:34:54
last_update2025-03-02 11:34:54
depth1
children0
last_payout2025-03-09 11:34: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_length2,539
author_reputation-19,809,034,642,674
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,155,472
net_rshares0
author_curate_reward""
vote details (1)
@chinito ·
$0.08
That's some nice bit of coding. I wish U luck in its use and that your curation is all good! πŸ‘Šβ˜ΊοΈβœŒοΈ
πŸ‘  ,
properties (23)
authorchinito
permlinkre-slobberchops-ssgyqh
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-02 00:01:27
last_update2025-03-02 00:01:27
depth1
children1
last_payout2025-03-09 00:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation189,696,609,371,809
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,146,600
net_rshares216,880,501,627
author_curate_reward""
vote details (2)
@slobberchops ·
Thanks.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-chinito-sshos8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 09:24:09
last_update2025-03-02 09:24:09
depth2
children0
last_payout2025-03-09 09:24: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_length7
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,153,937
net_rshares0
author_curate_reward""
vote details (1)
@danzocal ·
!PIZZA
πŸ‘Ž  
properties (23)
authordanzocal
permlinkre-slobberchops-ssgzed
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-02 00:15:48
last_update2025-03-02 00:15:48
depth1
children0
last_payout2025-03-09 00:15:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation12,432,803,008,396
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,146,843
net_rshares-5,080,427,237
author_curate_reward""
vote details (1)
@gwajnberg ·
$0.12
I only appear in your blog when you talk about your votes system hahaha but actually is because I follow stemgeeks, stem and science tags to try to curate what I think the best in the topics and since there are many bad things publishing in these tags I also try to clean it up around. Just a little explanation to avoid misinterpretations.

So let's go with the post. Just curious what libraries are you using in your voting script? Also probably there is something in the past but I forgot, do you use any type of control to the vote % be more elastic and adjust acording to your vp ? if vp is to high it can go a above % or if it is too low maybe reducing the weights ?
πŸ‘  ,
properties (23)
authorgwajnberg
permlinkre-slobberchops-ssgd0n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 16:12:27
last_update2025-03-01 16:12:27
depth1
children10
last_payout2025-03-08 16:12:27
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.058 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length672
author_reputation369,402,382,102,345
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,355
net_rshares335,364,296,848
author_curate_reward""
vote details (2)
@slobberchops ·
$0.02
> Just curious what libraries are you using in your voting script? 

I use these..

	import requests, os, random, pypyodbc, re
	from datetime import datetime, timedelta
	from decimal import Decimal

 	from langdetect import detect_langs
	 from langdetect.lang_detect_exception import LangDetectException as Lang_e

	 from beem import Hive
	 from beem.account import Account
	 from beem.vote import Vote
	 from beem.exceptions import MissingKeyError
	 from beem.comment import Comment
	 from beem.instance import set_shared_blockchain_instance

Though some of the beem libraries are probably not used anymore. I have tried to phase out as many BEEM calls as I can due to it's deprecation.

>do you use any type of control to the vote % be more elastic and adjust according to your vp ? if vp is to high it can go a above % or if it is too low maybe reducing the weights ?

No, the weights are determined not by the VP, but by the quality of the post (as much as automation will let me), with incentives for less delegation, the  staked HP of the account vs the age of the account and by a random bonus value.

I am planning on adding a further bonus for lower KE ratios.
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-gwajnberg-ssge34
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 16:35:30
last_update2025-03-01 16:35:30
depth2
children9
last_payout2025-03-08 16:35:30
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,169
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,685
net_rshares65,648,640,136
author_curate_reward""
vote details (3)
@gwajnberg ·
$0.07
Maybe an alternative is migrating your script to JS to use hivejs! I felt some limitations with beem that didn’t feel with hivejs! 
πŸ‘  ,
properties (23)
authorgwajnberg
permlinkre-slobberchops-202531t10044413z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-01 17:00:45
last_update2025-03-01 17:00:45
depth3
children4
last_payout2025-03-08 17:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation369,402,382,102,345
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,139,045
net_rshares201,260,608,541
author_curate_reward""
vote details (2)
@hannes-stoffel ·
$0.12
When you phase out the BEEM, what's the replacement?
Also: Would love to get whitelisted ;-)

Something new every day for me, was actually researching HPUD in combination with leofinance tag and the search brought me your python  bot postings. Had no idea you were doing such stuff. 
πŸ‘  
properties (23)
authorhannes-stoffel
permlinkre-slobberchops-ssghb2
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 17:45:06
last_update2025-03-01 17:45:06
depth3
children3
last_payout2025-03-08 17:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation46,651,126,065,071
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,139,859
net_rshares337,537,855,200
author_curate_reward""
vote details (1)
@hive-lu ·
#### Hello slobberchops!
**It's nice to let you know that your article won πŸ₯‰ place.**
Your post is among the best articles voted 7 days ago by the @hive-lu | King Lucoin Curator by **szejq**
 
You and your curator receive **0.0056 Lu** (Lucoin) investment token and a **7.12%** share of the reward from [Daily Report 590](/lucoin/@hive-lu/daily-report-day-590). Additionally, you can also receive a unique **LUBROWN** token for taking 3rd place. All you need to do is reblog [this](/lucoin/@hive-lu/daily-report-day-590) report of the day with your winnings.
 
<center>[![2.png](https://files.peakd.com/file/peakd-hive/now.calendars/23uEwt7Djmb4N3dE96ecCUemJez6vLU3fmoTrdjEJn1ws4d8iPw2QrrsB22nyhbb178sx.png)](/@hive-lu)</center>
 
---
<center><sub>Invest in the **Lu token** (Lucoin) and get paid. With 50 Lu in your wallet, you also become the curator of the @hive-lu which follows your upvote.
Buy Lu on the [Hive-Engine](https://hive-engine.com/trade/LU) exchange | World of Lu created by @szejq </sub></center>
<center><sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP` _or to resume write a word_ `START`</sub> </center>
properties (22)
authorhive-lu
permlinklucoin-prize-jmehgx
categoryhive-163521
json_metadata""
created2025-03-09 03:36:09
last_update2025-03-09 03:36:09
depth1
children0
last_payout2025-03-16 03:36: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_length1,185
author_reputation31,505,892,393,548
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,302,966
net_rshares0
@hivebuzz ·
Congratulations @slobberchops! You received a personal badge!

<table><tr><td>https://images.hive.blog/70x70/https://hivebuzz.me/badges/pud.s2.png?202503020006</td><td>You powered-up at least 50 HP on Hive Power Up Day! This entitles you to a level 2 badge<br>Participate in the next Power Up Day and try to power-up more HIVE to get a bigger Power-Bee.<br>May the Hive Power be with you!</td></tr></table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@slobberchops) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>


**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202502-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202502-result">Hive Power Up Month Challenge - February 2025 Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202503"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202503">Be ready for the March edition of the Hive Power Up Month!</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202503"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202503">Hive Power Up Day - March 1st 2025</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-1740875242
categoryhive-163521
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-03-02 00:27:21
last_update2025-03-02 00:27:21
depth1
children0
last_payout2025-03-09 00:27: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_length1,379
author_reputation369,627,785,338,610
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,147,235
net_rshares0
@hivebuzz ·
Congratulations @slobberchops! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge

<table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@slobberchops) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pud-202503-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202503-feedback">Feedback from the March Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202502-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202502-result">Hive Power Up Month Challenge - February 2025 Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202503"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202503">Be ready for the March edition of the Hive Power Up Month!</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-1740885895
categoryhive-163521
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-03-02 03:24:54
last_update2025-03-02 03:24:54
depth1
children0
last_payout2025-03-09 03:24: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_length1,410
author_reputation369,627,785,338,610
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,149,656
net_rshares0
@hivebuzz ·
Congratulations @slobberchops! You received a personal badge!

<table><tr><td>https://images.hive.blog/70x70/https://hivebuzz.me/badges/birthday-7.png</td><td>Happy Hive Birthday! You are on the Hive blockchain for 7 years!</td></tr></table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@slobberchops) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>


**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pud-202503-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202503-feedback">Feedback from the March Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202502-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202502-result">Hive Power Up Month Challenge - February 2025 Winners List</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202503"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202503">Be ready for the March edition of the Hive Power Up Month!</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-1740910501
categoryhive-163521
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-03-02 10:15:00
last_update2025-03-02 10:15:00
depth1
children0
last_payout2025-03-09 10:15: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_length1,239
author_reputation369,627,785,338,610
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,154,469
net_rshares0
@hivepakistan ·
<center>**Curious about HivePakistan? Join us on [Discord](https://discord.gg/3FzxCqFYyG)!**</center>

<center>Delegate your HP to the [Hivepakistan](https://peakd.com/@hivepakistan/wallet) account and earn 90% of curation rewards in liquid hive!<br><br><center><table><tr><td><center>[50 HP](https://hivesigner.com/sign/delegateVestingShares?&delegatee=hivepakistan&vesting_shares=50%20HP)</center></td><td><center>[100 HP](https://hivesigner.com/sign/delegateVestingShares?&delegatee=hivepakistan&vesting_shares=100%20HP)</center></td><td><center>[200 HP](https://hivesigner.com/sign/delegateVestingShares?&delegatee=hivepakistan&vesting_shares=200%20HP)</center></td><td><center>[500 HP (Supporter Badge)](https://hivesigner.com/sign/delegateVestingShares?&delegatee=hivepakistan&vesting_shares=500%20HP)</center></td><td><center>[1000 HP](https://hivesigner.com/sign/delegateVestingShares?&delegatee=hivepakistan&vesting_shares=1000%20HP)</center></td></tr></table></center>
<center>Follow our [Curation Trail](https://hive.vote/dash.php?i=1&trail=hivepakistan) and don't miss voting!</center>
___
<center>**Additional Perks: Delegate To @ [pakx](https://peakd.com/@pakx) For Earning $PAKX Investment Token**</center>

<center><img src="https://files.peakd.com/file/peakd-hive/dlmmqb/23tkn1F4Yd2BhWigkZ46jQdMmkDRKagirLr5Gh4iMq9TNBiS7anhAE71y9JqRuy1j77qS.png"></center><hr><center><b>Curated by <a href="/@gwajnberg">gwajnberg</a></b></center>
properties (22)
authorhivepakistan
permlinkre-slobberchops-1740845019
categoryhive-163521
json_metadata"{"tags": ["hive-163521"], "app": "HiveDiscoMod"}"
created2025-03-01 16:03:39
last_update2025-03-01 16:03:39
depth1
children0
last_payout2025-03-08 16:03: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,446
author_reputation123,107,804,891,621
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,155
net_rshares0
@holoz0r ·
$0.69
Where code, can I deploy this myself? :) 
πŸ‘  , , , ,
properties (23)
authorholoz0r
permlinkre-slobberchops-ssjat4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-03 06:17:30
last_update2025-03-03 06:17:30
depth1
children1
last_payout2025-03-10 06:17:30
cashout_time1969-12-31 23:59:59
total_payout_value0.346 HBD
curator_payout_value0.346 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation530,530,744,196,103
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,173,070
net_rshares2,009,101,461,079
author_curate_reward""
vote details (5)
@slobberchops ·
I might share it.. one day.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-holoz0r-sskbw4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-03 19:38:30
last_update2025-03-03 19:38:30
depth2
children0
last_payout2025-03-10 19:38: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_length27
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,187,699
net_rshares0
author_curate_reward""
vote details (2)
@imfarhad ·
$0.07
Please check my account @imfarhad. I would love to get whitelisted and get an upvote, thanks
πŸ‘  
properties (23)
authorimfarhad
permlinkre-slobberchops-202531t16618914z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2025-03-01 16:06:21
last_update2025-03-01 16:06:21
depth1
children2
last_payout2025-03-08 16:06:21
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation272,997,571,242,556
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,208
net_rshares200,875,141,046
author_curate_reward""
vote details (1)
@slobberchops ·
As it stands.. this is what would happen if I was to add you. 

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tGRC21aN68DHi5955SncRj37RT2zGwv5YrxhoboXWoiQ7fztTE9pJpC1zNomPcnLgep.png)

You post a lot of ActiFit content, this would also fail and your longer content is mostly about your own asset growth etc.., and while this may be suitable for Facebook and the likes.., here..., it's much like everyone else's stuff.

Take a tip from me and start writing about topics that other people may be interested in. Can they learn something from you, have you travelled somewhere (always gets interest) etc..
πŸ‘  
properties (23)
authorslobberchops
permlinkre-imfarhad-ssgdgr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/slobberchops/23tGRC21aN68DHi5955SncRj37RT2zGwv5YrxhoboXWoiQ7fztTE9pJpC1zNomPcnLgep.png"],"users":[]}
created2025-03-01 16:22:06
last_update2025-03-01 16:22:06
depth2
children1
last_payout2025-03-08 16:22:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length622
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,482
net_rshares0
author_curate_reward""
vote details (1)
@imfarhad ·
i understand. Thanks for the feedback, i will surely work on it.
properties (22)
authorimfarhad
permlinkre-slobberchops-202531t162451772z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2025-03-01 16:24:54
last_update2025-03-01 16:24:54
depth3
children0
last_payout2025-03-08 16:24: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_length64
author_reputation272,997,571,242,556
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,526
net_rshares0
@isac.akin ·
It's Okay, it's just an account from many others so no worries but nice finding and also good to see all the other scammers are following your trial like witty lol but bro the bigger scammers should support the little once that is very bad. Anyways 10 days left for this account so I'll follow your trail for next 10 days. Small scammers and big will swim together for next ten days. Have a nice day.
πŸ‘Ž  , , , , , , , , , , , , ,
properties (23)
authorisac.akin
permlinkre-slobberchops-202537t82649635z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-07 04:26:51
last_update2025-03-07 04:26:51
depth1
children3
last_payout2025-03-14 04:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length400
author_reputation5,228,526,939,709
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,261,179
net_rshares-302,020,297,033
author_curate_reward""
vote details (14)
@slobberchops ·
$0.22
You are not making any sense.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-isacakin-ssqtcs
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 07:41:18
last_update2025-03-07 07:41:18
depth2
children2
last_payout2025-03-14 07:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.108 HBD
curator_payout_value0.108 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,263,035
net_rshares681,062,967,448
author_curate_reward""
vote details (2)
@tarazkp ·
$0.07
He is speaking fluent Wanker.
πŸ‘  
properties (23)
authortarazkp
permlinkre-slobberchops-ssqu5d
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-07 07:58:27
last_update2025-03-07 07:58:27
depth3
children1
last_payout2025-03-14 07:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation5,878,829,251,552,735
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,263,234
net_rshares218,776,284,463
author_curate_reward""
vote details (1)
@katerinaramm ·
$0.07
Thats a good job! 
I hope to buy a new laptop and get into a little bit of coding maybe in this year or the next one. 
About your question, yes - I would be really happy to get whitelisted : )

Thanks for the opportunity!
πŸ‘  
properties (23)
authorkaterinaramm
permlinkssi6ru
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-02 15:52:42
last_update2025-03-02 15:52:42
depth1
children3
last_payout2025-03-09 15:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation681,253,461,566,309
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,159,591
net_rshares206,834,197,672
author_curate_reward""
vote details (1)
@slobberchops ·
$0.05
I can add you, but as it stands you delegate too much of your stake out to get votes from me. If in the future this changes, the votes will start.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23xVit1Vg79Uvv8D4hs4J4JuL2uADbv3RK9uWqqMyjrrtc9Uf2KtcT48ca5HmYkfXXmBo.png)
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-katerinaramm-ssi7s4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 16:14:36
last_update2025-03-02 16:14:36
depth2
children2
last_payout2025-03-09 16:14:36
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length289
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,159,940
net_rshares138,268,587,036
author_curate_reward""
vote details (3)
@katerinaramm ·
Thank you for your reply.
I am delegating hive power to new users, friends and projects I want to support.
I also delegate RC to many new users who need it. 
If this is a reason not to be added, I totally respect it! 
!BEER
properties (22)
authorkaterinaramm
permlinkssi7zq
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-02 16:19:03
last_update2025-03-02 16:19:03
depth3
children1
last_payout2025-03-09 16:19:03
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_length223
author_reputation681,253,461,566,309
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,159,989
net_rshares0
@logen9f ·
$0.08
I'd appreciate to be on the whitelist. Please check out my posts, mostly about Splinterlands and other games.
πŸ‘  ,
properties (23)
authorlogen9f
permlinkre-slobberchops-202532t72659116z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-01 23:27:00
last_update2025-03-01 23:27:00
depth1
children1
last_payout2025-03-08 23:27:00
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation210,740,579,741,571
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,146,052
net_rshares216,997,812,338
author_curate_reward""
vote details (2)
@slobberchops ·
I could but you would not get voted, delegation is too high.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/EouEa47pzSywcL3NGcbpSt8XyLm5du8DXCzCJU4rs4ztzujB93mkcfKRbhnWxd5KH1e.png)
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-logen9f-sshoru
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 09:23:54
last_update2025-03-02 09:23:54
depth2
children0
last_payout2025-03-09 09:23: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_length201
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,153,931
net_rshares0
author_curate_reward""
vote details (2)
@marilour ·
$0.07
Hello, it would be an honor to be part of the list. Please check out my account and give me your feedback. Health & Wellness !LUV
πŸ‘  
properties (23)
authormarilour
permlinkre-slobberchops-202532t54217557z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-02 09:42:21
last_update2025-03-02 09:42:21
depth1
children3
last_payout2025-03-09 09:42:21
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation46,344,170,882,466
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,154,117
net_rshares199,381,873,480
author_curate_reward""
vote details (1)
@luvshares ·
@slobberchops, @marilour<sub>(1/10)</sub> sent you LUV. | <a
    href="https://crrdlx.on.fleek.co/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community </a> | <a 
    href="https://hivewiki.netlify.app" style="text-decoration:none">HiveWiki</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>



<center>Made with <a href="https://peakd.com/@luvshares" target="_blank">LUV</a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-re-slobberchops-202532t54217557z-20250302t094229z
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2025-03-02 09:42:27
last_update2025-03-02 09:42:27
depth2
children0
last_payout2025-03-09 09:42: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_length615
author_reputation5,651,102,754,153
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,154,118
net_rshares0
@slobberchops ·
Added.
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-marilour-sshub5
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-02 11:23:36
last_update2025-03-02 11:23:36
depth2
children1
last_payout2025-03-09 11:23: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_length6
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,155,348
net_rshares43,065,212,067
author_curate_reward""
vote details (3)
@marilour ·
Thank you very much for the opportunity and the prompt reply. A word, when it is the desired one, triggers the most gratifying emotions. You have made my Sunday sublime, my gratitude. Health and well being! !HUG
properties (22)
authormarilour
permlinkre-slobberchops-202532t8733853z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-02 12:07:42
last_update2025-03-02 12:07:42
depth3
children0
last_payout2025-03-09 12:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length211
author_reputation46,344,170,882,466
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,155,845
net_rshares0
@marilui91 ·
Thank you for sharing. Best regards.
properties (22)
authormarilui91
permlinkre-slobberchops-ssi11n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-02 13:49:09
last_update2025-03-02 13:49:09
depth1
children0
last_payout2025-03-09 13:49: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_length36
author_reputation36,823,537,702,673
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,157,422
net_rshares0
@nastyforce ·
$0.07
This is cool! At some point I would love to set up a bot to do something like this but need to get a computer that can handle it first. Dealing with a lot of old tech and very new to coding. What would you recommend for specs that could handle what you do? I want to build a bot that votes on posts and comments (comments that have some effort in it.).
πŸ‘  
properties (23)
authornastyforce
permlinkre-slobberchops-202532t203437257z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-03 03:34:39
last_update2025-03-03 03:34:39
depth1
children0
last_payout2025-03-10 03:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length352
author_reputation1,139,728,385,424
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,170,841
net_rshares210,040,292,963
author_curate_reward""
vote details (1)
@oadissin ·
Peace
I would love to have this account whitelist on Hive
Please check my account @oadissin 
If I am green for the upvote, I will appreciate this support from your bot. Also, share article on new topics.
I learned how to operate python to automate powering up daily from my computer. It is not perfect, but it helps me win some HiveBuzz Challenge.
Thanks
πŸ‘  
properties (23)
authoroadissin
permlinkre-slobberchops-ssgsj3
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":["oadissin"]}
created2025-03-01 21:47:30
last_update2025-03-01 21:47:30
depth1
children2
last_payout2025-03-08 21:47: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_length355
author_reputation459,849,858,647,711
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,144,504
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops ·
You should always vote on posts if you are going to comment, unless you think it's a crap post. I have scripts for lots of things.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23xUmQx5qCY1CkU5LsGh9YLvCJEY6KhEq9h66WRrbo1SMWZW3XZUziSQu8VpbuP6x858L.png)

Added you..
πŸ‘  
properties (23)
authorslobberchops
permlinkre-oadissin-sshop4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 09:22:18
last_update2025-03-02 09:22:18
depth2
children1
last_payout2025-03-09 09:22: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_length285
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,153,907
net_rshares0
author_curate_reward""
vote details (1)
@oadissin ·
Thank you
πŸ‘  
properties (23)
authoroadissin
permlinkre-slobberchops-202532t182122165z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-02 17:21:24
last_update2025-03-02 17:21:24
depth3
children0
last_payout2025-03-09 17:21: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_length9
author_reputation459,849,858,647,711
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,161,017
net_rshares0
author_curate_reward""
vote details (1)
@pardinus ·
$0.16
Loved those logs :)  Seeing posts like this makes me want to get back to my python course, but lately it seems days don't have enough hours for all I want to do! Oh well, maybe further down the year. Cheers! !BBH
πŸ‘  
properties (23)
authorpardinus
permlinkre-slobberchops-ssmefm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-04 22:28:33
last_update2025-03-04 22:28:33
depth1
children4
last_payout2025-03-11 22:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.078 HBD
curator_payout_value0.079 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation380,042,758,293,166
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,212,502
net_rshares500,103,874,735
author_curate_reward""
vote details (1)
@slobberchops ·
$0.07
That's how I started.., an online course but I never finished it. Was too eager to start doing stuff. I already had a background in coding but each language has its quirks.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-pardinus-ssn46w
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-05 07:44:57
last_update2025-03-05 07:44:57
depth2
children3
last_payout2025-03-12 07:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,220,130
net_rshares223,889,375,810
author_curate_reward""
vote details (2)
@pardinus ·
$0.07
There's hope for me then! Although I come for a whole different background; guess the Cobol classes in high school don't count as coding experience... :) 
πŸ‘  ,
properties (23)
authorpardinus
permlinkre-slobberchops-ssq7be
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-06 23:45:15
last_update2025-03-06 23:45:15
depth3
children2
last_payout2025-03-13 23:45:15
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation380,042,758,293,166
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,257,883
net_rshares217,708,660,587
author_curate_reward""
vote details (2)
@patif2025 ·
$0.24
Thanks for mentioning me, I hope that after more publications I will deserve to be put on your white list and receive votes.
πŸ‘  
properties (23)
authorpatif2025
permlinkre-slobberchops-202531t163329142z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-01 15:33:27
last_update2025-03-01 15:33:27
depth1
children3
last_payout2025-03-08 15:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.117 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation72,069,264,668,636
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,683
net_rshares670,649,418,268
author_curate_reward""
vote details (1)
@slobberchops ·
You are already whitelisted.., so when your account breaches 90 days old you will be eligible for votes (subject to checks).

The reason this is in place, is that in the past... accounts are created with great content, get lots of support and then down the line they end up being plagiarised junk.

[This](https://peakd.com/@thenortherner/posts) is one such example. He got lots of support and then caught... probably by @livinguktaiwan :)!
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-patif2025-ssgbkr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 15:41:15
last_update2025-03-01 15:41:15
depth2
children2
last_payout2025-03-08 15:41: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_length440
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,813
net_rshares0
author_curate_reward""
vote details (2)
@livinguktaiwan ·
$0.12
The infamous thenortherner. So many people were fooled by him.

πŸ‘  ,
properties (23)
authorlivinguktaiwan
permlinkre-slobberchops-ssget6
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 16:51:06
last_update2025-03-01 16:51:06
depth3
children1
last_payout2025-03-08 16:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.060 HBD
curator_payout_value0.060 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation1,668,406,709,265,799
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,886
net_rshares345,888,122,374
author_curate_reward""
vote details (2)
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@danzocal<sub>(4/10)</sub> tipped @slobberchops 


</center>
properties (22)
authorpizzabot
permlinkre-python-libraries-hive-voting-bot-duplicate-account-and-new-account-fixes-20250302t001658z
categoryhive-163521
json_metadata"{"app": "pizzabot"}"
created2025-03-02 00:16:57
last_update2025-03-02 00:16:57
depth1
children0
last_payout2025-03-09 00:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation7,538,212,791,707
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,146,892
net_rshares0
@sanjeevm ·
$0.07
> they contain decimal points, then your post has been BOT voted

Now I know the secret :) Glad I am in the white list. 
πŸ‘  ,
properties (23)
authorsanjeevm
permlinkre-slobberchops-ssjida
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-03 09:00:57
last_update2025-03-03 09:00:57
depth1
children1
last_payout2025-03-10 09:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation699,532,707,564,886
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,175,227
net_rshares209,809,275,399
author_curate_reward""
vote details (2)
@slobberchops ·
$0.11
No, I follow you..., not on the BOT.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-sanjeevm-sskbwk
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-03 19:38:45
last_update2025-03-03 19:38:45
depth2
children0
last_payout2025-03-10 19:38:45
cashout_time1969-12-31 23:59:59
total_payout_value0.053 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,187,702
net_rshares311,451,126,557
author_curate_reward""
vote details (2)
@screenjournal ·
$0.07
Nice to see you have a bot in place to manage your voting, the KE ratio should be way more present in hive. I see so many value extractors continue to get big upvotes on Hive one way or another.

Good Luck finding the accounts you are looking for!
πŸ‘  
properties (23)
authorscreenjournal
permlinksshnt1
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-02 09:03:03
last_update2025-03-02 09:03:03
depth1
children2
last_payout2025-03-09 09:03:03
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length247
author_reputation5,687,502,533,447
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,153,656
net_rshares216,838,176,467
author_curate_reward""
vote details (1)
@slobberchops ·
Why not blow your own trumpet?, the movie posts are good, Added...
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-screenjournal-sshp3q
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 09:31:03
last_update2025-03-02 09:31:03
depth2
children1
last_payout2025-03-09 09:31:03
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_length66
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,154,016
net_rshares0
author_curate_reward""
vote details (2)
@screenjournal ·
Thanks, Really appreciate it!
properties (22)
authorscreenjournal
permlinkssjg3l
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-03 08:11:48
last_update2025-03-03 08:11:48
depth3
children0
last_payout2025-03-10 08:11: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_length29
author_reputation5,687,502,533,447
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,174,527
net_rshares0
@seattlea ·
$0.08
I would love to be white-listed  πŸ˜€

Strange that you you have trouble finding posts for your bot to vote for. To me it looks like at least the Splinterlands community is getting more active on Hive and the KE ratios of many posters are pretty good!

By the way the Hive power-up day just ended and I got my 1,000 Hive power up badge 😎
πŸ‘  ,
properties (23)
authorseattlea
permlinkre-slobberchops-202531t17151336z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-02 01:15:12
last_update2025-03-02 01:15:12
depth1
children2
last_payout2025-03-09 01:15:12
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.038 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length334
author_reputation289,935,851,449,213
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,147,937
net_rshares216,879,523,092
author_curate_reward""
vote details (2)
@slobberchops ·
$0.04
I can see you are an @azircon recruit.. and are powering up. Your Actifit posts wont get hit, and I would encourage you to post content other than SPL stuff and your own growth. Added...
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-seattlea-sshoz5
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-02 09:28:18
last_update2025-03-02 09:28:18
depth2
children1
last_payout2025-03-09 09:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,153,973
net_rshares105,887,012,919
author_curate_reward""
vote details (3)
@seattlea ·
Thank you. I am planning to expand beyond Splinterlands and my own growth. My Actifit posts are mostly my own fitness accountability thing and I don't expect people or bots to vote for. 
properties (22)
authorseattlea
permlinkre-slobberchops-202532t34227237z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-02 11:42:27
last_update2025-03-02 11:42:27
depth3
children0
last_payout2025-03-09 11:42: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_length186
author_reputation289,935,851,449,213
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,155,544
net_rshares0
@steevc ·
$0.16
It's a nice little project for you to work on. Could it adjust the parameters if it were not finding enough to vote on? I've not touched my @proofofbrian script in a while as it does what I wanted. The #britlist one works fine too. I need a new project.
πŸ‘  , ,
properties (23)
authorsteevc
permlinkre-slobberchops-ssgh95
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":["proofofbrian"]}
created2025-03-01 17:43:54
last_update2025-03-01 17:43:54
depth1
children1
last_payout2025-03-08 17:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.082 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length253
author_reputation1,381,215,239,339,694
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,139,809
net_rshares472,507,620,084
author_curate_reward""
vote details (3)
@slobberchops ·
$0.05
>It's a nice little project for you to work on. Could it adjust the parameters if it were not finding enough to vote on?

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t77FXbrEtm5KB9UdiF5o1WpQ3QFePzCqrPc2kur9AK44q39BrWjeqxFBhiNGsjKAVoE.png)

Mostly its tweakable via variables close to the top of the script, though some are more hard-coded. Eventually it will all be like that.

If these were all tweaked then a lot more voting would happen!
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-steevc-ssghza
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/slobberchops/23t77FXbrEtm5KB9UdiF5o1WpQ3QFePzCqrPc2kur9AK44q39BrWjeqxFBhiNGsjKAVoE.png"],"users":[]}
created2025-03-01 17:59:36
last_update2025-03-01 17:59:36
depth2
children0
last_payout2025-03-08 17:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length464
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,140,313
net_rshares154,543,713,124
author_curate_reward""
vote details (3)
@travoved ·
$0.12
Seems not becomes more universal. Also looks like KE value become more meaningful for people and we starting to pay more attention when talking about it's value. 

Of course I'd like to be added to vote list of your bot. But as I saw posts about opening Splinterlands packs not let to do it, if I remember correctly. 
πŸ‘  
properties (23)
authortravoved
permlinkre-slobberchops-202531t193941337z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-01 16:39:42
last_update2025-03-01 16:39:42
depth1
children2
last_payout2025-03-08 16:39:42
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length317
author_reputation48,430,358,836,295
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,735
net_rshares335,775,765,283
author_curate_reward""
vote details (1)
@slobberchops ·
I don't see any problem with your account, you are added. 
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-travoved-ssgeqq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 16:49:39
last_update2025-03-01 16:49:39
depth2
children1
last_payout2025-03-08 16:49: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_length58
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,863
net_rshares53,285,823,658
author_curate_reward""
vote details (3)
@travoved ·
Thank you!
properties (22)
authortravoved
permlinkre-slobberchops-202532t1338186z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-01 22:03:39
last_update2025-03-01 22:03:39
depth3
children0
last_payout2025-03-08 22:03: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_length10
author_reputation48,430,358,836,295
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,144,752
net_rshares0
@unitmaster ·
$0.12
Thanks for the tag, that's quite interesting reading the section on my account check. It's nice to know that I'm not a 'Leeching Arsehole' πŸ˜‚

Thanks for the vote on my latest post.

I would certainly like to be whitelisted if that is possible, thanks!
πŸ‘  
properties (23)
authorunitmaster
permlinkre-slobberchops-ssgbj3
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 15:40:15
last_update2025-03-01 15:40:15
depth1
children5
last_payout2025-03-08 15:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.058 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation17,437,508,776,389
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,798
net_rshares334,677,443,954
author_curate_reward""
vote details (1)
@apis.hive ·
Your account is pretty healthy @unitmaster, and if you expand into blogging on non gaming topics as well, I'm sure you can reach a wider audience.  That will help you to grow your account.  Also, a gentle reminder, avoid voting for yourself, it's one of the criteria on Apis Hive, and generally frowned upon by the community.  A lot of people think it doesn't matter because their vote value is small, but is the principle behind it.  Imagine if all the whales upvote themselves everyday, they would take up a big chunk of the reward pool, leaving crumbs for everyone else.  Hope to see you continue to grow on Apis Hive
properties (22)
authorapis.hive
permlinkre-unitmaster-ssgce1
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-01 15:58:48
last_update2025-03-01 15:58:48
depth2
children2
last_payout2025-03-08 15:58: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_length620
author_reputation12,429,844,030,311
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,086
net_rshares0
@unitmaster · (edited)
Thank you for the comment. I would like to expand into non-gaming topics in the future.

I've been a part of a curation trail that auto-votes accounts and mine is on it. I'll leave the curation trail so that I don't get any more self-votes on my own account. Thanks for the tip!

Edit: I found how to turn off the self-vote. Thanks again for the help.

![image.png](https://files.peakd.com/file/peakd-hive/unitmaster/23w3EnbSMdBviFEJVMrNBkCLTts29wN3nheLnEfa7WLxGgxkwmPHuFrKKYGw24nr9SzeC.png)
properties (22)
authorunitmaster
permlinkre-apishive-ssgdzs
categoryhive-163521
json_metadata{"tags":"hive-163521"}
created2025-03-01 16:33:27
last_update2025-03-01 16:37:21
depth3
children1
last_payout2025-03-08 16:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length492
author_reputation17,437,508,776,389
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,138,656
net_rshares0
@slobberchops ·
$0.02
LOL, indeed you are not, and being listed there means you are already whitelisted. 
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-unitmaster-ssgbm8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 15:42:09
last_update2025-03-01 15:42:09
depth2
children1
last_payout2025-03-08 15:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,828
net_rshares73,843,779,264
author_curate_reward""
vote details (3)
@unitmaster ·
Got it, thanks!
properties (22)
authorunitmaster
permlinkre-slobberchops-ssgbty
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 15:46:48
last_update2025-03-01 15:46:48
depth3
children0
last_payout2025-03-08 15:46: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_length15
author_reputation17,437,508,776,389
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,137,904
net_rshares0
@zekepickleman ·
$0.12
I feel like such a philistine not using bots and the available solutions that would spread my little stake further and earn more curation rewards. Maybe someday I will get down to it. 

Looking at all this code and not having a coder on staff, I will sit in my curation chair and read and upvote for now. Fascinating stuff though and I am wondering if the chops support account is still around. 
πŸ‘  
properties (23)
authorzekepickleman
permlinkre-slobberchops-202531t124957476z
categoryhive-163521
json_metadata{"type":"comment","tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-01 17:49:57
last_update2025-03-01 17:49:57
depth1
children1
last_payout2025-03-08 17:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.059 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length395
author_reputation768,735,688,100,544
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,140,052
net_rshares337,131,387,020
author_curate_reward""
vote details (1)
@slobberchops ·
$0.11
>chops support account is still around.

It is!.. and is used as a trigger account to vote more content (UK only peeps), via hive.vote. Although I still use that, there's only a few accounts left on there (one is yours). Most of my voting is either manual or the BOT.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-zekepickleman-ssgi3p
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-01 18:02:15
last_update2025-03-01 18:02:15
depth2
children0
last_payout2025-03-08 18:02:15
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation2,436,297,288,918,509
root_title"Python Libraries: HIVE Voting BOT - Duplicate Account and New Account Fixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,140,353
net_rshares309,488,607,608
author_curate_reward""
vote details (2)