  **...'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.  **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>  ...***'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.  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.  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.  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.  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!  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>    <center>  </center>  <div class="pull-left">  </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>
author | slobberchops |
---|---|
permlink | python-libraries-self-vote-checking-the-fast-version |
category | hive-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"]}" |
created | 2025-03-07 23:06:03 |
last_update | 2025-03-07 23:06:03 |
depth | 0 |
children | 70 |
last_payout | 2025-03-14 23:06:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 38.344 HBD |
curator_payout_value | 38.264 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,790 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,421 |
net_rshares | 234,940,335,353,815 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
flemingfarm | 0 | 56,031,659,473 | 9% | ||
leprechaun | 0 | 2,690,959,267 | 19.5% | ||
gtg | 0 | 1,628,828,434,332 | 3% | ||
ericvancewalton | 0 | 733,212,404,070 | 100% | ||
good-karma | 0 | 10,576,511,253 | 1% | ||
roelandp | 0 | 8,581,313,077 | 0.37% | ||
daan | 0 | 717,688,479,153 | 100% | ||
jeffjagoe | 0 | 151,331,589,139 | 25% | ||
meesterboom | 0 | 4,207,588,661,076 | 100% | ||
ubg | 0 | 40,826,080,348 | 100% | ||
ace108 | 0 | 588,455,660,965 | 12% | ||
sazbird | 0 | 19,476,501,572 | 100% | ||
alexpmorris | 0 | 412,967,768,696 | 100% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
shaka | 0 | 89,657,123,006 | 100% | ||
felixxx | 0 | 1,703,403,363,587 | 100% | ||
joele | 0 | 4,536,324,334 | 100% | ||
lemouth | 0 | 623,502,842,142 | 20% | ||
wisbeech | 0 | 12,688,224,212 | 100% | ||
steevc | 0 | 2,460,263,706,091 | 72% | ||
daveks | 0 | 1,825,841,267,727 | 35% | ||
penguinpablo | 0 | 140,268,805,875 | 14% | ||
uwelang | 0 | 998,582,158,475 | 30% | ||
kommienezuspadt | 0 | 4,184,166,492,947 | 100% | ||
jacobtothe | 0 | 1,287,983,062,052 | 75% | ||
petrvl | 0 | 239,540,468,507 | 20% | ||
seckorama | 0 | 199,133,563,914 | 50% | ||
funnyman | 0 | 1,424,091,755 | 5.6% | ||
rynow | 0 | 138,090,460,372 | 30% | ||
clayboyn | 0 | 9,869,743,946 | 12.5% | ||
lloyddavis | 0 | 18,909,115,562 | 75% | ||
gamer00 | 0 | 5,129,829,453 | 1.33% | ||
techslut | 0 | 10,051,342,074 | 1.5% | ||
discovereurovelo | 0 | 1,160,369,925 | 0.75% | ||
funnel | 0 | 13,659,264,134 | 20% | ||
esteemapp | 0 | 2,825,165,159 | 1% | ||
stefanialexis | 0 | 820,021,761 | 20% | ||
justinw | 0 | 5,067,485,100 | 0.99% | ||
saleg25 | 0 | 5,965,963,679 | 100% | ||
darth-azrael | 0 | 117,193,644,406 | 33% | ||
automaton | 0 | 1,191,373,289 | 100% | ||
michellectv | 0 | 276,071,008,802 | 100% | ||
darth-cryptic | 0 | 21,370,952,951 | 33% | ||
sudutpandang | 0 | 123,089,686 | 100% | ||
thereikiforest | 0 | 1,459,638,799 | 10% | ||
evildeathcore | 0 | 6,991,798,391 | 100% | ||
cosmictriage | 0 | 52,787,590,806 | 80% | ||
fronttowardenemy | 0 | 141,684,744,197 | 50% | ||
trafalgar | 0 | 51,243,208,823,785 | 100% | ||
itinerantph | 0 | 1,893,901,791 | 50% | ||
c0ff33a | 0 | 428,983,461,567 | 10% | ||
preparedwombat | 0 | 892,350,305,524 | 42% | ||
freebornsociety | 0 | 4,823,380,414 | 10% | ||
detlev | 0 | 2,229,918,828,100 | 100% | ||
dickturpin | 0 | 80,039,559,870 | 100% | ||
lizanomadsoul | 0 | 2,899,259,515 | 1.5% | ||
raindrop | 0 | 793,022,772,192 | 100% | ||
passion-fruit | 0 | 9,417,230,334 | 92% | ||
fortune-master | 0 | 8,576,731,392 | 92% | ||
smasssh | 0 | 934,532,960,472 | 20% | ||
morph | 0 | 1,571,038,980 | 12.5% | ||
cryptocurator | 0 | 5,151,796,450 | 25% | ||
schlees | 0 | 318,837,755,979 | 20% | ||
holm | 0 | 528,548,331 | 65% | ||
domo | 0 | 493,908,206 | 100% | ||
stackin | 0 | 1,866,310,022 | 25% | ||
jagged | 0 | 3,956,352,450 | 50% | ||
aleister | 0 | 8,841,752,015 | 10% | ||
ampm | 0 | 11,207,193,395 | 100% | ||
nrg | 0 | 523,867,115,257 | 100% | ||
sumatranate | 0 | 718,226,484,255 | 100% | ||
guiltyparties | 0 | 274,078,545,141 | 20% | ||
nuagnorab | 0 | 13,117,800,081 | 100% | ||
isaria | 0 | 15,586,715,381 | 25% | ||
elteamgordo | 0 | 25,239,762,171 | 100% | ||
tonyz | 0 | 652,991,856,637 | 56% | ||
trumpman | 0 | 2,885,535,290,716 | 100% | ||
bitcoinflood | 0 | 1,787,418,995,721 | 49% | ||
belahejna | 0 | 41,532,741,755 | 20% | ||
alphacore | 0 | 6,995,156,258 | 7.12% | ||
galenkp | 0 | 7,109,651,970,511 | 100% | ||
reddragonfly | 0 | 5,853,042,649 | 100% | ||
chinito | 0 | 9,423,813,854 | 72% | ||
krischy | 0 | 577,761,840 | 100% | ||
spectrumecons | 0 | 2,830,376,106,337 | 40% | ||
dswigle | 0 | 2,069,025,293,134 | 100% | ||
princessmewmew | 0 | 1,939,758,578 | 0.75% | ||
vieanna | 0 | 1,173,734,087 | 100% | ||
joeyarnoldvn | 0 | 4,165,731,855 | 12.27% | ||
papilloncharity | 0 | 3,262,903,387,493 | 80.5% | ||
jaraumoses | 0 | 9,739,780,934 | 100% | ||
ruth-girl | 0 | 57,825,803,009 | 100% | ||
livinguktaiwan | 0 | 2,005,125,133,546 | 50% | ||
toofasteddie | 0 | 292,768,931,010 | 35% | ||
bluemist | 0 | 24,170,415,290 | 9% | ||
molometer | 0 | 145,450,989,072 | 100% | ||
beautifulbullies | 0 | 1,107,673,073 | 43% | ||
travelgirl | 0 | 38,538,179,956 | 100% | ||
appreciator | 0 | 35,281,916,890,264 | 9% | ||
hairyfairy | 0 | 10,403,652,448 | 10% | ||
stayoutoftherz | 0 | 5,112,763,093,440 | 40% | ||
yanes94 | 0 | 344,081,984,585 | 50% | ||
sanjeevm | 0 | 3,840,589,279,660 | 70% | ||
bambukah | 0 | 44,432,541,282 | 50% | ||
cranium | 0 | 1,031,257,019 | 1.5% | ||
dine77 | 0 | 34,546,558,156 | 40% | ||
everrich | 0 | 1,959,059,270 | 100% | ||
leaky20 | 0 | 513,319,098,367 | 75% | ||
pocketrocket | 0 | 9,226,331,021 | 100% | ||
nicolemoker | 0 | 885,270,350 | 100% | ||
martibis | 0 | 13,429,933,351 | 50% | ||
buggedout | 0 | 4,855,600,877,353 | 100% | ||
chetanpadliya | 0 | 36,014,501,189 | 100% | ||
lizelle | 0 | 579,615,371,660 | 80% | ||
sharelovenothate | 0 | 456,038,579 | 20% | ||
tesaganewton | 0 | 20,024,344,131 | 50% | ||
shanibeer | 0 | 1,154,147,914,199 | 50% | ||
nuthman | 0 | 4,216,322,169,502 | 100% | ||
aafeng | 0 | 218,265,394,372 | 25% | ||
etblink | 0 | 132,784,009,276 | 12.5% | ||
nainaztengra | 0 | 647,147,703,177 | 50% | ||
noboxes | 0 | 1,326,511,894 | 50% | ||
floatinglin | 0 | 5,980,028,361 | 100% | ||
zirochka | 0 | 1,067,189,744,736 | 100% | ||
stoodkev | 0 | 7,303,730,135,757 | 70% | ||
noloafing | 0 | 5,943,254,287 | 100% | ||
kimzwarch | 0 | 20,124,364,675 | 5% | ||
artonmysleeve | 0 | 3,471,586,560 | 17.5% | ||
raj808 | 0 | 2,445,271,476 | 100% | ||
artlover | 0 | 2,073,232,225 | 100% | ||
revisesociology | 0 | 3,729,043,341,036 | 100% | ||
silversaver888 | 0 | 923,723,815,533 | 100% | ||
plantstoplanks | 0 | 65,286,964,230 | 14% | ||
rakkasan84 | 0 | 3,592,528,426 | 100% | ||
jlsplatts | 0 | 147,040,744,596 | 11.25% | ||
makerhacks | 0 | 177,492,467,102 | 100% | ||
sayee | 0 | 591,875,991 | 0.9% | ||
esteem.app | 0 | 342,909,824 | 1% | ||
m-san | 0 | 3,493,793,362 | 100% | ||
andywong31 | 0 | 1,163,398,974 | 100% | ||
ferod23 | 0 | 2,006,601,678 | 100% | ||
vegoutt-travel | 0 | 41,704,251,268 | 40% | ||
japanguide | 0 | 1,606,150,775 | 100% | ||
afterglow | 0 | 1,519,598,054 | 25% | ||
fulcrumleader | 0 | 8,128,580,453 | 100% | ||
dejan.vuckovic | 0 | 16,752,912,643 | 15% | ||
karinxxl | 0 | 64,855,421,387 | 50% | ||
devosdevosi | 0 | 1,142,966,077 | 100% | ||
mrhill | 0 | 34,761,904,939 | 70% | ||
sunsea | 0 | 272,315,398,299 | 100% | ||
zekepickleman | 0 | 813,111,801,435 | 100% | ||
emrebeyler | 0 | 1,316,778,943,808 | 20% | ||
irynochka | 0 | 7,338,861,938 | 100% | ||
katerinaramm | 0 | 243,334,429,324 | 100% | ||
xsasj | 0 | 2,059,105,333 | 1.5% | ||
travoved | 0 | 75,859,787,158 | 100% | ||
docmarenkristina | 0 | 790,897,589 | 50% | ||
armentor | 0 | 8,634,118,130 | 100% | ||
citizensmith | 0 | 25,682,240,021 | 100% | ||
traf | 0 | 4,367,233,395,244 | 100% | ||
b00m | 0 | 14,269,802,016 | 25% | ||
itchyfeetdonica | 0 | 549,067,259,774 | 70% | ||
prometehum | 0 | 1,041,370,202 | 100% | ||
nathen007 | 0 | 390,985,379,781 | 100% | ||
yousafharoonkhan | 0 | 35,868,227,666 | 20% | ||
breelikeatree | 0 | 233,799,955,522 | 100% | ||
sneakyninja | 0 | 4,737,378,461 | 6.66% | ||
steembasicincome | 0 | 1,593,304,744,159 | 26.77% | ||
wiseagent | 0 | 150,137,048,928 | 15% | ||
cryptonized | 0 | 235,109,543 | 14% | ||
phortun | 0 | 15,797,418,211 | 100% | ||
for91days | 0 | 105,919,151,080 | 100% | ||
kaerpediem | 0 | 676,450,393,410 | 100% | ||
gabrielatravels | 0 | 905,817,999 | 0.52% | ||
insideoutlet | 0 | 1,043,051,637 | 5% | ||
criptomaster | 0 | 4,821,671,375 | 100% | ||
leslierevales | 0 | 5,686,075,374 | 40.25% | ||
mermaidvampire | 0 | 2,184,508,683 | 100% | ||
amjadsharif | 0 | 1,251,505,019 | 20% | ||
manncpt | 0 | 3,006,346,776 | 1.5% | ||
soyrosa | 0 | 376,177,816,347 | 50% | ||
chorock | 0 | 420,314,193,900 | 30% | ||
minigunner | 0 | 3,127,920,581 | 100% | ||
dynamicrypto | 0 | 691,055,719 | 1% | ||
jnmarteau | 0 | 596,745,636 | 1.5% | ||
atongis | 0 | 30,797,382,720 | 10% | ||
tatdt | 0 | 176,919,443,461 | 100% | ||
fieryfootprints | 0 | 101,518,213,830 | 40% | ||
newageinv | 0 | 66,074,065,157 | 12.5% | ||
shaidon | 0 | 845,395,368 | 20% | ||
superstarxtala | 0 | 1,574,970,537 | 100% | ||
zephalexia | 0 | 1,739,886,444 | 100% | ||
adetorrent | 0 | 40,681,636,164 | 100% | ||
kkarenmp | 0 | 4,385,390,279 | 4.5% | ||
shmoogleosukami | 0 | 136,108,447,286 | 20% | ||
bigtom13 | 0 | 253,568,179,029 | 50% | ||
moeenali | 0 | 19,868,068,943 | 1% | ||
verhp11 | 0 | 26,498,893,326 | 70% | ||
anikys3reasure | 0 | 625,205,102 | 13.38% | ||
rubelynmacion | 0 | 44,616,503,843 | 100% | ||
onlavu | 0 | 53,849,976,437 | 100% | ||
bozz | 0 | 372,810,147,405 | 20% | ||
bertrayo | 0 | 5,901,541,257 | 4.5% | ||
movement19 | 0 | 11,549,854,575 | 40% | ||
saulos | 0 | 57,717,945,482 | 100% | ||
lisfabian | 0 | 0 | 0% | ||
jasonwaterfalls | 0 | 761,877,809 | 100% | ||
jjerryhan | 0 | 25,773,085,722 | 10% | ||
cryptictruth | 0 | 498,017,673,317 | 100% | ||
runningproject | 0 | 35,407,833,430 | 70% | ||
michelmake | 0 | 43,695,558,605 | 20% | ||
amigoponc | 0 | 11,466,164,017 | 100% | ||
almi | 0 | 346,703,666,423 | 59% | ||
backinblackdevil | 0 | 44,521,200,207 | 100% | ||
teutonium | 0 | 2,882,769,362 | 70% | ||
atreyuserver | 0 | 3,547,451,720 | 100% | ||
blockchainyouth | 0 | 75,793,743,676 | 100% | ||
oadissin | 0 | 233,985,418,808 | 100% | ||
erikah | 0 | 1,250,820,592,871 | 50% | ||
satren | 0 | 38,521,122,974 | 20% | ||
abwasserrohr | 0 | 3,453,188,297 | 100% | ||
steemitcolombia | 0 | 4,328,066,452 | 100% | ||
silverd510 | 0 | 17,726,843,927 | 75% | ||
immanuel94 | 0 | 2,649,517,756 | 100% | ||
ravenmus1c | 0 | 8,575,756,509 | 0.45% | ||
rivalzzz | 0 | 199,915,143,617 | 100% | ||
ronaldoavelino | 0 | 4,297,855,164 | 20% | ||
louis88 | 0 | 640,981,788,469 | 20% | ||
zaku | 0 | 12,482,779,909 | 9% | ||
reversehitler88 | 0 | 1,411,656,822 | 10% | ||
emotionalsea | 0 | 573,684,958 | 15% | ||
greddyforce | 0 | 1,509,107,924 | 0.75% | ||
jonatftforest | 0 | 27,224,333,915 | 100% | ||
ablaze | 0 | 378,445,915,686 | 100% | ||
radard | 0 | 7,769,544,038 | 100% | ||
flyerchen | 0 | 43,511,586,619 | 100% | ||
skyroad | 0 | 2,111,580,428 | 100% | ||
inciter | 0 | 6,920,145,971 | 9% | ||
allover | 0 | 1,272,022,312 | 50% | ||
asapers | 0 | 2,133,529,000 | 50% | ||
springlining | 0 | 24,672,188,068 | 100% | ||
cedricguillas | 0 | 282,577,929,231 | 70% | ||
saboin | 0 | 69,712,219,629 | 11% | ||
el-dee-are-es | 0 | 3,458,088,069 | 10% | ||
agmoore | 0 | 789,460,281,317 | 100% | ||
raorac | 0 | 1,301,649,939 | 35% | ||
yaraha | 0 | 3,257,129,798 | 20% | ||
beco132 | 0 | 9,666,796,688 | 54% | ||
solominer | 0 | 7,928,157,235,194 | 35% | ||
leomolina | 0 | 651,914,391 | 9% | ||
eii | 0 | 70,326,235,942 | 100% | ||
netzisde | 0 | 891,697,598 | 26.77% | ||
pladozero | 0 | 18,015,416,807 | 10% | ||
crimo | 0 | 504,646,486 | 10% | ||
nateaguila | 0 | 175,186,375,515 | 12% | ||
crypticat | 0 | 2,254,767,336 | 0.75% | ||
steemcampuk | 0 | 8,269,161,288 | 100% | ||
spamfarmer | 0 | 6,709,113,986 | 50% | ||
fernandosoder | 0 | 35,434,217,327 | 100% | ||
trentox | 0 | 461,719,659 | 100% | ||
steddyman | 0 | 2,461,124,789 | 100% | ||
frejafri | 0 | 1,932,991,271 | 5% | ||
ronbong | 0 | 1,217,606,767 | 100% | ||
kstop1 | 0 | 15,049,651,134 | 100% | ||
bububoomt | 0 | 1,425,037,788 | 26.77% | ||
gabrielrr17 | 0 | 594,742,349 | 10% | ||
dses | 0 | 57,596,854,246 | 80% | ||
soma909 | 0 | 848,207,164 | 100% | ||
digital.mine | 0 | 101,825,721,559 | 100% | ||
marenontherun | 0 | 9,398,879,224 | 35% | ||
mirrors | 0 | 7,049,955,037 | 100% | ||
aulia1993 | 0 | 633,545,800 | 11% | ||
bingbabe | 0 | 2,192,602,912 | 100% | ||
abcor | 0 | 10,365,841,619 | 100% | ||
carl05 | 0 | 53,945,153,466 | 100% | ||
gibic | 0 | 1,086,879,246 | 100% | ||
angelica7 | 0 | 183,173,976,570 | 50% | ||
thedailysneak | 0 | 6,271,542,759 | 6.66% | ||
schlunior | 0 | 21,093,339,351 | 20% | ||
rufruf | 0 | 769,904,655 | 100% | ||
lifeskills-tv | 0 | 9,642,247,520 | 20% | ||
pardinus | 0 | 44,314,452,685 | 10% | ||
steem.craft | 0 | 4,988,685,573 | 100% | ||
teamvn | 0 | 12,493,197,556 | 9.33% | ||
goblinknackers | 0 | 1,178,919,114,554 | 100% | ||
vixmemon | 0 | 20,768,384,989 | 70% | ||
randomgoodstuff | 0 | 1,632,136,844 | 50% | ||
tdas0 | 0 | 497,037,762 | 13.38% | ||
teampdx | 0 | 804,700,044 | 100% | ||
teamoregon | 0 | 1,147,340,989 | 100% | ||
bagpuss | 0 | 15,228,724,490 | 100% | ||
altonos | 0 | 472,785,823 | 10% | ||
pedrocanella | 0 | 812,282,729 | 20% | ||
gubbatv | 0 | 37,615,135,285 | 100% | ||
foodfightfriday | 0 | 14,472,574,666 | 12.5% | ||
upvoteshares | 0 | 98,939,376,357 | 20% | ||
babysavage | 0 | 2,413,105,900 | 13.32% | ||
ravensavage | 0 | 1,251,259,012 | 13.32% | ||
pet.society | 0 | 14,932,791,993 | 6% | ||
dosh | 0 | 808,327,447 | 20% | ||
ganjafarmers | 0 | 912,317,617 | 100% | ||
javier.dejuan | 0 | 780,608,657 | 100% | ||
unbiasedwriter | 0 | 767,531,774,485 | 100% | ||
kuku-splatts | 0 | 23,729,808,183 | 25% | ||
lion200 | 0 | 15,213,590,933 | 50% | ||
thevil | 0 | 845,159,940,867 | 100% | ||
kind.network | 0 | 3,870,365,611 | 100% | ||
gungunkrishu | 0 | 1,359,940,010,503 | 100% | ||
vasigo | 0 | 18,983,197,558 | 100% | ||
priyanarc | 0 | 65,459,900,034 | 50% | ||
sanjeev021 | 0 | 565,940,495 | 10% | ||
marianaemilia | 0 | 3,792,233,283 | 20% | ||
budapestguide | 0 | 543,310,314 | 50% | ||
cwow2 | 0 | 73,407,771,368 | 38% | ||
mistia | 0 | 7,046,867,416 | 100% | ||
buildingpies | 0 | 13,461,675,578 | 26.77% | ||
muneeb487 | 0 | 448,565,690 | 40% | ||
downunder-doctor | 0 | 592,185,504 | 100% | ||
myjob | 0 | 7,359,680,205 | 19% | ||
gudnius.comics | 0 | 5,891,033,787 | 100% | ||
maajaanaa | 0 | 1,134,426,549 | 20% | ||
nutfund | 0 | 4,721,599,903 | 100% | ||
dismayedworld | 0 | 1,226,040,514 | 100% | ||
masoom | 0 | 4,410,554,939 | 50% | ||
retrodroid | 0 | 12,128,220,057 | 33% | ||
wherein | 0 | 1,992,054,384 | 8% | ||
jacuzzi | 0 | 591,232,482 | 1.4% | ||
brucutu1 | 0 | 3,507,338,628 | 100% | ||
gomster | 0 | 944,547,969 | 10% | ||
cnstm | 0 | 9,465,249,341 | 8% | ||
whiterosecoffee | 0 | 14,130,803,301 | 5% | ||
pocoto | 0 | 3,545,442,278 | 100% | ||
josehany | 0 | 143,461,796,950 | 100% | ||
caribehub | 0 | 1,381,469,491 | 100% | ||
fusion.lover | 0 | 37,645,319,993 | 100% | ||
hungrybear | 0 | 622,799,153 | 14% | ||
sophieandhenrik | 0 | 11,054,738,372 | 50% | ||
wolffeys | 0 | 12,272,125,841 | 100% | ||
cryptofiloz | 0 | 22,398,761,168 | 14% | ||
russia-btc | 0 | 76,733,531,683 | 50% | ||
alenox | 0 | 573,583,528 | 4.5% | ||
rocketpower | 0 | 495,478,872 | 20% | ||
caaio | 0 | 748,110,299 | 20% | ||
photographercr | 0 | 1,100,389,149 | 20% | ||
wallvater | 0 | 1,088,671,735 | 20% | ||
coolsurfer | 0 | 3,590,051,425 | 100% | ||
libertycrypto27 | 0 | 705,268,821,478 | 80% | ||
helgalubevi | 0 | 9,360,282,048 | 25% | ||
minigame | 0 | 320,598,509,465 | 100% | ||
anjanida | 0 | 17,509,138,402 | 100% | ||
beerlover | 0 | 137,526,536,183 | 100% | ||
aboutheraklion | 0 | 1,079,904,941 | 50% | ||
bastter | 0 | 2,099,578,798 | 20% | ||
blumela | 0 | 2,000,772,320 | 0.5% | ||
qwerrie | 0 | 703,700,442,350 | 50% | ||
thebombkids | 0 | 26,351,163,878 | 100% | ||
leighscotford | 0 | 35,679,284,804 | 66% | ||
lut-studio | 0 | 2,202,025,591 | 50% | ||
ph1102 | 0 | 462,961,035,760 | 14% | ||
reggaesteem | 0 | 6,067,340,570 | 55.25% | ||
ezun1 | 0 | 438,978,195 | 100% | ||
farm1 | 0 | 303,554,856,547 | 100% | ||
amico.sports | 0 | 14,093,534,012 | 35% | ||
votebetting | 0 | 22,286,033,210 | 100% | ||
babytarazkp | 0 | 4,402,091,894 | 85% | ||
valerianis | 0 | 1,306,579,413 | 4.5% | ||
abh12345.ccoin | 0 | 497,944,825 | 100% | ||
soyunasantacruz | 0 | 60,565,495,769 | 100% | ||
the.lazy.panda | 0 | 668,946,725 | 10% | ||
sbi-tokens | 0 | 11,522,703,337 | 13.32% | ||
liaminit1 | 0 | 10,952,112,926 | 90% | ||
brutoken | 0 | 731,488,752 | 100% | ||
elianaicgomes | 0 | 3,169,296,181 | 7.5% | ||
whangster79 | 0 | 9,051,384,774 | 35% | ||
idig | 0 | 2,592,566,306 | 6.25% | ||
lynds | 0 | 633,207,308,412 | 100% | ||
urun | 0 | 9,732,085,475 | 100% | ||
bilpcoinbot | 0 | 4,861,313,499 | 100% | ||
stem.alfa | 0 | 3,181,722,566 | 50% | ||
urtrailer | 0 | 246,539,680,313 | 25% | ||
gigel2 | 0 | 264,848,395,859 | 100% | ||
jeremyowens9501 | 0 | 94,518,452,883 | 100% | ||
paulmp | 0 | 37,543,901,229 | 100% | ||
isaria-ccc | 0 | 939,041,436 | 25% | ||
therealyme | 0 | 224,902,817,600 | 15% | ||
chris-uk | 0 | 16,656,593,704 | 50% | ||
bilpcoin.pay | 0 | 545,576,959 | 10% | ||
tobago | 0 | 1,187,772,936 | 65% | ||
qwertm | 0 | 1,227,530,092 | 13.38% | ||
tatiana21 | 0 | 502,181,341 | 100% | ||
splatts | 0 | 69,496,259,184 | 12.5% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
stoodmonsters | 0 | 32,281,700,742 | 70% | ||
delilhavores | 0 | 1,725,140,294 | 9% | ||
bpcvoter | 0 | 0 | 100% | ||
gmlrecordz | 0 | 753,461,800 | 50% | ||
bpcvoter3 | 0 | 496,389,702 | 100% | ||
mvanhauten | 0 | 457,664,803 | 20% | ||
oblivioncubed | 0 | 101,026,902,347 | 100% | ||
journeyofanomad | 0 | 11,881,665,470 | 80% | ||
lacking | 0 | 11,963,824,230 | 100% | ||
gloriaolar | 0 | 32,966,506,955 | 30% | ||
kgsupport | 0 | 2,597,829,109 | 50% | ||
garlet-68 | 0 | 2,098,751,673 | 50% | ||
ugochill | 0 | 20,869,414,436 | 40% | ||
grindle | 0 | 392,217,822,757 | 61% | ||
nerdvana | 0 | 582,774,020 | 4.5% | ||
catanknight | 0 | 207,506,740 | 100% | ||
shinoxl | 0 | 16,900,095,105 | 100% | ||
hivebuzz | 0 | 7,754,268,904 | 3% | ||
hivewatchers | 0 | 2,191,164,335 | 55% | ||
pinmapple | 0 | 870,361,160 | 1.5% | ||
ykretz | 0 | 1,391,239,128 | 15% | ||
creativemary | 0 | 183,780,508,025 | 100% | ||
waiviolabs | 0 | 2,105,269,754 | 36% | ||
reggaejahm | 0 | 112,369,112,253 | 65% | ||
captainhive | 0 | 1,060,586,984,181 | 40% | ||
andrewmusic | 0 | 409,588,747 | 9% | ||
hivelist | 0 | 2,663,813,587 | 2.7% | ||
ninnu | 0 | 590,147,656 | 50% | ||
kiemis | 0 | 2,351,509,437 | 0.66% | ||
ecency | 0 | 387,256,842,580 | 1% | ||
discoveringarni | 0 | 18,483,096,081 | 15% | ||
noelyss | 0 | 1,584,936,404 | 4.5% | ||
teamuksupport | 0 | 7,324,869,449 | 5% | ||
moneyheist-sl | 0 | 3,238,573 | 100% | ||
lucianav | 0 | 1,589,754,607 | 4.5% | ||
dannewton | 0 | 174,020,551,728 | 28% | ||
archon-gov | 0 | 38,858,417,535 | 25% | ||
jelly13 | 0 | 8,401,385,033 | 85% | ||
hivebuilder | 0 | 4,902,103,436 | 100% | ||
gabilan55 | 0 | 662,288,147 | 4.5% | ||
jlphotographyart | 0 | 115,852,773,547 | 100% | ||
olaunlimited | 0 | 614,623,924 | 45% | ||
w-splatts | 0 | 24,236,643,741 | 25% | ||
mipiano | 0 | 545,795,727,670 | 50% | ||
ecency.stats | 0 | 365,940,243 | 1% | ||
earthsea | 0 | 10,368,273,132 | 28% | ||
recoveryinc | 0 | 52,901,392,314 | 80% | ||
brofund-pal | 0 | 2,688,083,592 | 100% | ||
aubryd | 0 | 48,100,896,738 | 100% | ||
liz.writes | 0 | 2,170,119,132 | 100% | ||
dying | 0 | 3,044,583,365 | 80% | ||
goliathus | 0 | 809,853,717 | 10% | ||
adedayoolumide | 0 | 738,505,918 | 100% | ||
noalys | 0 | 1,671,474,734 | 4.5% | ||
hive-168869 | 0 | 7,745,329,595 | 100% | ||
danzocal | 0 | 5,809,183,804 | 100% | ||
bluepluto | 0 | 1,990,772,044 | 50% | ||
lowlightart | 0 | 12,330,753,478 | 40% | ||
kattycrochet | 0 | 6,722,906,300 | 4.5% | ||
alex-rourke | 0 | 1,838,379,063,772 | 69% | ||
heruvim1978 | 0 | 1,599,981,116,851 | 100% | ||
fazendadolobo | 0 | 579,924,667 | 90% | ||
bulkathos | 0 | 84,126,735,691 | 100% | ||
meritocracy | 0 | 787,140,183,393 | 6% | ||
seuamiguto | 0 | 493,891,381 | 20% | ||
tehox | 0 | 96,777,855,331 | 100% | ||
edwing357 | 0 | 850,986,145 | 17.5% | ||
he-index | 0 | 30,264,564,383 | 15% | ||
druckado | 0 | 610,684,518 | 20% | ||
hive-129556 | 0 | 2,364,294,517 | 100% | ||
carlosro | 0 | 505,702,966 | 20% | ||
brucolac | 0 | 3,343,046,140 | 12% | ||
samrisso | 0 | 71,166,163,517 | 100% | ||
unclefunker | 0 | 1,642,620,737 | 100% | ||
whywhy | 0 | 128,374,683,631 | 100% | ||
sparker005 | 0 | 662,217,074 | 50% | ||
cryptosneeze | 0 | 1,472,397,969 | 2.5% | ||
cookaiss | 0 | 5,262,563,010 | 50% | ||
cbridges573 | 0 | 671,739,586 | 3.75% | ||
xrayman | 0 | 140,974,261,082 | 100% | ||
retaliatorr | 0 | 3,013,685,948 | 100% | ||
nj07 | 0 | 7,427,830,765 | 100% | ||
emsenn0 | 0 | 489,273,867 | 2.66% | ||
tomtothetom | 0 | 5,429,188,451 | 35% | ||
biglove | 0 | 1,249,738,555 | 25% | ||
mapetoke | 0 | 522,004,650 | 100% | ||
wend1go | 0 | 14,384,565,689 | 100% | ||
cryptoniusrex | 0 | 26,507,806,410 | 100% | ||
khushboo108 | 0 | 1,307,148,550 | 10% | ||
jane1289 | 0 | 159,681,539,791 | 75% | ||
dendendenden | 0 | 6,816,749,999 | 100% | ||
power-kappe | 0 | 644,185,494 | 9% | ||
reidenling90 | 0 | 9,081,787,720 | 100% | ||
hive.friends | 0 | 925,550,317 | 50% | ||
holovision.cash | 0 | 0 | 100% | ||
hjrrodriguez | 0 | 53,148,671,429 | 100% | ||
dividendencheck | 0 | 8,967,605,726 | 76% | ||
quiubi | 0 | 3,775,092,486 | 20% | ||
farpetrad | 0 | 87,632,037,765 | 100% | ||
fotomaglys | 0 | 3,819,552,442 | 4.5% | ||
seryi13 | 0 | 984,732,173 | 6.3% | ||
holovision.stem | 0 | 1,000,526,374 | 50% | ||
bulldog1205 | 0 | 986,422,679 | 12.5% | ||
cesarsj5 | 0 | 687,317,155 | 9% | ||
amberkashif | 0 | 54,741,199,608 | 40% | ||
ayesha-malik | 0 | 6,299,613,915 | 50% | ||
dubble | 0 | 334,561,449,162 | 100% | ||
t-nil | 0 | 1,155,400,399 | 20% | ||
aprasad2325 | 0 | 1,670,779,748 | 4.5% | ||
dungeondog | 0 | 14,882,392,699 | 20% | ||
ischmieregal | 0 | 7,149,202,192 | 20% | ||
irivers | 0 | 0 | 100% | ||
lyon-89 | 0 | 6,770,999,996 | 100% | ||
trezzahn | 0 | 44,919,783,978 | 100% | ||
mjvdc | 0 | 10,830,455,543 | 100% | ||
geom | 0 | 9,886,698,670 | 100% | ||
tanzil2024 | 0 | 351,205,179,031 | 80% | ||
alfrin | 0 | 6,186,324,255 | 100% | ||
vitoragnelli | 0 | 512,914,329 | 100% | ||
chirho | 0 | 459,876,015 | 90% | ||
mosin-nagant | 0 | 3,185,820,354 | 100% | ||
aequi | 0 | 31,178,744,076 | 70% | ||
adulruna | 0 | 717,567,488 | 20% | ||
emd012 | 0 | 516,532,512 | 10% | ||
acantoni | 0 | 4,788,405,175 | 17.5% | ||
hkinuvaime | 0 | 1,007,430,665 | 10% | ||
snaqz | 0 | 870,123,320 | 100% | ||
marsupia | 0 | 1,711,525,358 | 50% | ||
malhy | 0 | 1,577,291,724 | 4.5% | ||
mimi.ruby | 0 | 145,478,841,684 | 70% | ||
white-walker-13 | 0 | 1,314,404,002 | 100% | ||
qyses | 0 | 467,037,136 | 18% | ||
kojiri | 0 | 649,686,742 | 10% | ||
irregular-n | 0 | 6,546,067,130 | 80% | ||
ingi1976 | 0 | 11,253,687,682 | 50% | ||
eolianpariah2 | 0 | 15,169,734,583 | 4.5% | ||
kesonaichi | 0 | 464,170,326 | 100% | ||
we-support-hive | 0 | 583,283,671 | 100% | ||
buzzgoblin | 0 | 456,468,392 | 50% | ||
arc7icwolf | 0 | 354,511,370,300 | 100% | ||
tengolotodo | 0 | 68,542,013,710 | 25% | ||
mengao | 0 | 798,796,196,186 | 100% | ||
relf87 | 0 | 45,317,958,234 | 50% | ||
gaposchkin | 0 | 10,577,253,173 | 100% | ||
krakatice | 0 | 1,977,219,273 | 100% | ||
captaindingus | 0 | 335,934,550,146 | 100% | ||
lobaobh | 0 | 751,454,445 | 12% | ||
jpleron | 0 | 761,581,578 | 20% | ||
elfino28 | 0 | 1,450,263,207 | 14% | ||
svanbo | 0 | 92,045,660,747 | 50% | ||
bteim | 0 | 8,607,177,899 | 50% | ||
crypt0gnome | 0 | 57,359,632,754 | 50% | ||
unitmaster | 0 | 23,690,740,419 | 100% | ||
highfist | 0 | 800,841,603 | 10% | ||
wellingt556 | 0 | 24,081,158,180 | 100% | ||
heteroclite | 0 | 3,923,160,523 | 6.25% | ||
lichtkunstfoto | 0 | 13,813,179,625 | 9% | ||
santacruz.sports | 0 | 1,579,725,263 | 100% | ||
ak08 | 0 | 7,823,318,479 | 40% | ||
hivepakistan | 0 | 1,071,133,874,651 | 40% | ||
vindiesel1980 | 0 | 504,610,435 | 0.75% | ||
the-pockets | 0 | 709,509,084 | 12.5% | ||
gwajnberg | 0 | 143,075,370,970 | 100% | ||
littlebee4 | 0 | 115,871,617,408 | 24% | ||
killerwot | 0 | 141,401,482,798 | 80% | ||
janitzearratia | 0 | 34,390,595,770 | 50% | ||
nicklewis | 0 | 3,704,300,895 | 10% | ||
der.merlin | 0 | 782,358,518 | 20% | ||
ripusun | 0 | 26,490,881,759 | 100% | ||
surrealis | 0 | 61,366,013,728 | 100% | ||
dub-c | 0 | 837,938,963 | 100% | ||
hannes-stoffel | 0 | 23,515,731,486 | 100% | ||
fernandoylet | 0 | 5,729,584,486 | 100% | ||
houhou | 0 | 41,307,279,592 | 100% | ||
sabosuke | 0 | 1,705,085,475 | 100% | ||
misticogama | 0 | 5,724,146,504 | 20% | ||
mesk | 0 | 1,203,205,982 | 10% | ||
shawnnft | 0 | 7,071,406,577 | 4% | ||
amazot2 | 0 | 7,797,984,491 | 100% | ||
dragonmk47 | 0 | 13,057,340,891 | 10% | ||
cimmeron | 0 | 1,560,093,857 | 6.25% | ||
ieyasu | 0 | 828,230,211 | 100% | ||
visionarystudios | 0 | 2,557,245,166 | 25% | ||
franzpaulie | 0 | 49,721,706,700 | 100% | ||
strava2hive | 0 | 81,853,879,296 | 100% | ||
lordshah | 0 | 25,389,627,532 | 58.6% | ||
coldbeetrootsoup | 0 | 2,878,700,256,143 | 100% | ||
santoka | 0 | 302,174,476 | 100% | ||
becca-mac | 0 | 260,659,203,041 | 100% | ||
tzae | 0 | 730,611,131 | 100% | ||
brutus22 | 0 | 1,832,645,666 | 64% | ||
revise.spk | 0 | 814,432,197 | 100% | ||
idksamad78699 | 0 | 6,529,664,548 | 20% | ||
giorgakis | 0 | 4,809,858,613 | 50% | ||
xerox94 | 0 | 3,536,857,838 | 100% | ||
faiza34 | 0 | 1,545,464,986 | 20% | ||
fashtioluwa | 0 | 7,577,014,594 | 20% | ||
deggial | 0 | 7,396,067,562 | 20% | ||
canellov | 0 | 674,890,368 | 10% | ||
pinkchic | 0 | 717,727,287 | 2.25% | ||
mishkatfatima | 0 | 476,698,182 | 20% | ||
insanejane | 0 | 8,227,376,376 | 100% | ||
lhes | 0 | 135,948,780,147 | 100% | ||
charmingcherry | 0 | 3,528,054,532 | 100% | ||
daudmuhammad2022 | 0 | 429,264,138 | 96% | ||
jhero22 | 0 | 36,675,310,587 | 98% | ||
celestegray | 0 | 33,284,246,323 | 50% | ||
hive-132595 | 0 | 2,019,290,940 | 100% | ||
fredaig | 0 | 2,592,716,874 | 28% | ||
cryptomother | 0 | 6,543,089,896 | 50% | ||
megstarbies | 0 | 478,390,928 | 25% | ||
gubbahomestead | 0 | 46,523,362,263 | 100% | ||
emma-h | 0 | 95,114,677,355 | 100% | ||
cards4rent | 0 | 7,070,103,525 | 50% | ||
hive-195880 | 0 | 1,476,509,400 | 35% | ||
ukrajpoot | 0 | 3,180,154,488 | 20% | ||
tiffanny | 0 | 3,385,437,760 | 100% | ||
dovycola | 0 | 6,468,590,825 | 100% | ||
kerokus | 0 | 13,859,963,982 | 100% | ||
lu1sa | 0 | 3,086,511,088 | 10% | ||
dahpilot | 0 | 3,678,864,495 | 10% | ||
hive-173296 | 0 | 4,220,762,886 | 50% | ||
gollumkp | 0 | 2,419,435,930 | 20% | ||
pit3r | 0 | 3,493,866,926 | 20% | ||
szejq | 0 | 145,255,827,777 | 70% | ||
y3ssi | 0 | 3,362,236,830 | 20% | ||
hive-bounty | 0 | 462,909,213 | 20% | ||
flowtrader | 0 | 7,794,171,234 | 100% | ||
creativecuisine | 0 | 118,755,477,701 | 50% | ||
strega.azure | 0 | 77,171,278,539 | 100% | ||
foodchunk | 0 | 10,840,507,602 | 12% | ||
tahastories1 | 0 | 665,715,886 | 4.5% | ||
reachdreams | 0 | 77,116,513,405 | 100% | ||
thezyppi | 0 | 5,845,376,200 | 20% | ||
les90 | 0 | 866,150,998 | 20% | ||
briefmarken | 0 | 11,772,007,284 | 26.77% | ||
wallay | 0 | 353,465,856 | 20% | ||
ismartboy | 0 | 897,147,895 | 20% | ||
ecency.waves | 0 | 0 | 1% | ||
tattooworld | 0 | 68,724,487,756 | 100% | ||
emma-h2 | 0 | 38,976,705,819 | 100% | ||
fredaa | 0 | 1,269,829,893 | 20% | ||
yummycruz1 | 0 | 806,085,791 | 4.5% | ||
actaylor | 0 | 2,772,664,320 | 20% | ||
literal | 0 | 50,991,318,448 | 100% | ||
hive-lu | 0 | 311,047,827,570 | 69.84% | ||
lifeisajourney | 0 | 791,718,371 | 72% | ||
like2cbrs | 0 | 1,202,382,452 | 100% | ||
flourishandflora | 0 | 2,358,398,305 | 20% | ||
eddyss | 0 | 36,624,567,907 | 100% | ||
hive-180658 | 0 | 946,846,772 | 50% | ||
captainman | 0 | 1,526,731,397 | 20% | ||
mdrguez | 0 | 44,048,008,640 | 100% | ||
cur8 | 0 | 770,940,219,304 | 20% | ||
kathrynkw | 0 | 24,229,342,691 | 50% | ||
monzo | 0 | 1,922,687,677 | 40% | ||
thisisbaris | 0 | 101,249,564,661 | 30% | ||
justtheway | 0 | 18,086,944,881 | 100% | ||
ladyaryastark | 0 | 597,812,040 | 15% | ||
uyoho | 0 | 421,070,307 | 20% | ||
tebesc | 0 | 5,206,103,686 | 6.25% | ||
cbrsphilanthropy | 0 | 81,264,672,786 | 100% | ||
blackalas | 0 | 1,164,109,841 | 35% | ||
bipolar95 | 0 | 3,239,948,713 | 10% | ||
hadianoor | 0 | 6,804,323,974 | 40% | ||
lightofhope | 0 | 16,217,191,988 | 100% | ||
setpiece | 0 | 971,052,772 | 100% | ||
bellscoin | 0 | 714,185,029 | 25% | ||
learn2code | 0 | 1,155,970,575 | 50% | ||
sylvasticks | 0 | 537,343,012 | 20% | ||
excellenthurt | 0 | 0 | 100% | ||
vaclavs | 0 | 3,467,047,853 | 70% | ||
rostik924 | 0 | 37,629,326,024 | 42% | ||
abilitysend | 0 | 0 | 100% | ||
profwhitetower | 0 | 35,027,266,078 | 100% | ||
tecnotronics | 0 | 29,322,583,895 | 100% | ||
hivelife-pl | 0 | 23,085,016,499 | 70% | ||
sw-kleymer | 0 | 2,579,721,498 | 100% | ||
menny.trx | 0 | 527,206,283 | 10% | ||
pakx | 0 | 775,712,876,882 | 40% | ||
niazi5352 | 0 | 1,421,845,087 | 100% | ||
konquest | 0 | 3,819,248,952 | 100% | ||
fusionwealth | 0 | 830,817,798 | 100% | ||
applejane | 0 | 10,454,568,944 | 100% | ||
ryanaa | 0 | 20,573,405,477 | 100% | ||
michael561 | 0 | 788,952,842 | 2.66% | ||
maiasun84 | 0 | 7,511,137,837 | 100% | ||
arshadkhan4421 | 0 | 1,097,236,729 | 50% | ||
maroy | 0 | 2,594,440,440,597 | 100% | ||
longhunter | 0 | 891,454,807 | 100% | ||
finpulse | 0 | 3,726,532,753 | 100% | ||
mininovitch | 0 | 144,993,791 | 51% | ||
muzaffar4844 | 0 | 0 | 100% |
It's been so long since I really touched code deep :( lol AI is making it easier.
author | bitcoinflood |
---|---|
permlink | re-slobberchops-202537t183524301z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-03-07 23:35:21 |
last_update | 2025-03-07 23:35:21 |
depth | 1 |
children | 1 |
last_payout | 2025-03-14 23:35:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 1,645,024,977,979,240 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,802 |
net_rshares | 207,446,831,870 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 207,446,831,870 | 3% |
>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 😃..
author | slobberchops |
---|---|
permlink | re-bitcoinflood-sss1mf |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:37:30 |
last_update | 2025-03-07 23:37:30 |
depth | 2 |
children | 0 |
last_payout | 2025-03-14 23:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,830 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
I don't like the selfvoting here, but there are not too many users which do that. I think it is milking the chain.
author | blkchn |
---|---|
permlink | re-slobberchops-ssz59l |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-11 19:39:21 |
last_update | 2025-03-11 19:39:21 |
depth | 1 |
children | 0 |
last_payout | 2025-03-18 19:39:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 68,832,359,610,176 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,367,378 |
net_rshares | 0 |
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.
author | bozz |
---|---|
permlink | re-slobberchops-sss0ux |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:20:57 |
last_update | 2025-03-07 23:20:57 |
depth | 1 |
children | 2 |
last_payout | 2025-03-14 23:20:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 2,256,590,119,468,466 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,614 |
net_rshares | 207,418,829,277 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 207,418,829,277 | 3% |
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.
author | slobberchops |
---|---|
permlink | re-bozz-sss128 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-07 23:25:24 |
last_update | 2025-03-07 23:25:24 |
depth | 2 |
children | 1 |
last_payout | 2025-03-14 23:25:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 204 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,677 |
net_rshares | 92,403,287,772 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bozz | 0 | 92,403,287,772 | 5% | ||
bpcvoter | 0 | 0 | 100% |
Looking forward to seeing what you come up with!
author | bozz |
---|---|
permlink | re-slobberchops-sss1ov |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:38:54 |
last_update | 2025-03-07 23:38:54 |
depth | 3 |
children | 0 |
last_payout | 2025-03-14 23:38:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 2,256,590,119,468,466 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,844 |
net_rshares | 0 |
**“@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
author | bpcvoter1 |
---|---|
permlink | st0u30 |
category | hive-163521 |
json_metadata | {"tags":["scamfarmsexposed","downvotecartel","bilpcoin","blockchaintruth"],"users":["themarkymark","buildawhale","blocktrades","nwjordan"],"links":["https://peakd.com/@buildawhale/comments"],"app":"hiveblog/0.1"} |
created | 2025-03-12 17:31:12 |
last_update | 2025-03-12 17:31:12 |
depth | 1 |
children | 0 |
last_payout | 2025-03-19 17:31:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,600 |
author_reputation | -19,821,572,986,738 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,387,284 |
net_rshares | 0 |
>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
author | bpcvoter3 |
---|---|
permlink | sst70k |
category | hive-163521 |
json_metadata | {"tags":["bilpcoin","bpc"],"image":["https://i.imgflip.com/9m7cuw.jpg"],"links":["https://imgflip.com/i/9m7cuw"],"app":"hiveblog/0.1"} |
created | 2025-03-08 14:29:48 |
last_update | 2025-03-08 14:29:48 |
depth | 1 |
children | 0 |
last_payout | 2025-03-15 14:29:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,294 |
author_reputation | -6,640,123,274,996 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,290,176 |
net_rshares | 0 |
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!
author | captaindingus |
---|---|
permlink | re-slobberchops-ssyecm |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-11 09:58:06 |
last_update | 2025-03-11 09:58:06 |
depth | 1 |
children | 1 |
last_payout | 2025-03-18 09:58:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 267 |
author_reputation | 206,361,314,485,146 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,355,124 |
net_rshares | 206,778,611,129 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 206,778,611,129 | 3% |
It takes a certain mindset, not everyone can cope with code!
author | slobberchops |
---|---|
permlink | re-captaindingus-ssyixw |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-11 11:37:09 |
last_update | 2025-03-11 11:37:09 |
depth | 2 |
children | 0 |
last_payout | 2025-03-18 11:37:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.051 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,356,829 |
net_rshares | 306,492,867,247 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
captaindingus | 0 | 306,492,867,247 | 100% |
!PIZZA
author | danzocal |
---|---|
permlink | re-slobberchops-ssu2k4 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-09 01:52:54 |
last_update | 2025-03-09 01:52:54 |
depth | 1 |
children | 0 |
last_payout | 2025-03-16 01:52:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,301,987 |
net_rshares | 0 |
Are you a programmer? What would you have to study to know about codes as well as you do?
author | dari-s |
---|---|
permlink | re-slobberchops-stmstx |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.3.5","image":[],"users":[]} |
created | 2025-03-24 14:13:09 |
last_update | 2025-03-24 14:13:09 |
depth | 1 |
children | 0 |
last_payout | 2025-03-31 14:13:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 2,118,919,677,010 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,647,593 |
net_rshares | 0 |
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.
author | finpulse |
---|---|
permlink | re-slobberchops-ssslgv |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 06:46:03 |
last_update | 2025-03-08 06:46:03 |
depth | 1 |
children | 4 |
last_payout | 2025-03-15 06:46:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 429 |
author_reputation | 45,822,527,555,590 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,283,480 |
net_rshares | 219,018,551,136 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 219,018,551,136 | 3% | ||
bpcvoter | 0 | 0 | 100% |
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.  >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.
author | slobberchops |
---|---|
permlink | re-finpulse-sssp5o |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 08:05:48 |
last_update | 2025-03-08 08:05:48 |
depth | 2 |
children | 3 |
last_payout | 2025-03-15 08:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 491 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,273 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
> 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.
author | finpulse |
---|---|
permlink | re-slobberchops-ssspfr |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 08:11:48 |
last_update | 2025-03-08 08:11:48 |
depth | 3 |
children | 2 |
last_payout | 2025-03-15 08:11:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 581 |
author_reputation | 45,822,527,555,590 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,339 |
net_rshares | 219,120,699,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 219,120,699,435 | 3% | ||
bpcvoter | 0 | 0 | 100% |
> 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.
author | gtg |
---|---|
permlink | ssv0h3 |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-03-09 14:05:27 |
last_update | 2025-03-09 14:05:27 |
depth | 1 |
children | 2 |
last_payout | 2025-03-16 14:05:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.116 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 641 |
author_reputation | 461,806,510,899,194 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,310,527 |
net_rshares | 684,341,373,100 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 684,341,373,100 | 10% |
> 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.
author | slobberchops |
---|---|
permlink | re-gtg-ssve48 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-09 19:00:09 |
last_update | 2025-03-09 19:00:09 |
depth | 2 |
children | 1 |
last_payout | 2025-03-16 19:00:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,316,482 |
net_rshares | 0 |
:-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.
author | gtg |
---|---|
permlink | ssvgfp |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-03-09 19:50:12 |
last_update | 2025-03-09 19:50:12 |
depth | 3 |
children | 0 |
last_payout | 2025-03-16 19:50:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.044 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 459 |
author_reputation | 461,806,510,899,194 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,317,164 |
net_rshares | 262,817,954,083 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alex-rourke | 0 | 262,817,954,083 | 10% | ||
endhivewatchers | 0 | 0 | 0.5% |
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.
author | gwajnberg |
---|---|
permlink | re-slobberchops-sss0xo |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:22:39 |
last_update | 2025-03-07 23:22:39 |
depth | 1 |
children | 4 |
last_payout | 2025-03-14 23:22:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 460 |
author_reputation | 369,595,575,160,628 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,636 |
net_rshares | 207,432,054,284 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 207,432,054,284 | 3% |
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.
author | slobberchops |
---|---|
permlink | re-gwajnberg-sss194 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-07 23:29:30 |
last_update | 2025-03-07 23:29:30 |
depth | 2 |
children | 3 |
last_payout | 2025-03-14 23:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 291 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,713 |
net_rshares | 55,934,478,868 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% | ||
gwajnberg | 0 | 55,934,478,868 | 40% |
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!
author | gwajnberg |
---|---|
permlink | re-slobberchops-sss1e8 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-07 23:32:36 |
last_update | 2025-03-07 23:32:36 |
depth | 3 |
children | 2 |
last_payout | 2025-03-14 23:32:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 369,595,575,160,628 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,773 |
net_rshares | 207,503,340,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 207,503,340,279 | 3% |
Nice work. I like those insights into other coders' minds. Helps me a lot. Is your bot code public somewhere?
author | hannes-stoffel |
---|---|
permlink | re-slobberchops-sssp1t |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 08:03:33 |
last_update | 2025-03-08 08:03:33 |
depth | 1 |
children | 1 |
last_payout | 2025-03-15 08:03:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 46,651,126,065,071 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,253 |
net_rshares | 219,004,912,682 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 219,004,912,682 | 3% | ||
bpcvoter | 0 | 0 | 100% |
>Is your bot code public somewhere? It's not, maybe one day I will release it on github.
author | slobberchops |
---|---|
permlink | re-hannes-stoffel-ssspbm |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 08:09:24 |
last_update | 2025-03-08 08:09:24 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 08:09:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,319 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
<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>
author | hivepakistan |
---|---|
permlink | re-slobberchops-1741389849 |
category | hive-163521 |
json_metadata | "{"tags": ["hive-163521"], "app": "HiveDiscoMod"}" |
created | 2025-03-07 23:24:09 |
last_update | 2025-03-07 23:24:09 |
depth | 1 |
children | 0 |
last_payout | 2025-03-14 23:24:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,446 |
author_reputation | 123,305,688,959,381 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,658 |
net_rshares | 0 |
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
author | jonatftforest |
---|---|
permlink | re-slobberchops-sst01m |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 12:01:00 |
last_update | 2025-03-08 12:01:00 |
depth | 1 |
children | 2 |
last_payout | 2025-03-15 12:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 132 |
author_reputation | 64,896,222,561,128 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,287,339 |
net_rshares | 206,648,300,702 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 206,648,300,702 | 3% | ||
bpcvoter | 0 | 0 | 100% |
In your case yes, but it only looks at the last 7 days, not forever so that could change.  Your KE ratio would also disallow votes. 
author | slobberchops |
---|---|
permlink | re-jonatftforest-sst2qh |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 12:59:09 |
last_update | 2025-03-08 12:59:09 |
depth | 2 |
children | 1 |
last_payout | 2025-03-15 12:59:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 415 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,288,507 |
net_rshares | 13,455,830,557 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jonatftforest | 0 | 13,455,830,557 | 50% | ||
bpcvoter | 0 | 0 | 100% |
That's good to know, I'll stop self voting and follow
author | jonatftforest |
---|---|
permlink | re-slobberchops-sst3el |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 13:13:33 |
last_update | 2025-03-08 13:13:33 |
depth | 3 |
children | 0 |
last_payout | 2025-03-15 13:13:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 64,896,222,561,128 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,288,722 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
>Would you like to be whitelisted and eligible for votes by me? YES
author | lightofhope |
---|---|
permlink | re-slobberchops-202538t65753706z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2025-03-07 23:57:57 |
last_update | 2025-03-07 23:57:57 |
depth | 1 |
children | 2 |
last_payout | 2025-03-14 23:57:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 54,938,541,672,933 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,279,064 |
net_rshares | 222,387,428,178 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 222,387,428,178 | 3% | ||
bpcvoter | 0 | 0 | 100% |
I don't see an issue with your account, .. added. 
author | slobberchops |
---|---|
permlink | re-lightofhope-sssoce |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:48:15 |
last_update | 2025-03-08 07:48:15 |
depth | 2 |
children | 1 |
last_payout | 2025-03-15 07:48:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 192 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,105 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | 0.5% |
Thanks very much
author | lightofhope |
---|---|
permlink | re-slobberchops-202538t153545809z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2025-03-08 08:35:48 |
last_update | 2025-03-08 08:35:48 |
depth | 3 |
children | 0 |
last_payout | 2025-03-15 08:35:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 54,938,541,672,933 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,581 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
I'm so glad there are so many kind hearted and clever ~~nerds~~ techies around who can help on Hive
author | livinguktaiwan |
---|---|
permlink | re-slobberchops-sss3is |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 00:18:27 |
last_update | 2025-03-08 00:18:27 |
depth | 1 |
children | 1 |
last_payout | 2025-03-15 00:18:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.084 HBD |
curator_payout_value | 0.084 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 1,668,769,050,718,645 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,279,284 |
net_rshares | 518,910,897,042 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 518,910,897,042 | 7% | ||
bpcvoter | 0 | 0 | 100% |
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..
author | slobberchops |
---|---|
permlink | re-livinguktaiwan-sssohq |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:51:27 |
last_update | 2025-03-08 07:51:27 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:51:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,141 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
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
author | maiasun84 |
---|---|
permlink | re-slobberchops-202537t193341220z |
category | hive-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"} |
created | 2025-03-08 00:33:42 |
last_update | 2025-03-08 00:33:42 |
depth | 1 |
children | 0 |
last_payout | 2025-03-15 00:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 38,075,347,702,665 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,279,499 |
net_rshares | 222,063,709,994 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 222,063,709,994 | 3% | ||
bpcvoter | 0 | 0 | 100% |
> THE SLOBBERCHOPS WHITELIST Would make a good name for a prog rock band 🤭
author | makerhacks |
---|---|
permlink | re-slobberchops-sss0nm |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:16:36 |
last_update | 2025-03-07 23:16:36 |
depth | 1 |
children | 3 |
last_payout | 2025-03-14 23:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 156,478,986,501,043 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,545 |
net_rshares | 207,480,301,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 207,480,301,198 | 3% |
I am partial to prog, could be a memorable band name?
author | slobberchops |
---|---|
permlink | re-makerhacks-sss0r9 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-07 23:18:48 |
last_update | 2025-03-07 23:18:48 |
depth | 2 |
children | 2 |
last_payout | 2025-03-14 23:18:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,574 |
net_rshares | 48,135,268,318 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
makerhacks | 0 | 48,135,268,318 | 27% | ||
bpcvoter | 0 | 0 | 100% |
Even better, `THE SLOBBERCHOPS WHITELIST PROJECT`
author | makerhacks |
---|---|
permlink | re-slobberchops-sss0ve |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:21:15 |
last_update | 2025-03-07 23:21:15 |
depth | 3 |
children | 1 |
last_payout | 2025-03-14 23:21:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 156,478,986,501,043 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,618 |
net_rshares | 0 |
Ah the self voting arses! I like to think I all a dab hand at SQL but that query you have is something else!
author | meesterboom |
---|---|
permlink | re-slobberchops-sss2bf |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:52:30 |
last_update | 2025-03-07 23:52:30 |
depth | 1 |
children | 1 |
last_payout | 2025-03-14 23:52:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.084 HBD |
curator_payout_value | 0.084 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 1,789,767,497,362,806 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,279,001 |
net_rshares | 518,104,920,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 518,104,920,198 | 7% | ||
bpcvoter | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
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.
author | slobberchops |
---|---|
permlink | re-meesterboom-sssndt |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:27:30 |
last_update | 2025-03-08 07:27:30 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:27:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,283,902 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
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
author | oadissin |
---|---|
permlink | re-slobberchops-202539t1462862z |
category | hive-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"} |
created | 2025-03-09 13:06:03 |
last_update | 2025-03-09 13:06:03 |
depth | 1 |
children | 0 |
last_payout | 2025-03-16 13:06:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 277 |
author_reputation | 459,912,289,725,359 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,309,394 |
net_rshares | 0 |
Add me please!
author | olaf.gui |
---|---|
permlink | re-slobberchops-sssta0 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 09:34:48 |
last_update | 2025-03-08 09:34:48 |
depth | 1 |
children | 2 |
last_payout | 2025-03-15 09:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 214,382,345,739,214 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,285,135 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
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.
author | slobberchops |
---|---|
permlink | re-olafgui-ssstwd |
category | hive-163521 |
json_metadata | {"tags":"hive-163521"} |
created | 2025-03-08 09:48:15 |
last_update | 2025-03-08 09:48:27 |
depth | 2 |
children | 1 |
last_payout | 2025-03-15 09:48:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 255 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,285,232 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
I think they are useful for Splinterlands players. But other people can have a different opinion, that's ok. Thanks anyway.
author | olaf.gui |
---|---|
permlink | re-slobberchops-sssw0m |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 10:33:57 |
last_update | 2025-03-08 10:33:57 |
depth | 3 |
children | 0 |
last_payout | 2025-03-15 10:33:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 214,382,345,739,214 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,285,664 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
<center>PIZZA! $PIZZA slices delivered: @danzocal<sub>(3/10)</sub> tipped @slobberchops </center>
author | pizzabot |
---|---|
permlink | re-python-libraries-self-vote-checking-the-fast-version-20250309t015343z |
category | hive-163521 |
json_metadata | "{"app": "pizzabot"}" |
created | 2025-03-09 01:53:42 |
last_update | 2025-03-09 01:53:42 |
depth | 1 |
children | 0 |
last_payout | 2025-03-16 01:53:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 102 |
author_reputation | 7,539,280,605,993 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,302,004 |
net_rshares | 0 |
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.
author | pusen |
---|---|
permlink | re-slobberchops-sst4vo |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 13:45:27 |
last_update | 2025-03-08 13:45:27 |
depth | 1 |
children | 0 |
last_payout | 2025-03-15 13:45:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 519,133,963,444,204 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,289,311 |
net_rshares | 204,486,888,135 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 204,486,888,135 | 3% | ||
bpcvoter | 0 | 0 | 100% |
>Would you like to be whitelisted and eligible for votes by me? I want to join this list
author | reachdreams |
---|---|
permlink | re-slobberchops-202539t203411169z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-03-09 13:34:12 |
last_update | 2025-03-09 13:34:12 |
depth | 1 |
children | 0 |
last_payout | 2025-03-16 13:34:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 122,245,441,583,068 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,310,040 |
net_rshares | 0 |
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>
author | redditposh | ||||||
---|---|---|---|---|---|---|---|
permlink | re-slobberchops-python-libraries-self-vote-checking-the-fast-versi13914 | ||||||
category | hive-163521 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.2","payoutToUser":["vixmemon"]}" | ||||||
created | 2025-03-08 01:04:21 | ||||||
last_update | 2025-03-08 01:04:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2025-03-15 01:04:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.096 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 347 | ||||||
author_reputation | 2,240,698,612,790,241 | ||||||
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 141,279,883 | ||||||
net_rshares | 586,413,806,209 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% | ||
poshtoken | 0 | 533,054,161,392 | 40% | ||
nomnomnomnom | 0 | 53,359,644,817 | 40% |
That's awesome
author | rimess |
---|---|
permlink | re-slobberchops-202538t93524130z |
category | hive-163521 |
json_metadata | {"type":"comment","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.2.1-mobile","format":"markdown+html"} |
created | 2025-03-08 08:35:24 |
last_update | 2025-03-08 08:35:24 |
depth | 1 |
children | 0 |
last_payout | 2025-03-15 08:35:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 86,658,145,010 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,578 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
Yes - I would like you to add me to your list 
author | russia-btc |
---|---|
permlink | re-slobberchops-sssdp3 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/russia-btc/23tvVh1soMotgrmuKTfRRDorPK3pb6Z6eBQ8brAfJfzQ3FnAJsFSdKeXW811hnW3NEEY5.gif"],"users":[]} |
created | 2025-03-08 03:58:18 |
last_update | 2025-03-08 03:58:18 |
depth | 1 |
children | 4 |
last_payout | 2025-03-15 03:58:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 57,707,308,681,904 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,281,931 |
net_rshares | 222,092,974,829 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 222,092,974,829 | 3% | ||
bpcvoter | 0 | 0 | 100% |
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. 
author | slobberchops |
---|---|
permlink | re-russia-btc-sssox9 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 08:00:48 |
last_update | 2025-03-08 08:00:48 |
depth | 2 |
children | 3 |
last_payout | 2025-03-15 08:00:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 281 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,219 |
net_rshares | 17,103,769,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
russia-btc | 0 | 17,103,769,610 | 10% | ||
bpcvoter | 0 | 0 | 100% |
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
author | russia-btc |
---|---|
permlink | re-slobberchops-202538t192843518z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-03-08 12:28:45 |
last_update | 2025-03-08 12:28:45 |
depth | 3 |
children | 2 |
last_payout | 2025-03-15 12:28:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 57,707,308,681,904 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,287,826 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
Glad I learned that self voting is not OK :)
author | seattlea |
---|---|
permlink | re-slobberchops-202538t0128811z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-03-08 08:01:30 |
last_update | 2025-03-08 08:01:30 |
depth | 1 |
children | 1 |
last_payout | 2025-03-15 08:01:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 289,949,906,630,967 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,232 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
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!
author | slobberchops |
---|---|
permlink | re-seattlea-sssp9o |
category | hive-163521 |
json_metadata | {"app":"peakd/2025.2.3","tags":["hive-163521"]} |
created | 2025-03-08 08:08:15 |
last_update | 2025-03-08 08:11:51 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 08:08:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,303 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
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™
author | shmoogleosukami |
---|---|
permlink | re-slobberchops-sss223 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-07 23:46:51 |
last_update | 2025-03-07 23:46:51 |
depth | 1 |
children | 1 |
last_payout | 2025-03-14 23:46:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 306 |
author_reputation | 225,980,385,157,719 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,939 |
net_rshares | 221,809,713,075 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 221,809,713,075 | 3% | ||
endhivewatchers | 0 | 0 | 0.5% |
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.
author | slobberchops |
---|---|
permlink | re-shmoogleosukami-sssmqc |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:13:27 |
last_update | 2025-03-08 07:13:27 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:13:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,283,795 |
net_rshares | 155,793,131,006 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shmoogleosukami | 0 | 155,793,131,006 | 20% | ||
bpcvoter | 0 | 0 | 100% |
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.
author | steevc |
---|---|
permlink | re-slobberchops-sstp59 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-08 21:03:09 |
last_update | 2025-03-08 21:03:09 |
depth | 1 |
children | 2 |
last_payout | 2025-03-15 21:03:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.196 HBD |
curator_payout_value | 0.196 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 374 |
author_reputation | 1,381,239,946,078,004 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,297,755 |
net_rshares | 1,180,470,791,488 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 683,044,754,584 | 10% | ||
alex-rourke | 0 | 497,426,036,904 | 19% |
**“@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
author | bpcvoter1 |
---|---|
permlink | st0u36 |
category | hive-163521 |
json_metadata | {"tags":["scamfarmsexposed","downvotecartel","bilpcoin","blockchaintruth"],"users":["themarkymark","buildawhale","blocktrades","nwjordan"],"links":["https://peakd.com/@buildawhale/comments"],"app":"hiveblog/0.1"} |
created | 2025-03-12 17:31:18 |
last_update | 2025-03-12 17:31:18 |
depth | 2 |
children | 0 |
last_payout | 2025-03-19 17:31:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,600 |
author_reputation | -19,821,572,986,738 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,387,285 |
net_rshares | 0 |
I am trying to brush up on SQL, it's quite different than your everyday interchangeable language.
author | slobberchops |
---|---|
permlink | re-steevc-ssve83 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-09 19:02:30 |
last_update | 2025-03-09 19:02:30 |
depth | 2 |
children | 0 |
last_payout | 2025-03-16 19:02:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,316,514 |
net_rshares | 383,499,882,391 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 121,197,681,437 | 4% | ||
alex-rourke | 0 | 262,302,200,954 | 10% |
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
author | vixmemon |
---|---|
permlink | re-slobberchops-202537t185929795z |
category | hive-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"} |
created | 2025-03-08 00:59:30 |
last_update | 2025-03-08 00:59:30 |
depth | 1 |
children | 1 |
last_payout | 2025-03-15 00:59:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 8,012,562,744,923 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,279,818 |
net_rshares | 222,111,293,390 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 222,111,293,390 | 3% | ||
bpcvoter | 0 | 0 | 100% |
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.
author | slobberchops |
---|---|
permlink | re-vixmemon-sssork |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:57:21 |
last_update | 2025-03-08 07:57:21 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:57:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,198 |
net_rshares | 5,757,108,802 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vixmemon | 0 | 5,757,108,802 | 19% | ||
bpcvoter | 0 | 0 | 100% |
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!
author | yoandry1212 |
---|---|
permlink | re-slobberchops-202537t212556994z |
category | hive-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"} |
created | 2025-03-08 02:25:57 |
last_update | 2025-03-08 02:25:57 |
depth | 1 |
children | 1 |
last_payout | 2025-03-15 02:25:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 243 |
author_reputation | 223,785,466,177 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,280,863 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
> If you're looking to streamline the process, Python is definitely a great option. Good choice! Yes, I thought so too.
author | slobberchops |
---|---|
permlink | re-yoandry1212-sssosm |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:58:00 |
last_update | 2025-03-08 07:58:00 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:58:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,284,202 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% | ||
yoandry1212 | 0 | 0 | 100% |
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.
author | zekepickleman |
---|---|
permlink | re-slobberchops-202537t185150660z |
category | hive-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"} |
created | 2025-03-07 23:51:51 |
last_update | 2025-03-07 23:51:51 |
depth | 1 |
children | 1 |
last_payout | 2025-03-14 23:51:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 768,737,734,799,291 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,278,992 |
net_rshares | 221,736,328,058 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 221,736,328,058 | 3% | ||
bpcvoter | 0 | 0 | 100% |
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.
author | slobberchops |
---|---|
permlink | re-zekepickleman-sssmtd |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2025.2.3"} |
created | 2025-03-08 07:15:15 |
last_update | 2025-03-08 07:15:15 |
depth | 2 |
children | 0 |
last_payout | 2025-03-15 07:15:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 178 |
author_reputation | 2,436,297,288,918,509 |
root_title | "Python Libraries: Self-Vote Checking, The FAST Version!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,283,812 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |