create account

Python Libraries: Self-Vote Checking, The FAST Version! by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops ·
$76.61
Python Libraries: Self-Vote Checking, The FAST Version!
![Cover.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/23t78uMBWZF39zdb9yzMK9DxgJx2bwM3G2Tbxm6C41ZPrUAYXQYT2hBkgezWpvvkkvcWU.JPG)

![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)

**DISCLAIMER:** Self-voting is a personal preference. It is completely up to you what you vote for and who. Never let anyone tell you what to do with your stake, it's yours and yours alone.

After looking at some [code](https://peakd.com/hive-163521/@gwajnberg/using-beem-library-python-to) from @gwajnberg, I figured this was it! A self-voting checking code routine, something I had been putting off for a while due to combination of sullied procrastination laced with pure apathy.

After some farting about, I managed to get @gwajnberg's routine working and work it did albeit very slowly. My last patch had increased the speed of the HIVE Voting BOT, by ensuring accounts were only processed once, so I was loathe to add anything to slow it down.

<center>
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tcP5UHCsU3mfXsjEjSV7caQCjxrYQ2CEkEooX3BvaF9RuTfPZFL2whS1w3Q7wUZm6VR.png)
...***'Chat-GPT is far too polite, I would have told myself to fuck off'...***
</center>

It was time to make something quick and efficient and that meant HIVE-SQL. Although things are starting to click, SQL is hardly my forte, so I asked Chat-GPT for some help.

A fat lot of fucking good that did, and after a while I was calling that AI a useless bastard, a statement it tends to shrug off with ease.  Wrong result, even though I explained it properly. 

Garbage-in, Garbage out @steddyman tells me. It's true sometimes.

Taking things back to basic, I gradually built up the code and requested a single output, otherwise when I call it from Python I get all this other bullshit that's not needed. 

	SELECT 
    ROUND(
        FLOOR((CAST(SUM(CASE WHEN voter = author THEN weight ELSE 0 END) AS FLOAT) 
        / CAST(SUM(weight) AS FLOAT)) * 1000 * 100) / 1000, 2
    ) AS self_vote_percentage
	FROM txvotes
	WHERE 
    	voter = 'greedy' 
    	AND weight > 0 
    	AND timestamp > GETDATE() - 7;

This returns what I want and nothing else. I am not interested in the parameters used for the calculations, just the result code.

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

Now it was a question of getting it into Python. For this, you will need a valid HIVE-SQL account, and this can be obtained [here]( https://hivesql.io/registration/). 

It will cost you 1 HBD for an account and don't lose your credentials or it will cost you another to get them reset. I speak from personal experience.

To date, I had only a single SQL-HIVE routine in the HIVE Voting BOT, and now there were two calls. The SQL routine had to be callable using parameters so I had to make several adjustments.

I hate duplicating code, it's shitty practice and something I have fallen foul of in past scripts, so I make a point of avoiding it now.

	def get_hiveSQL_data(SQLCommand, conn): 
	# Accepts SQL queries and returns values
    
    cursor = conn.cursor()
    cursor.execute(SQLCommand)
    result = cursor.fetchone()
    cursor.close
    conn.close

    if len(result) == 1:
        return (result[0]) if result else (None)
    elif len(result) == 2:        
        return (result[0], result[1]) if result else (None, None)
    
What boring-looking code, and where's the fucking swearing?

It is boring but is now callable, and depending on the parameters will return up to two values. Unlike many other languages Python allows separate values to be passed back to the function call, it's one aspect I really like about it.

		# Test # 1 - Are you a Self-Voting Motherfucker? - How greedy can you be?
        # Gets the Self-Voting Percentage
        SQLCommand = f'''
        SELECT 
        ROUND(
                FLOOR((CAST(SUM(CASE WHEN voter = author THEN weight ELSE 0 END) AS FLOAT) 
                / CAST(SUM(weight) AS FLOAT)) * 1000 * 100) / 1000, 2
        ) AS self_vote_percentage
        FROM txvotes
        WHERE 
            voter = '{account}' 
            AND weight > 0 
            AND timestamp > GETDATE() - 7;
            '''            

        self_vote_percentage = get_hiveSQL_data(SQLCommand, connection_string)

When the call is like this, it makes a little more sense, much more...

	connection_string = pypyodbc.connect(
	    f'Driver={{ODBC Driver 18 for SQL Server}};'
	    f'Server=vip.hivesql.io;'
	    f'Database=DBHive;'
	    f'TrustServerCertificate=yes;'
	    f'uid=Hive-{mainaccount};'
	    f'pwd={sql_password}'
	)

conection_string only needs to be defined once, and so is close to the top of the script within the declarations area.

	import pypyodbc

	def get_self_vote_percentage(account): 

    conn = pypyodbc.connect(
        'Driver={ODBC Driver 18 for SQL Server};'
        'Server=vip.hivesql.io;'
        'Database=DBHive;'
        'TrustServerCertificate=yes;'
        'uid=Hive-username;'
        'pwd=password'
    )
    
    cursor = conn.cursor()

    SQLCommand = f'''
    SELECT 
    ROUND(
        FLOOR((CAST(SUM(CASE WHEN voter = author THEN weight ELSE 0 END) AS FLOAT) 
        / CAST(SUM(weight) AS FLOAT)) * 1000 * 100) / 1000, 2
    ) AS self_vote_percentage
    FROM txvotes
    WHERE 
        voter = '{account}' 
        AND weight > 0 
        AND timestamp > GETDATE() - 7;
    '''

    cursor = conn.cursor()
    cursor.execute(SQLCommand)
    result = cursor.fetchone()
    cursor.close
    conn.close

    return result[0]

	account = "greedy"
	self_vote_percentage = get_self_vote_percentage(account)
	print(f' Account {account} has a self-vote percentage of {self_vote_percentage}%')

To make it easier for you to use this yourself (above), I isolated the whole routine so it can be modified to your needs.

Replace 'greedy' with an account of your choice, and change the name and password to your credentials.

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

Adding the routine to the HIVE Voting BOT was not a big deal. I have completely rewritten it and made it a lot more modular than the abomination that @felixxx once cast his eyes on about a year ago. 

It was time for some fun, and I was pleasantly surprised at the amount of accounts that didn't self-vote at all.

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

First, declare some cut-off values, there's little left to the imagination here.

.. and then running it in anger which is always fun. It picked up just two authors who like to vote themselves a little more than they should and the BOT does not hold back.

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

Nothing personal to this user..., quit the self-voting and it will forget about you in a week, and you might just get votes again. It has a short-lived memory and is completely non judgemental... honest!

Another routine added; I think I might just give all the 0% self-voters authors a bonus of 1. 

Lastly... this function is no slouch, it's rapid!

![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 621 others
properties (23)
authorslobberchops
permlinkpython-libraries-self-vote-checking-the-fast-version
categoryhive-163521
json_metadata"{"app":"peakd/2025.2.3","format":"markdown","description":"...'FREE Votes up for grabs, what can be better than that?'...","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":["gwajnberg","steddyman","felixxx"],"image":["https://files.peakd.com/file/peakd-hive/slobberchops/23t78uMBWZF39zdb9yzMK9DxgJx2bwM3G2Tbxm6C41ZPrUAYXQYT2hBkgezWpvvkkvcWU.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tcP5UHCsU3mfXsjEjSV7caQCjxrYQ2CEkEooX3BvaF9RuTfPZFL2whS1w3Q7wUZm6VR.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tcP5UHFJVbcF9fPit4FjtP5RS27tvYfusWM4L5GaDmwvZCwKtjSTjPBiAHj8iPj5stH.png","https://files.peakd.com/file/peakd-hive/slobberchops/Eo42wHDche2APunuRsLbBaTeAG6hsf28bnQZATuUFR3GAfbbokimpCFgw38wJh5nNWf.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/Eo6CGRLPkou3ZytNyzqCAB6iFCVZdkwqcpTXEYsErkc8uTnfgLP1kEjuiLtZVvDmVVk.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/Eo1uZJTRxBWUAfRRVQCfBatwfkUCmjkWECzFm1G9Ke3xrjVc2y7RXGDmBVeFD7tdHZf.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23tbkz42cJ8HwULaL9SPMgb78qc5GL7ZBfC4nrsp2sk8ytmsQa4NJAhupa8zpu19gUgZ1.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg","https://steemitimages.com/DQmNfnfWNzzjZDZ7b1PukhSHLgL5g55apzyDpT4Jp7dP2CH/Drooling%20Maniac.JPG"]}"
created2025-03-07 23:06:03
last_update2025-03-07 23:06:03
depth0
children70
last_payout2025-03-14 23:06:03
cashout_time1969-12-31 23:59:59
total_payout_value38.344 HBD
curator_payout_value38.264 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,790
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,421
net_rshares234,940,335,353,815
author_curate_reward""
vote details (685)
@bitcoinflood ·
$0.07
It's been so long since I really touched code deep :( lol AI is making it easier.
👍  
properties (23)
authorbitcoinflood
permlinkre-slobberchops-202537t183524301z
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-07 23:35:21
last_update2025-03-07 23:35:21
depth1
children1
last_payout2025-03-14 23:35:21
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation1,645,024,977,979,240
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,802
net_rshares207,446,831,870
author_curate_reward""
vote details (1)
@slobberchops ·
>lol AI is making it easier.

Lots of professional coders use it now, speeds things up no end. If only I could find a curmudgeon flavoured one, that would make my day 😃..
👍  
properties (23)
authorslobberchops
permlinkre-bitcoinflood-sss1mf
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:37:30
last_update2025-03-07 23:37:30
depth2
children0
last_payout2025-03-14 23:37: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_length170
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,830
net_rshares0
author_curate_reward""
vote details (1)
@blkchn ·
I don't like the selfvoting here, but there are not too many users which do that.
I think it is milking the chain.
properties (22)
authorblkchn
permlinkre-slobberchops-ssz59l
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-11 19:39:21
last_update2025-03-11 19:39:21
depth1
children0
last_payout2025-03-18 19:39: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_length114
author_reputation68,832,359,610,176
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,367,378
net_rshares0
@bozz ·
$0.07
SQL is pretty cool once you get the hang of it.  I kind of wish I had spent more time on it back in University.  I think I could have made a pretty good career of it. I need to set up some voting routines myself to try and spread my vote around a bit more.
👍  
properties (23)
authorbozz
permlinkre-slobberchops-sss0ux
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:20:57
last_update2025-03-07 23:20:57
depth1
children2
last_payout2025-03-14 23:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation2,256,590,119,468,466
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,614
net_rshares207,418,829,277
author_curate_reward""
vote details (1)
@slobberchops ·
$0.03
I find it very abstract, but am slowly getting there. There could be a lot more I could do if I could conjure up scripts quickly... esp. concerning abuse. It's one aspect I will be focusing one more soon.
👍  ,
properties (23)
authorslobberchops
permlinkre-bozz-sss128
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-07 23:25:24
last_update2025-03-07 23:25:24
depth2
children1
last_payout2025-03-14 23:25:24
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,677
net_rshares92,403,287,772
author_curate_reward""
vote details (2)
@bozz ·
Looking forward to seeing what you come up with!
properties (22)
authorbozz
permlinkre-slobberchops-sss1ov
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:38:54
last_update2025-03-07 23:38:54
depth3
children0
last_payout2025-03-14 23:38: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_length48
author_reputation2,256,590,119,468,466
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,844
net_rshares0
@bpcvoter1 ·
**“@themarkymark: Your Scam Farm Empire with @buildawhale Exposed—When Will You Stop Destroying Hive?”**  

**Meta Description:**  
Bilpcoin uncovers @themarkymark’s abuse of Hive’s reward system through @buildawhale’s scam farm. The evidence shows years of corruption funded by @blocktrades’ delegations.  

---

### **To @themarkymark:**  
You’ve had **years** to change your ways, yet you continue to exploit Hive’s reward system. Let’s break it down:  

---

### **1. The Evidence Against You**  
The blockchain doesn’t lie. Here’s how you’ve been abusing Hive:  

#### **a. @buildawhale’s Daily Grift**  
- **Curation Rewards from Spam Posts:**  
  Over the past **2 hours**, @buildawhale generated **over 270 HP** for spam posts like [this](https://peakd.com/@buildawhale/comments).  

- **Total Power:**  
  **2.4M HP** delegated from @blocktrades—**97% borrowed, not earned**. [Wallet Proof](https://peakd.com/@buildawhale/wallet).  

#### **b. Self-Voting and Alt Abuse**  
- **Self-Voting Farming:**  
  You use alts like @buildawhale to self-vote and siphon rewards away from honest creators.  
  - Example: [“re-1741792202180795986”](https://peakd.com/@buildawhale/comments) was voted on by @buildawhale with **100%**.  

#### **c. Years of Corruption:**  
From vote selling to scam farming, your abuse has gone unchecked.  

---

### **2. @blocktrades’ Role in Enabling Scams**  
Why does @blocktrades delegate **2.3M HP** to @buildawhale?  

- **Delegation Breakdown:**  
  - @blocktrades: **2,342,257 HP** (since Aug 16, 2020).  
  - @nwjordan: **24 HP** (since May 27, 2018).  
- **Impact on Hive:**  
  These delegations fund spam farms, centralize power, and steal rewards from creators.  

---

### **3. The Hypocrisy: “Spam Fighter” vs. Scam Farmer**  
You claim to care about Hive, yet:  
- **Enable Scam Farms:** @buildawhale floods the blockchain with spam comments.  
- **Exploit Poor Users:** Use vulnerable creators to promote Hive while silencing critics.  
- **Contribute Nothing:** Your posts lack substance, yet you attack those exposing corruption.  

**The Irony:**  
You lecture about morality while enabling scams. Transactions don’t lie—**you’re part of the problem**.  

---

### **4. The Community’s Wake-Up Call**  
Hive’s integrity is at stake. Every curation reward from @buildawhale’s bot votes:  
- **Steals from creators.**  
- **Centralizes power.**  
- **Normalizes abuse.**  

**Action Steps:**  
1. **Audit the Scam:** Check [@buildawhale’s activity log](https://peakd.com/@buildawhale/comments) for spam comments.  
2. **Demand Accountability:** Ask @blocktrades why he funds scam farms.  
3. **Spread Awareness:** Share this post and tag honest users.  

---

### **Final Message to @themarkymark:**  
Keep pretending you care about Hive while enabling and operating scam farms. The blockchain has already recorded:  
- Your **2.4M HP scam farm**.  
- Your silence on [our exposés](https://hive.blog/hive-167922/@bpcvoter3/unveiling-the-hive-transactions-of-eddiespino).  
[Find all our exposés](https://hive.blog/@bpcvoter3/posts)

**The Truth Hurts:**  
You’re a puppet for scam farms. We’re here to fight for Hive’s integrity.  

**#HiveBlockchain #ScamFarmsExposed #DownvoteCartel #Bilpcoin #BlockchainTruth**  

- 

**Transactions don’t lie.** The evidence is here—[investigate it](https://hive.blog/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain).  

Sincerely,  
The Bilpcoin Team  

https://www.publish0x.com/the-dark-side-of-hive/at-themarkymark-your-scam-farm-empire-with-at-buildawhale-ex-xwvlrxk
properties (22)
authorbpcvoter1
permlinkst0u30
categoryhive-163521
json_metadata{"tags":["scamfarmsexposed","downvotecartel","bilpcoin","blockchaintruth"],"users":["themarkymark","buildawhale","blocktrades","nwjordan"],"links":["https://peakd.com/@buildawhale/comments"],"app":"hiveblog/0.1"}
created2025-03-12 17:31:12
last_update2025-03-12 17:31:12
depth1
children0
last_payout2025-03-19 17:31:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,600
author_reputation-19,821,572,986,738
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,387,284
net_rshares0
@bpcvoter3 ·
>Wow, love this post  It’s been handpicked and curated by the awesome Bilpcoin team—we’re so happy to support amazing content like this! If you’d like to join us in spreading the positivity, feel free to delegate some Hive Power to this account. Every bit helps us curate and uplift even more creators in the community By adding #bilpcoin or #bpc to original posts, you can earn BPC tokens

By adding #bilpcoin or #bpc to original posts, you can earn BPC tokens
<a href="https://imgflip.com/i/9m7cuw"><img src="https://i.imgflip.com/9m7cuw.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div>

https://peakd.com/hive-140084/@bpcvoter1/my-way-keni-bpc-ai-music

https://peakd.com/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as

 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

https://peakd.com/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions

https://hive.blog/hive-163521/@bpcvoter1/deep-dive-into-meritocracy-s-activity-history-and-blockchain-audit

!PGM !LUV !BEER !PIZZA
properties (22)
authorbpcvoter3
permlinksst70k
categoryhive-163521
json_metadata{"tags":["bilpcoin","bpc"],"image":["https://i.imgflip.com/9m7cuw.jpg"],"links":["https://imgflip.com/i/9m7cuw"],"app":"hiveblog/0.1"}
created2025-03-08 14:29:48
last_update2025-03-08 14:29:48
depth1
children0
last_payout2025-03-15 14:29: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_length1,294
author_reputation-6,640,123,274,996
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,290,176
net_rshares0
@captaindingus ·
$0.07
Dang buddy, 

Your brain works very different than mine - I can't understand code for crap... 

The human body, easy peasy.

People... ready like a book.

Code... DV$G^QV^EEV$% meep morp... wtf?!?

Hahahaha nice work though and great post - stirred up a lot of convo!
👍  
properties (23)
authorcaptaindingus
permlinkre-slobberchops-ssyecm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-11 09:58:06
last_update2025-03-11 09:58:06
depth1
children1
last_payout2025-03-18 09:58:06
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_length267
author_reputation206,361,314,485,146
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,355,124
net_rshares206,778,611,129
author_curate_reward""
vote details (1)
@slobberchops ·
$0.10
It takes a certain mindset, not everyone can cope with code!
👍  
properties (23)
authorslobberchops
permlinkre-captaindingus-ssyixw
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-11 11:37:09
last_update2025-03-11 11:37:09
depth2
children0
last_payout2025-03-18 11:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,356,829
net_rshares306,492,867,247
author_curate_reward""
vote details (1)
@danzocal ·
!PIZZA
properties (22)
authordanzocal
permlinkre-slobberchops-ssu2k4
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-09 01:52:54
last_update2025-03-09 01:52:54
depth1
children0
last_payout2025-03-16 01:52: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_length6
author_reputation12,432,803,008,396
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,301,987
net_rshares0
@dari-s ·
Are you a programmer? What would you have to study to know about codes as well as you do?
properties (22)
authordari-s
permlinkre-slobberchops-stmstx
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-24 14:13:09
last_update2025-03-24 14:13:09
depth1
children0
last_payout2025-03-31 14:13: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_length89
author_reputation2,118,919,677,010
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,647,593
net_rshares0
@finpulse ·
$0.07
This blog has a lot of coding stuff that is hard to understand for me. 

I would like to be added to THE SLOBBERCHOPS WHITELIST however I am not sure if I am eligible being a newbie. My vote has no value atm but in future, it will have. I read in a few blogs that most people don't like self-voting and my mentor also told me about it. I would never do this as well and  I find hive such a great place in crypto and web3 world. 
👍  ,
properties (23)
authorfinpulse
permlinkre-slobberchops-ssslgv
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 06:46:03
last_update2025-03-08 06:46:03
depth1
children4
last_payout2025-03-15 06:46:03
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_length429
author_reputation45,822,527,555,590
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,283,480
net_rshares219,018,551,136
author_curate_reward""
vote details (2)
@slobberchops ·
I actually added you around a week ago, but as your account is < 90 days old, the BOT will by-pass your posts. But you are in there for the future.

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

>My vote has no value atm but in future, it will have.

Once upon a time, my didn't either. Build it up over time, and buy some HIVE if you want to speed things.. like I did in March 2018 on joining.
👍  
properties (23)
authorslobberchops
permlinkre-finpulse-sssp5o
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 08:05:48
last_update2025-03-08 08:05:48
depth2
children3
last_payout2025-03-15 08:05: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_length491
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,273
net_rshares0
author_curate_reward""
vote details (1)
@finpulse ·
$0.07
> I actually added you around a week ago

Oh wow, thanks a ton for this and I didn't even know this. I have got so many gifts and good surprises on hive so just love this place. 

I am planning to buy Hive and SPS coins soon. You will see me talking about my purchase soon. In fact, my research says that hive is down by 90% approx so a good time to bag some coins. I am going to start by buying soon and this is my long-term planning here.

So much new stuff is here for me and I am learning as much as I can. Thanks again for this kind gesture and I wish you a fabulous weekend. 
👍  ,
properties (23)
authorfinpulse
permlinkre-slobberchops-ssspfr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 08:11:48
last_update2025-03-08 08:11:48
depth3
children2
last_payout2025-03-15 08:11:48
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_length581
author_reputation45,822,527,555,590
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,339
net_rshares219,120,699,435
author_curate_reward""
vote details (2)
@gtg ·
$0.23
> DISCLAIMER: Self-voting is a personal preference. 

I always vote for my posts myself. It was default back in the days that you vote for your own posts, until it was considered sub-optimal because of the reverse-auction anti-bot protection during first minutes of posts' life. 
Actually enforcing self votes at the blockchain level could bring interesting counter-intuitive results; those who will spam with posts looking for rewards, will strip themselves from potential curation rewards, as most likely not only their self votes will be countered, but also there will be no voting power left for other "safe bet" curation reward targets.
👍  
properties (23)
authorgtg
permlinkssv0h3
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-09 14:05:27
last_update2025-03-09 14:05:27
depth1
children2
last_payout2025-03-16 14:05:27
cashout_time1969-12-31 23:59:59
total_payout_value0.116 HBD
curator_payout_value0.116 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length641
author_reputation461,806,510,899,194
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,310,527
net_rshares684,341,373,100
author_curate_reward""
vote details (1)
@slobberchops ·
> Actually enforcing self votes at the blockchain level 

I don't much like the consequences of your theory, so when the next hard fork arrives, please get distracted listening to 'Kahsmir' if this enters your head.

Speaking of.., are we going to have another HF, it's been a long time.
properties (22)
authorslobberchops
permlinkre-gtg-ssve48
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-09 19:00:09
last_update2025-03-09 19:00:09
depth2
children1
last_payout2025-03-16 19:00: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_length287
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,316,482
net_rshares0
@gtg ·
$0.09
:-D 
Well, when it comes to HF, there are no pressing issues to be fixed, improved by the HF, however we have lots of small HF-required stacked and idk, as always - matter of consensus. The most problematic thing about HF is that it has to be coordinated, accepted and deployed by the exchanges, and as much as we all love upgrades, it has it's non-zero costs (time/effort) for all interested parties. We will see how things goes in Core Dev meeting tomorrow.
👍  ,
properties (23)
authorgtg
permlinkssvgfp
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2025-03-09 19:50:12
last_update2025-03-09 19:50:12
depth3
children0
last_payout2025-03-16 19:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.044 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length459
author_reputation461,806,510,899,194
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,317,164
net_rshares262,817,954,083
author_curate_reward""
vote details (2)
@gwajnberg ·
$0.07
 Hive-SQL is nice ... I hope that it continues to be available for all the users like it is right now for 1 HBD (very cheap). 
One criticism that I have is that it is built on MS SQL server, why not doing it in PostgreSQL? Installing the ODBC Driver is so annoying (or I am too grumpy).  I have used my whole life PostgreSQL and there are some syntax differences that I only usually notice when the query continues to get a bad answer from the server hehe. 


👍  
properties (23)
authorgwajnberg
permlinkre-slobberchops-sss0xo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:22:39
last_update2025-03-07 23:22:39
depth1
children4
last_payout2025-03-14 23:22:39
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length460
author_reputation369,595,575,160,628
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,636
net_rshares207,432,054,284
author_curate_reward""
vote details (1)
@slobberchops ·
It's not especially my strong point, hence the semi-fruitless chat I had with AI. I don't see it as a big job to convert, it's something you can probably use, and requires minimal changes. 

@mahdiyari runs a free node, so you could check that, I don't know what flavour of SQL he's running.
👍  ,
properties (23)
authorslobberchops
permlinkre-gwajnberg-sss194
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-07 23:29:30
last_update2025-03-07 23:29:30
depth2
children3
last_payout2025-03-14 23:29: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_length291
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,713
net_rshares55,934,478,868
author_curate_reward""
vote details (2)
@gwajnberg ·
$0.07
for sure AI can help...sometimes I chat to ask about ideas to solve some problems, what I used to do before, just "asking"  to google. 

Yeah I will check that for sure! thanks!
👍  
properties (23)
authorgwajnberg
permlinkre-slobberchops-sss1e8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-07 23:32:36
last_update2025-03-07 23:32:36
depth3
children2
last_payout2025-03-14 23:32:36
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation369,595,575,160,628
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,773
net_rshares207,503,340,279
author_curate_reward""
vote details (1)
@hannes-stoffel ·
$0.07
Nice work. I like those insights into other coders' minds. Helps me a lot.

Is your bot code public somewhere?
👍  ,
properties (23)
authorhannes-stoffel
permlinkre-slobberchops-sssp1t
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 08:03:33
last_update2025-03-08 08:03:33
depth1
children1
last_payout2025-03-15 08:03:33
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_length110
author_reputation46,651,126,065,071
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,253
net_rshares219,004,912,682
author_curate_reward""
vote details (2)
@slobberchops ·
>Is your bot code public somewhere?

It's not, maybe one day I will release it on github.
👍  
properties (23)
authorslobberchops
permlinkre-hannes-stoffel-ssspbm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 08:09:24
last_update2025-03-08 08:09:24
depth2
children0
last_payout2025-03-15 08:09:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,319
net_rshares0
author_curate_reward""
vote details (1)
@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-1741389849
categoryhive-163521
json_metadata"{"tags": ["hive-163521"], "app": "HiveDiscoMod"}"
created2025-03-07 23:24:09
last_update2025-03-07 23:24:09
depth1
children0
last_payout2025-03-14 23: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_length1,446
author_reputation123,305,688,959,381
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,658
net_rshares0
@jonatftforest ·
$0.07
So does self voting disqualify me from this? I was told years ago that it didn't matter so I vote on my content as soon as I post it
👍  ,
properties (23)
authorjonatftforest
permlinkre-slobberchops-sst01m
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 12:01:00
last_update2025-03-08 12:01:00
depth1
children2
last_payout2025-03-15 12:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length132
author_reputation64,896,222,561,128
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,287,339
net_rshares206,648,300,702
author_curate_reward""
vote details (2)
@slobberchops ·
In your case yes, but it only looks at the last 7 days, not forever so that could change.

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

Your KE ratio would also disallow votes.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23zSQTDTEtvaZ4u4SAQavKkTvjjagK9qA8ZLQe8a54nwYZvntvUms4t8fdZLyFYf3BFrd.png)
👍  ,
properties (23)
authorslobberchops
permlinkre-jonatftforest-sst2qh
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 12:59:09
last_update2025-03-08 12:59:09
depth2
children1
last_payout2025-03-15 12:59: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_length415
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,288,507
net_rshares13,455,830,557
author_curate_reward""
vote details (2)
@jonatftforest ·
That's good to know, I'll stop self voting and follow
👍  
properties (23)
authorjonatftforest
permlinkre-slobberchops-sst3el
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 13:13:33
last_update2025-03-08 13:13:33
depth3
children0
last_payout2025-03-15 13:13:33
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_length53
author_reputation64,896,222,561,128
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,288,722
net_rshares0
author_curate_reward""
vote details (1)
@lightofhope ·
$0.07
>Would you like to be whitelisted and eligible for votes by me?

YES
👍  ,
properties (23)
authorlightofhope
permlinkre-slobberchops-202538t65753706z
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-07 23:57:57
last_update2025-03-07 23:57:57
depth1
children2
last_payout2025-03-14 23:57: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_length68
author_reputation54,938,541,672,933
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,279,064
net_rshares222,387,428,178
author_curate_reward""
vote details (2)
@slobberchops ·
I don't see an issue with your account, .. added.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t7FMQXvnwhVfbvWAv3B57Cw4qD5t8hpyemSfsawcmJiHbSSjmAAEJ2QxMYirUPwC2TP.png)
👍  ,
properties (23)
authorslobberchops
permlinkre-lightofhope-sssoce
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:48:15
last_update2025-03-08 07:48:15
depth2
children1
last_payout2025-03-15 07:48: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_length192
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,105
net_rshares0
author_curate_reward""
vote details (2)
@lightofhope ·
Thanks very much 
👍  
properties (23)
authorlightofhope
permlinkre-slobberchops-202538t153545809z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.2.0-vision","format":"markdown+html"}
created2025-03-08 08:35:48
last_update2025-03-08 08:35:48
depth3
children0
last_payout2025-03-15 08:35: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_length17
author_reputation54,938,541,672,933
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,581
net_rshares0
author_curate_reward""
vote details (1)
@livinguktaiwan ·
$0.17
I'm so glad there are so many kind hearted and clever ~~nerds~~ techies around who can help on Hive 
👍  ,
properties (23)
authorlivinguktaiwan
permlinkre-slobberchops-sss3is
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 00:18:27
last_update2025-03-08 00:18:27
depth1
children1
last_payout2025-03-15 00:18:27
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation1,668,769,050,718,645
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,279,284
net_rshares518,910,897,042
author_curate_reward""
vote details (2)
@slobberchops ·
It's more a question of.., '*who do I vote for*'.., a sad case of affairs. Can we get just two or three from the mountains of new accounts who ditch HIVE after a few months who might become Orca's.

'*What mountains?*'.. you say..

Maybe hillocks in todays world..
👍  
properties (23)
authorslobberchops
permlinkre-livinguktaiwan-sssohq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:51:27
last_update2025-03-08 07:51:27
depth2
children0
last_payout2025-03-15 07:51: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_length264
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,141
net_rshares0
author_curate_reward""
vote details (1)
@maiasun84 ·
$0.07


Still this codes still seems like a complex universe.However, this post shows certain shortcuts to learn about it and I thank you very much
👍  ,
properties (23)
authormaiasun84
permlinkre-slobberchops-202537t193341220z
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-08 00:33:42
last_update2025-03-08 00:33:42
depth1
children0
last_payout2025-03-15 00:33:42
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_length142
author_reputation38,075,347,702,665
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,279,499
net_rshares222,063,709,994
author_curate_reward""
vote details (2)
@makerhacks ·
$0.07
> THE SLOBBERCHOPS WHITELIST

Would make a good name for a prog rock band 🤭
👍  
properties (23)
authormakerhacks
permlinkre-slobberchops-sss0nm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:16:36
last_update2025-03-07 23:16:36
depth1
children3
last_payout2025-03-14 23:16:36
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation156,478,986,501,043
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,545
net_rshares207,480,301,198
author_curate_reward""
vote details (1)
@slobberchops ·
I am partial to prog, could be a memorable band name?
👍  ,
properties (23)
authorslobberchops
permlinkre-makerhacks-sss0r9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-07 23:18:48
last_update2025-03-07 23:18:48
depth2
children2
last_payout2025-03-14 23:18: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_length53
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,574
net_rshares48,135,268,318
author_curate_reward""
vote details (2)
@makerhacks ·
Even better, `THE SLOBBERCHOPS WHITELIST PROJECT`
properties (22)
authormakerhacks
permlinkre-slobberchops-sss0ve
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:21:15
last_update2025-03-07 23:21:15
depth3
children1
last_payout2025-03-14 23:21: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_length49
author_reputation156,478,986,501,043
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,618
net_rshares0
@meesterboom ·
$0.17
Ah the self voting arses!

I like to think I all a dab hand at SQL but that query you have is something else!
👍  ,
👎  
properties (23)
authormeesterboom
permlinkre-slobberchops-sss2bf
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:52:30
last_update2025-03-07 23:52:30
depth1
children1
last_payout2025-03-14 23:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.084 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation1,789,767,497,362,806
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,279,001
net_rshares518,104,920,198
author_curate_reward""
vote details (3)
@slobberchops ·
It was a lot larger until I cut out all the blurb I didn't need. For a call via Python, you just need the pertinent data and not all that other stuff like what's the data called etc.., that's for queries running through the likes of Linqpad, which is what I use to develop them.
👍  
properties (23)
authorslobberchops
permlinkre-meesterboom-sssndt
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:27:30
last_update2025-03-08 07:27:30
depth2
children0
last_payout2025-03-15 07:27: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_length278
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,283,902
net_rshares0
author_curate_reward""
vote details (1)
@oadissin ·
Interesting code.
I love to play around with this automation available in python Hive library.
Can you share a report on the lucky hivian who got upvotes from the bot?
Also figures on the percentage that was not consider or remove over the period of the bot service.
Thank you
properties (22)
authoroadissin
permlinkre-slobberchops-202539t1462862z
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-09 13:06:03
last_update2025-03-09 13:06:03
depth1
children0
last_payout2025-03-16 13:06: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_length277
author_reputation459,912,289,725,359
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,309,394
net_rshares0
@olaf.gui ·
Add me please!
👍  
properties (23)
authorolaf.gui
permlinkre-slobberchops-sssta0
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 09:34:48
last_update2025-03-08 09:34:48
depth1
children2
last_payout2025-03-15 09:34: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_length14
author_reputation214,382,345,739,214
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,285,135
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops · (edited)
You are going to have to up the quality of your posts before I do that. Do they add anything, make people laugh, increase our knowledge, or are they just about you and your increasing assets?

I see many posts like yours, and they add no value whatsoever.
👍  
properties (23)
authorslobberchops
permlinkre-olafgui-ssstwd
categoryhive-163521
json_metadata{"tags":"hive-163521"}
created2025-03-08 09:48:15
last_update2025-03-08 09:48:27
depth2
children1
last_payout2025-03-15 09:48: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_length255
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,285,232
net_rshares0
author_curate_reward""
vote details (1)
@olaf.gui ·
I think they are useful for Splinterlands players. But other people can have a different opinion, that's ok. Thanks anyway.
👍  
properties (23)
authorolaf.gui
permlinkre-slobberchops-sssw0m
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 10:33:57
last_update2025-03-08 10:33:57
depth3
children0
last_payout2025-03-15 10:33: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_length123
author_reputation214,382,345,739,214
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,285,664
net_rshares0
author_curate_reward""
vote details (1)
@pizzabot ·
<center>PIZZA!


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


</center>
properties (22)
authorpizzabot
permlinkre-python-libraries-self-vote-checking-the-fast-version-20250309t015343z
categoryhive-163521
json_metadata"{"app": "pizzabot"}"
created2025-03-09 01:53:42
last_update2025-03-09 01:53:42
depth1
children0
last_payout2025-03-16 01:53: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_length102
author_reputation7,539,280,605,993
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,302,004
net_rshares0
@pusen ·
$0.07
Cool initiative! I started learning coding around a year ago for work and it's made my professional life so much easier. This reminds me I should be implementing a few things to my personal and digital life as well.
👍  ,
properties (23)
authorpusen
permlinkre-slobberchops-sst4vo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 13:45:27
last_update2025-03-08 13:45:27
depth1
children0
last_payout2025-03-15 13:45:27
cashout_time1969-12-31 23:59:59
total_payout_value0.033 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation519,133,963,444,204
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,289,311
net_rshares204,486,888,135
author_curate_reward""
vote details (2)
@reachdreams ·
>Would you like to be whitelisted and eligible for votes by me?

I want to join this list
properties (22)
authorreachdreams
permlinkre-slobberchops-202539t203411169z
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-09 13:34:12
last_update2025-03-09 13:34:12
depth1
children0
last_payout2025-03-16 13:34:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation122,245,441,583,068
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,310,040
net_rshares0
@redditposh ·
$0.10
https://www.reddit.com/r/coding/comments/1j65fxi/python_libraries_selfvote_checking_the_fast/
<sub> The rewards earned on this comment will go directly to the people( @vixmemon ) sharing the post on Reddit as long as they are registered with @poshtoken. Sign up at https://hiveposh.com. Otherwise, rewards go to the author of the blog post.</sub>
👍  , ,
properties (23)
authorredditposh
permlinkre-slobberchops-python-libraries-self-vote-checking-the-fast-versi13914
categoryhive-163521
json_metadata"{"app":"Poshtoken 0.0.2","payoutToUser":["vixmemon"]}"
created2025-03-08 01:04:21
last_update2025-03-08 01:04:21
depth1
children0
last_payout2025-03-15 01:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.096 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length347
author_reputation2,240,698,612,790,241
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries
0.
accountnomnomnomnom
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id141,279,883
net_rshares586,413,806,209
author_curate_reward""
vote details (3)
@rimess ·
That's awesome 
👍  
properties (23)
authorrimess
permlinkre-slobberchops-202538t93524130z
categoryhive-163521
json_metadata{"type":"comment","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"}
created2025-03-08 08:35:24
last_update2025-03-08 08:35:24
depth1
children0
last_payout2025-03-15 08:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation86,658,145,010
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,578
net_rshares0
author_curate_reward""
vote details (1)
@russia-btc ·
$0.07
Yes - I would like you to add me to your list


![98a3c9a5de0669d196b11a3d88c83815_h-246.gif](https://files.peakd.com/file/peakd-hive/russia-btc/23tvVh1soMotgrmuKTfRRDorPK3pb6Z6eBQ8brAfJfzQ3FnAJsFSdKeXW811hnW3NEEY5.gif)
👍  ,
properties (23)
authorrussia-btc
permlinkre-slobberchops-sssdp3
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/russia-btc/23tvVh1soMotgrmuKTfRRDorPK3pb6Z6eBQ8brAfJfzQ3FnAJsFSdKeXW811hnW3NEEY5.gif"],"users":[]}
created2025-03-08 03:58:18
last_update2025-03-08 03:58:18
depth1
children4
last_payout2025-03-15 03:58:18
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_length220
author_reputation57,707,308,681,904
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,281,931
net_rshares222,092,974,829
author_curate_reward""
vote details (2)
@slobberchops ·
I would be happy to, but as your account stands now, it won't vote you due to your delegation preferences. Added in case anything changes.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23z7dVjGgdpJpM7Sc8BdEsVSQvKDA6wQYKtzP9uPf9T3MzffKGeL4dRxoaNvtAEZZaqfY.png)
👍  ,
properties (23)
authorslobberchops
permlinkre-russia-btc-sssox9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 08:00:48
last_update2025-03-08 08:00:48
depth2
children3
last_payout2025-03-15 08:00: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_length281
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,219
net_rshares17,103,769,610
author_curate_reward""
vote details (2)
@russia-btc ·
I understand you - but is it bad to delegate to various interesting communities? (probably I don't understand something) - in any case, thanks for answering
👍  
properties (23)
authorrussia-btc
permlinkre-slobberchops-202538t192843518z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-08 12:28:45
last_update2025-03-08 12:28:45
depth3
children2
last_payout2025-03-15 12:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length156
author_reputation57,707,308,681,904
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,287,826
net_rshares0
author_curate_reward""
vote details (1)
@seattlea ·
Glad I learned that self voting is not OK :) 
👍  
properties (23)
authorseattlea
permlinkre-slobberchops-202538t0128811z
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-08 08:01:30
last_update2025-03-08 08:01:30
depth1
children1
last_payout2025-03-15 08:01: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_length45
author_reputation289,949,906,630,967
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,232
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops · (edited)
It's a debatable topic, and much like everything else on a platform based around anarchy, everyone has their opinions. People will notice that you vote for yourself and that vote intended for you, may go elsewhere if they think like me.. or not!
👍  
properties (23)
authorslobberchops
permlinkre-seattlea-sssp9o
categoryhive-163521
json_metadata{"app":"peakd/2025.2.3","tags":["hive-163521"]}
created2025-03-08 08:08:15
last_update2025-03-08 08:11:51
depth2
children0
last_payout2025-03-15 08:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,303
net_rshares0
author_curate_reward""
vote details (1)
@shmoogleosukami ·
$0.07
It's been a good while since I've fiddled with anything SQL, even then it was only rather simple stuff like managed account data and post data for websites.

That being said I will be diving into it again soon™ when it becomes needed for some of my projects that are in the works and should be done soon™

👍  ,
properties (23)
authorshmoogleosukami
permlinkre-slobberchops-sss223
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-07 23:46:51
last_update2025-03-07 23:46:51
depth1
children1
last_payout2025-03-14 23:46:51
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_length306
author_reputation225,980,385,157,719
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,939
net_rshares221,809,713,075
author_curate_reward""
vote details (2)
@slobberchops ·
$0.05
There's a lot you can do with HIVE-SQL, it's adding the correct parameters to get what you need. I will be brushing up on it, but will avoid using it in the BOT when I can call the condenser (or BEEM at a push) API's.., unless they slow things down.
👍  ,
properties (23)
authorslobberchops
permlinkre-shmoogleosukami-sssmqc
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:13:27
last_update2025-03-08 07:13:27
depth2
children0
last_payout2025-03-15 07:13:27
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,283,795
net_rshares155,793,131,006
author_curate_reward""
vote details (2)
@steevc ·
$0.39
I'm no fan of self-voting, so I can put me off supporting people, especially if they have a big stake.

Python f-strings are great and so much better than the old methods they had to get variables into a string. I did loads of SQL at my last job, so I love HiveSQL. It's easy to test queries. I use a thing called dbeaver on Linux for that. Then I can add them into my code.
👍  ,
properties (23)
authorsteevc
permlinkre-slobberchops-sstp59
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-08 21:03:09
last_update2025-03-08 21:03:09
depth1
children2
last_payout2025-03-15 21:03:09
cashout_time1969-12-31 23:59:59
total_payout_value0.196 HBD
curator_payout_value0.196 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length374
author_reputation1,381,239,946,078,004
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,297,755
net_rshares1,180,470,791,488
author_curate_reward""
vote details (2)
@bpcvoter1 ·
**“@themarkymark: Your Scam Farm Empire with @buildawhale Exposed—When Will You Stop Destroying Hive?”**  

**Meta Description:**  
Bilpcoin uncovers @themarkymark’s abuse of Hive’s reward system through @buildawhale’s scam farm. The evidence shows years of corruption funded by @blocktrades’ delegations.  

---

### **To @themarkymark:**  
You’ve had **years** to change your ways, yet you continue to exploit Hive’s reward system. Let’s break it down:  

---

### **1. The Evidence Against You**  
The blockchain doesn’t lie. Here’s how you’ve been abusing Hive:  

#### **a. @buildawhale’s Daily Grift**  
- **Curation Rewards from Spam Posts:**  
  Over the past **2 hours**, @buildawhale generated **over 270 HP** for spam posts like [this](https://peakd.com/@buildawhale/comments).  

- **Total Power:**  
  **2.4M HP** delegated from @blocktrades—**97% borrowed, not earned**. [Wallet Proof](https://peakd.com/@buildawhale/wallet).  

#### **b. Self-Voting and Alt Abuse**  
- **Self-Voting Farming:**  
  You use alts like @buildawhale to self-vote and siphon rewards away from honest creators.  
  - Example: [“re-1741792202180795986”](https://peakd.com/@buildawhale/comments) was voted on by @buildawhale with **100%**.  

#### **c. Years of Corruption:**  
From vote selling to scam farming, your abuse has gone unchecked.  

---

### **2. @blocktrades’ Role in Enabling Scams**  
Why does @blocktrades delegate **2.3M HP** to @buildawhale?  

- **Delegation Breakdown:**  
  - @blocktrades: **2,342,257 HP** (since Aug 16, 2020).  
  - @nwjordan: **24 HP** (since May 27, 2018).  
- **Impact on Hive:**  
  These delegations fund spam farms, centralize power, and steal rewards from creators.  

---

### **3. The Hypocrisy: “Spam Fighter” vs. Scam Farmer**  
You claim to care about Hive, yet:  
- **Enable Scam Farms:** @buildawhale floods the blockchain with spam comments.  
- **Exploit Poor Users:** Use vulnerable creators to promote Hive while silencing critics.  
- **Contribute Nothing:** Your posts lack substance, yet you attack those exposing corruption.  

**The Irony:**  
You lecture about morality while enabling scams. Transactions don’t lie—**you’re part of the problem**.  

---

### **4. The Community’s Wake-Up Call**  
Hive’s integrity is at stake. Every curation reward from @buildawhale’s bot votes:  
- **Steals from creators.**  
- **Centralizes power.**  
- **Normalizes abuse.**  

**Action Steps:**  
1. **Audit the Scam:** Check [@buildawhale’s activity log](https://peakd.com/@buildawhale/comments) for spam comments.  
2. **Demand Accountability:** Ask @blocktrades why he funds scam farms.  
3. **Spread Awareness:** Share this post and tag honest users.  

---

### **Final Message to @themarkymark:**  
Keep pretending you care about Hive while enabling and operating scam farms. The blockchain has already recorded:  
- Your **2.4M HP scam farm**.  
- Your silence on [our exposés](https://hive.blog/hive-167922/@bpcvoter3/unveiling-the-hive-transactions-of-eddiespino).  
[Find all our exposés](https://hive.blog/@bpcvoter3/posts)

**The Truth Hurts:**  
You’re a puppet for scam farms. We’re here to fight for Hive’s integrity.  

**#HiveBlockchain #ScamFarmsExposed #DownvoteCartel #Bilpcoin #BlockchainTruth**  

- 

**Transactions don’t lie.** The evidence is here—[investigate it](https://hive.blog/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain).  

Sincerely,  
The Bilpcoin Team  

https://www.publish0x.com/the-dark-side-of-hive/at-themarkymark-your-scam-farm-empire-with-at-buildawhale-ex-xwvlrxk
properties (22)
authorbpcvoter1
permlinkst0u36
categoryhive-163521
json_metadata{"tags":["scamfarmsexposed","downvotecartel","bilpcoin","blockchaintruth"],"users":["themarkymark","buildawhale","blocktrades","nwjordan"],"links":["https://peakd.com/@buildawhale/comments"],"app":"hiveblog/0.1"}
created2025-03-12 17:31:18
last_update2025-03-12 17:31:18
depth2
children0
last_payout2025-03-19 17:31: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_length3,600
author_reputation-19,821,572,986,738
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,387,285
net_rshares0
@slobberchops ·
$0.13
I am trying to brush up on SQL, it's quite different than your everyday interchangeable language.
👍  ,
properties (23)
authorslobberchops
permlinkre-steevc-ssve83
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-09 19:02:30
last_update2025-03-09 19:02:30
depth2
children0
last_payout2025-03-16 19:02:30
cashout_time1969-12-31 23:59:59
total_payout_value0.064 HBD
curator_payout_value0.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,316,514
net_rshares383,499,882,391
author_curate_reward""
vote details (2)
@vixmemon ·
$0.07
Nice job. I didnt know about Hive SQL’s existence. But seems like it could make a lot of things faster than what API is offering including the limits on fetching data…. 
Can you add my username into your bot? @vixmemon 
👍  ,
properties (23)
authorvixmemon
permlinkre-slobberchops-202537t185929795z
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-08 00:59:30
last_update2025-03-08 00:59:30
depth1
children1
last_payout2025-03-15 00:59:30
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_length219
author_reputation8,012,562,744,923
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,279,818
net_rshares222,111,293,390
author_curate_reward""
vote details (2)
@slobberchops ·
I surely can add you, for an old account you don't get much exposure? Your shorts will not get voted, but the longer content may get the BOT's attention.
👍  ,
properties (23)
authorslobberchops
permlinkre-vixmemon-sssork
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:57:21
last_update2025-03-08 07:57:21
depth2
children0
last_payout2025-03-15 07: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_length153
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,198
net_rshares5,757,108,802
author_curate_reward""
vote details (2)
@yoandry1212 ·
Interesting topic! Python libraries are powerful tools, and autovote verification can be helpful in maintaining transparency in online communities. If you're looking to streamline the process, Python is definitely a great option. Good choice! 
👍  
properties (23)
authoryoandry1212
permlinkre-slobberchops-202537t212556994z
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-08 02:25:57
last_update2025-03-08 02:25:57
depth1
children1
last_payout2025-03-15 02:25: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_length243
author_reputation223,785,466,177
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,280,863
net_rshares0
author_curate_reward""
vote details (1)
@slobberchops ·
> If you're looking to streamline the process, Python is definitely a great option. Good choice!

Yes, I thought so too.
👍  ,
properties (23)
authorslobberchops
permlinkre-yoandry1212-sssosm
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:58:00
last_update2025-03-08 07:58:00
depth2
children0
last_payout2025-03-15 07:58: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_length120
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,284,202
net_rshares0
author_curate_reward""
vote details (2)
@zekepickleman ·
$0.07
To me, all this looks about as tidy and presentable as a trip through nasty brambles and over barricades in to a perilous window left open, graffiti and fresh fire evidence with a chance of meeting a vagrant living there. 

I should stand on the sidewalk muttering something about calling the police on you lot. Fuckin urban explorers. 
👍  ,
properties (23)
authorzekepickleman
permlinkre-slobberchops-202537t185150660z
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 23:51:51
last_update2025-03-07 23:51:51
depth1
children1
last_payout2025-03-14 23:51:51
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_length336
author_reputation768,737,734,799,291
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,278,992
net_rshares221,736,328,058
author_curate_reward""
vote details (2)
@slobberchops ·
You just need your brain re-wiring.., that's all. Mine's wired for code and tripping over brambles.., which reminds me, I need to schedule a Sheffield UX trip soon with the boys.
👍  
properties (23)
authorslobberchops
permlinkre-zekepickleman-sssmtd
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2025.2.3"}
created2025-03-08 07:15:15
last_update2025-03-08 07:15:15
depth2
children0
last_payout2025-03-15 07:15: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_length178
author_reputation2,436,297,288,918,509
root_title"Python Libraries: Self-Vote Checking, The FAST Version!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,283,812
net_rshares0
author_curate_reward""
vote details (1)