https://img.leopedia.io/DQmZXMDwCkSQ7NEF486mWxo4jRM3R31P59YADwbXvVh5ZSv/image.png I've had a Streamdeck for a while and I love the device, but when I moved to Linux a while ago I couldn't use the native app to control it. While there are some third party open source options, they are not great. Although I did find one recently that was pretty decent called Stream Controller, I wanted to just make my own. Which is a shame because I just made a Crypto plugin for the Stream Controller software. The official Streamdeck app from Elgato is really nice and includes a ton of built-in modules to support a lot of services. It is mostly focused on streamers, but it still has a lot of useful features. I never really used it to its full ability and mainly used it to track prices, change my music, track if my mic is muted and have an easy button to mute/unmute and a few other basic things. For the most part, I really just used it as a display. The streamdeck is pretty interesting, it's a touch screen but with 15 clear buttons laid on top so it looks like each button is a screen but it's really just a small display and the buttons touch a specific section of the screen. While the open source solutions were decent and did most of what I was looking to do, I didn't want to keep making modules for a third party application that most people wouldn't use anyway. So I decided to build my own. It all started with this 7" touchscreen that is perfect for the project. At $60 shipped, it's very reasonably priced and a lot bigger display area than the Streamdeck, more than 2x larger working area. Even more if you factor in the bezels on the Elgato device. https://img.leopedia.io/DQmR9dsBswowuN79ezVYdqP433rxzd82puJvprKGw7BKqRv/image.png This screen also has sound, and allows me to attach a Raspberry Pi on the back. I'm currently using an Raspberry Pi 4 2G that I had lying around. It is a bit overkill for this project and a used Pi 3 or even a Pi 2 would probably be more than enough. The total cost of this project so far would be $60 for the screen, $45 for the Pi, and $10 for the SD card. It is kind of difficult to get a Raspberry Pi without buying a kit unless you live in the UK where you can find them locally. That being said, the total price for this project is $115 USD. The final project looks like this:  There is the base application I am calling StreamdeckPy and three custom modules. * Crypto Tracker * Stock Tracker * Hive Witness Tracker Each of these modules follow an class structure so they implement know functions so they provide predictable functions. Do to Hive's limited availability, I had to implement a split logic for Crypto pricing. For most tickers, I gather information through Binance US api, which is very good, fast, and has a generous free plan. CoinGecko however is very limited and is the only way to reliably get the Hive price but is limited to 10,000 queries/month with or without API key. This means I have to limit it to 5 minute updates where as the Binance US I am updating every 5 seconds. Each button acts as it's own instance of the Crypto Tracker, and fetches the open price at launch and at 00:00 UTC so it can determine if the price is up or down and color it appropriately. The stock ticker functions in the same way and uses Finnhub api to stock prices. Finnhub has a very generous free plan as well and is perfect for this application, although you do need an API key. The Hive Witness Tracker uses standard RPC calls to fetch the witness position for specified witness. You can see the button config I currently use here. ``` { "buttons": [ { "position": [ 0, 0 ], "module": "crypto", "symbol": "btc", "color": "white", "update_frequency": 5 }, { "position": [ 0, 1 ], "module": "crypto", "symbol": "eth", "color": "white", "update_frequency": 5 }, { "position": [ 0, 2 ], "module": "crypto", "symbol": "hive", "color": "white", "update_frequency": 5 }, { "position": [ 0, 4 ], "module": "stock", "ticker": "SPY", "color": "white", "update_frequency": 60, "api_key": "****************************************" }, { "position": [ 3, 4 ], "module": "hive_witness", "witness": "themarkymark", "color": "white", "update_frequency": 60 } ] } ``` Everything was built to be modular and as if it was a commercial product in case I want to throw it up on Github and share it. One thing it is missing and I haven't done yet is being able to connect it to my PC to act as a keyboard device so I can control things like muting my microphone and executing commands. I am on the fence if I want to go ahead and do this. Right now it acts as an independent computer with no access to anything that needs additional security. If I hook it to my computer, I can do things like mute my microphone, launch applications, see what song I am playing, and a number of other things. I will then have to worry about security as the device will have access to my system and it is easy to modify code on the SD card without me knowing easily. As of right now, I think I will leave it the way it is. The only thing I think I will miss is the red/white icon for muting my microphone I really like being able to see when my mic is muted and easily click the button to change it. I use my mic a lot for gaming and a daily market call I do in the AM on weekdays. I really love the size of this device and the fact I get the full screen real estate to work with. The grid is completely customization, I chose a 5x4 layout but you can set it to any layout you want. There is also a dark/light mode you can choose to adapt to your environment. I will probably add an option to auto change to light mode in the day and dark at night in addition to the Dark/Light options I have now. I'm not sure I'd use it but it would be a nice feature. I am trying to think of other features I want to implement. One I know I will do is ETH:BTC ratio, I frequently monitor this, and usually use Trading View to keep an eye on it to know when the best time to swap assets is. I also want to add some graphs to the display. Each button can be clicked and will force an update ahead of schedule. I think I have enough room to have a mini graph at the bottom of the price in each button to show the daily trend, although I wouldn't be able to make it that detailed. I do have a dedicated ultra wide screen above my main monitor running trading view 24/7. It's just a lot less effort to check prices quickly while doing things with this. In the morning, I am usually watching trading view for most of the early hours of the US market. The entire project is built in Python w/ Tkinker for the UI and only requires the requests module. It probably would even run on a Pi Zero W which is only like $10-$15. It does currently run under X using Raspberry OS. There are ways to get it to run without X but it would be far more complicated to use a game engine or something similar to deal with the frame buffer directly. *Got any ideas what I can add?* --- <center>https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png </center> # <center> [Why you should vote me as witness](https://peakd.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness) </center> # [](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)
author | themarkymark |
---|---|
permlink | custom-streamdeck-for-linux-4kj |
category | technology |
json_metadata | {"app":"leothreads/0.3","canonical_url":"https://inleo.io/@themarkymark/custom-streamdeck-for-linux-4kj","dimensions":{},"format":"markdown","image":["https://img.leopedia.io/DQmZXMDwCkSQ7NEF486mWxo4jRM3R31P59YADwbXvVh5ZSv/image.png","https://img.leopedia.io/DQmR9dsBswowuN79ezVYdqP433rxzd82puJvprKGw7BKqRv/image.png","https://files.peakd.com/file/peakd-hive/themarkymark/23t78nfAjoJmkgT27nXiMRs3v9Kwg4uK6iFPHXUdQffcXpmzhv7Bt1LSKe3dd1jjp94Hw.png","https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif"],"images":["https://img.leopedia.io/DQmZXMDwCkSQ7NEF486mWxo4jRM3R31P59YADwbXvVh5ZSv/image.png","https://img.leopedia.io/DQmR9dsBswowuN79ezVYdqP433rxzd82puJvprKGw7BKqRv/image.png","https://img.leopedia.io/DQmfSPpxtmsMWvQf6L7SFAuzwzTDJRSggVtJH4bMGjdgm1g/image.png","https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png"],"isPoll":false,"links":["https://peakd.com/witness-category/@themarkymark/why-you-should-vote-for-themarkymark-as-witness)","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)","https://inleo.io/@themarkymark/custom-streamdeck-for-linux-4kj)"],"tags":["technology","hive-engine","vyb","pob","cent","neoxian","leofinance","python"],"users":["themarkymark"]} |
created | 2025-03-10 01:54:03 |
last_update | 2025-03-11 18:04:00 |
depth | 0 |
children | 38 |
last_payout | 2025-03-17 01:54:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 15.994 HBD |
curator_payout_value | 15.931 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,285 |
author_reputation | 1,772,856,244,540,804 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,323,044 |
net_rshares | 92,629,917,843,442 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
simba | 0 | 130,344,455,919 | 100% | ||
leprechaun | 0 | 1,955,975,615 | 16.25% | ||
kaylinart | 0 | 36,025,646,154 | 100% | ||
cloh76 | 0 | 142,954,764,430 | 100% | ||
dwinblood | 0 | 1,956,732,304 | 20% | ||
joele | 0 | 4,458,750,704 | 100% | ||
oflyhigh | 0 | 4,554,317,532,345 | 100% | ||
bidnat | 0 | 588,842,336 | 37.5% | ||
shanghaipreneur | 0 | 24,146,280,665 | 100% | ||
borran | 0 | 541,948,649,010 | 50% | ||
lemouth | 0 | 480,916,127,043 | 15% | ||
stevescoins | 0 | 10,455,517,188 | 100% | ||
netaterra | 0 | 5,666,984,372 | 15% | ||
kenistyles | 0 | 1,923,932,319 | 11% | ||
shadowspub | 0 | 61,622,936,617 | 50% | ||
penguinpablo | 0 | 140,480,353,551 | 14% | ||
uwelang | 0 | 821,313,723,808 | 25% | ||
richardcrill | 0 | 14,536,185,406 | 25% | ||
titusfrost | 0 | 49,341,407,115 | 100% | ||
jacobtothe | 0 | 1,111,387,402,294 | 75% | ||
funnyman | 0 | 1,417,707,369 | 5.6% | ||
noborders | 0 | 4,688,528,911 | 100% | ||
clayboyn | 0 | 29,703,421,394 | 37.5% | ||
curatorwhale | 0 | 35,822,979,520 | 92% | ||
eforucom | 0 | 66,501,584,370 | 100% | ||
moretea | 0 | 3,493,190,498 | 10% | ||
lydon.sipe | 0 | 5,856,126,435 | 100% | ||
techslut | 0 | 336,710,981,163 | 50% | ||
jaybird | 0 | 5,101,870,857 | 100% | ||
slider2990 | 0 | 4,300,636,005 | 20% | ||
doodleman | 0 | 957,730,018 | 50% | ||
darth-azrael | 0 | 31,654,307,558 | 10% | ||
automaton | 0 | 1,211,241,986 | 99% | ||
darth-cryptic | 0 | 5,858,112,610 | 10% | ||
justinashby | 0 | 461,996,861 | 100% | ||
danielsaori | 0 | 420,025,688,491 | 100% | ||
freebornsociety | 0 | 5,382,656,305 | 10% | ||
dickturpin | 0 | 67,025,754,356 | 100% | ||
l337m45732 | 0 | 21,465,936,254 | 20% | ||
ma1neevent | 0 | 33,593,545,753 | 25% | ||
frankydoodle | 0 | 7,387,701,493 | 50% | ||
acromott | 0 | 4,735,633,702 | 100% | ||
grider123 | 0 | 3,642,501,608 | 10% | ||
forykw | 0 | 214,409,302,904 | 26.5% | ||
valued-customer | 0 | 57,854,670,241 | 25% | ||
uruiamme | 0 | 6,010,978,925 | 50% | ||
fredrikaa | 0 | 2,199,275,184,484 | 100% | ||
nuagnorab | 0 | 13,386,336,386 | 100% | ||
isaria | 0 | 48,260,480,427 | 75% | ||
theywillkillyou | 0 | 1,422,974,619 | 100% | ||
necio | 0 | 1,408,621,218 | 100% | ||
bitcoinflood | 0 | 559,884,825,418 | 18% | ||
anacristinasilva | 0 | 34,807,782,839 | 12.5% | ||
alphacore | 0 | 7,076,619,169 | 7.12% | ||
enjar | 0 | 897,129,252,629 | 80% | ||
chinito | 0 | 2,476,734,933 | 18% | ||
krischy | 0 | 590,564,135 | 100% | ||
offoodandart | 0 | 7,948,571,044 | 100% | ||
reseller | 0 | 5,554,622,624 | 50% | ||
joeyarnoldvn | 0 | 2,802,009,444 | 8.28% | ||
warfeed | 0 | 718,672,564 | 50% | ||
geekgirl | 0 | 3,561,032,904,720 | 100% | ||
paasz | 0 | 25,291,743,102 | 75% | ||
tattoodjay | 0 | 527,536,115,643 | 15% | ||
unyimeetuk | 0 | 1,165,005,003 | 50% | ||
rafalski | 0 | 739,837,994 | 47.7% | ||
shebe | 0 | 496,883,116 | 6% | ||
cranium | 0 | 14,406,090,979 | 20% | ||
everrich | 0 | 2,000,045,656 | 100% | ||
leaky20 | 0 | 494,955,730,223 | 75% | ||
vikisecrets | 0 | 878,318,306,476 | 33% | ||
nicolemoker | 0 | 904,350,462 | 100% | ||
jasonbu | 0 | 16,298,541,138 | 40% | ||
ahlawat | 0 | 1,730,855,766 | 3% | ||
faustofraser | 0 | 3,342,146,585 | 54% | ||
aafeng | 0 | 217,029,950,551 | 25% | ||
valchiz | 0 | 6,113,353,593 | 50% | ||
felander | 0 | 336,977,388,751 | 53% | ||
reinhard-schmid | 0 | 313,279,306,199 | 100% | ||
accelerator | 0 | 31,319,681,152 | 60% | ||
raj808 | 0 | 476,027,967 | 21% | ||
vlemon | 0 | 292,714,310,526 | 75% | ||
mikepm74 | 0 | 526,403,153 | 100% | ||
cconn | 0 | 15,016,246,386 | 100% | ||
yogacoach | 0 | 12,600,643,608 | 53% | ||
artlover | 0 | 2,123,999,927 | 100% | ||
taskmaster4450 | 0 | 1,617,745,720,110 | 100% | ||
espoem | 0 | 15,827,673,771 | 5% | ||
yabapmatt | 0 | 26,618,488,062,801 | 100% | ||
calimeatwagon | 0 | 2,192,579,411 | 35% | ||
jlsplatts | 0 | 146,222,813,761 | 11.25% | ||
makerhacks | 0 | 180,019,350,489 | 100% | ||
dagger212 | 0 | 399,978,477,152 | 100% | ||
gringo211985 | 0 | 5,142,102,414 | 100% | ||
silasvogt | 0 | 1,050,994,580 | 50% | ||
planetauto | 0 | 245,108,190,446 | 100% | ||
joetunex | 0 | 67,701,176,246 | 20% | ||
anadolu | 0 | 293,186,416,352 | 20% | ||
dejan.vuckovic | 0 | 11,025,978,401 | 10% | ||
paintingangels | 0 | 3,602,623,498 | 100% | ||
dkid14 | 0 | 252,382,206,465 | 100% | ||
karinxxl | 0 | 64,399,687,251 | 50% | ||
sourovafrin | 0 | 2,139,334,245 | 30% | ||
sunsea | 0 | 262,274,733,501 | 100% | ||
ciuoto | 0 | 8,325,892,966 | 10% | ||
bluefinstudios | 0 | 43,149,416,690 | 15% | ||
yulem | 0 | 3,594,471,340 | 100% | ||
kaniz | 0 | 912,453,793 | 100% | ||
chekohler | 0 | 10,667,976,274 | 10% | ||
mytechtrail | 0 | 17,570,890,703 | 15% | ||
mhm-philippines | 0 | 1,046,002,879 | 50% | ||
ioioioioi | 0 | 2,310,952,857 | 100% | ||
prometehum | 0 | 1,041,370,202 | 100% | ||
rcshad0w | 0 | 73,892,601,542 | 100% | ||
robotics101 | 0 | 31,779,665,868 | 100% | ||
tristan-muller | 0 | 601,661,508 | 100% | ||
steemusa | 0 | 5,729,596,752 | 10% | ||
mikitaly | 0 | 657,442,499 | 80% | ||
sneakyninja | 0 | 829,669,906 | 1.24% | ||
wiseagent | 0 | 153,594,471,741 | 15% | ||
cryptonized | 0 | 235,490,681 | 14% | ||
fourfourfun | 0 | 577,234,983 | 20% | ||
mineopoly | 0 | 38,759,268,819 | 25% | ||
amos811 | 0 | 564,439,859 | 100% | ||
hooiyewlim | 0 | 6,109,618,212 | 100% | ||
hetty-rowan | 0 | 98,846,184,558 | 50% | ||
wnfdiary | 0 | 2,478,838,776 | 100% | ||
mmmmkkkk311 | 0 | -6,558,741,371 | -10% | ||
bengy | 0 | 2,639,001,394 | 3% | ||
socialmediaseo | 0 | 2,103,796,507 | 100% | ||
baycan | 0 | 11,399,758,341 | 100% | ||
leslierevales | 0 | 7,270,767,257 | 50% | ||
piotrgrafik | 0 | 288,095,829,076 | 24% | ||
coinmeria | 0 | 774,590,264 | 35% | ||
culgin | 0 | 631,812,968 | 30% | ||
soyrosa | 0 | 383,580,965,221 | 50% | ||
portugalcoin | 0 | 3,802,666,290 | 10% | ||
seikatsumkt | 0 | 5,230,106,788 | 75% | ||
chrismadcboy2016 | 0 | 2,272,228,201 | 100% | ||
aakom | 0 | 466,098,081 | 100% | ||
febrirmd | 0 | 7,955,914,692 | 100% | ||
philnewton | 0 | 1,346,905,968 | 18.75% | ||
udabeu | 0 | 61,135,451,480 | 55% | ||
fieryfootprints | 0 | 95,587,112,311 | 40% | ||
newageinv | 0 | 175,775,994,908 | 37.5% | ||
leoumesh | 0 | 676,717,693 | 100% | ||
mistakili | 0 | 43,669,378,255 | 100% | ||
steemflagrewards | 0 | 411,121,494,741 | 100% | ||
fantasycrypto | 0 | 73,479,846,097 | 100% | ||
unconditionalove | 0 | 7,151,928,056 | 26.5% | ||
upfundme | 0 | 26,803,215,558 | 75% | ||
minerspost | 0 | 2,504,598,378 | 50% | ||
bigtom13 | 0 | 251,747,248,767 | 50% | ||
moeenali | 0 | 20,958,248,525 | 1% | ||
d0zer | 0 | 2,106,825,642 | 100% | ||
tdogvoid | 0 | 572,018,594 | 100% | ||
jesuslnrs | 0 | 147,820,040,248 | 100% | ||
darkpylon | 0 | 6,137,374,731 | 100% | ||
asgarth | 0 | 998,311,048,408 | 50% | ||
lakawero | 0 | 664,873,043 | 37.5% | ||
bozz | 0 | 381,288,486,871 | 20% | ||
cst90 | 0 | 490,483,234,857 | 100% | ||
citimillz | 0 | 2,814,263,313 | 100% | ||
movement19 | 0 | 12,999,836,397 | 45% | ||
technologix | 0 | 600,453,919 | 100% | ||
g4fun | 0 | 11,547,972,066 | 25% | ||
rubencress | 0 | 37,162,559,388 | 10% | ||
jjerryhan | 0 | 25,882,478,351 | 10% | ||
letsplaywhatelse | 0 | 2,089,585,144 | 75% | ||
amigoponc | 0 | 13,441,172,192 | 100% | ||
homeginkit | 0 | 49,219,936,086 | 100% | ||
kilianparadise | 0 | 724,300,031 | 18.75% | ||
olgadmitriewna | 0 | 2,597,518,020 | 100% | ||
blockchainyouth | 0 | 7,459,608,225 | 10% | ||
properfraction | 0 | 65,765,862,049 | 100% | ||
nervi | 0 | 38,929,837,082 | 100% | ||
spederson | 0 | 3,614,783,447 | 100% | ||
steemitcolombia | 0 | 4,328,975,900 | 100% | ||
vcclothing | 0 | 173,742,307,216 | 100% | ||
uyobong | 0 | 25,680,566,634 | 50% | ||
sonius94 | 0 | 622,943,078 | 50% | ||
ronaldoavelino | 0 | 4,787,915,956 | 20% | ||
mariuszkarowski | 0 | -687,092,150 | -10% | ||
dera123 | 0 | 406,691,808,069 | 100% | ||
rambutan.art | 0 | 48,559,594,057 | 100% | ||
paragism | 0 | 3,281,925,927 | 100% | ||
tadstrange | 0 | 1,691,574,290 | 100% | ||
jkramer | 0 | 1,661,500,357,522 | 100% | ||
mrchef111 | 0 | 109,271,198,077 | 100% | ||
racibo | 0 | 6,532,380,666 | 5% | ||
yameen | 0 | 184,398,051,022 | 50% | ||
prettynicevideo | 0 | 33,446,175,600 | 20% | ||
abdulmath | 0 | 3,831,290,859 | 50% | ||
jemmanuel | 0 | 10,167,959,531 | 20% | ||
c0wtschpotato | 0 | 11,805,427,310 | 50% | ||
suntree | 0 | 19,188,572,402 | 100% | ||
themightyvolcano | 0 | 12,088,428,039 | 53% | ||
gogreenbuddy | 0 | 1,122,101,023,587 | 100% | ||
ecotone | 0 | 9,680,628,573 | 100% | ||
emitste | 0 | 1,504,248,813 | 100% | ||
kgakakillerg | 0 | 54,288,765,323 | 25% | ||
steemexperience | 0 | 35,720,960,499 | 25% | ||
break-out-trader | 0 | 26,673,611,639 | 100% | ||
retard-gamer-de | 0 | 1,342,042,610 | 50% | ||
solominer | 0 | 3,185,313,863,454 | 15% | ||
veteranforcrypto | 0 | 4,277,821,357 | 20% | ||
leomolina | 0 | 651,619,518 | 9% | ||
fw206 | 0 | 2,321,866,012,774 | 27% | ||
meins0815 | 0 | 10,897,532,036 | 23% | ||
cryptomaniacsgr | 0 | 102,691,452,324 | 50% | ||
crystalhuman | 0 | 1,008,967,284 | 100% | ||
pladozero | 0 | 16,147,748,700 | 10% | ||
crimo | 0 | 593,616,300 | 11.5% | ||
nateaguila | 0 | 177,670,646,417 | 12% | ||
enforcer48 | 0 | 6,097,764,752 | 20% | ||
steem-tube | 0 | 8,035,565,439 | 100% | ||
iamtom | 0 | 620,696,756 | 75% | ||
therabbitzone | 0 | 914,406,315 | 50% | ||
gerusan | 0 | 2,728,278,203 | 100% | ||
nasel | 0 | 5,920,043,148 | 100% | ||
steddyman | 0 | 2,461,124,789 | 100% | ||
commonlaw | 0 | 5,618,321,324 | 35% | ||
cryptoandcoffee | 0 | 989,871,741,476 | 25% | ||
ronbong | 0 | 1,243,457,588 | 100% | ||
nfaith | 0 | 2,371,005,260 | 100% | ||
edgy-ed-morrison | 0 | 4,622,559,878 | 100% | ||
steemitcanarias | 0 | 571,699,886 | 37.5% | ||
agathusia | 0 | 868,876,026 | 100% | ||
sbi6 | 0 | 150,723,694,912 | 18.65% | ||
shortsegments | 0 | 647,619,702,718 | 100% | ||
keepinitsteem | 0 | 7,391,226,629 | 100% | ||
ambiguity | 0 | 49,993,394,263 | 100% | ||
thedailysneak | 0 | 1,091,154,110 | 1.24% | ||
izzynoel | 0 | 844,678,603 | 50% | ||
rilo | 0 | 692,392,676 | 100% | ||
yestermorrow | 0 | 12,273,359,214 | 31% | ||
teamvn | 0 | 8,492,752,197 | 6.53% | ||
dalz | 0 | 485,982,599,643 | 30% | ||
viruk | 0 | 8,573,873,514 | 100% | ||
goblinknackers | 0 | 707,930,898,931 | 60% | ||
smartvote | 0 | 75,378,779,699 | 3.5% | ||
holovision | 0 | 24,320,648,231 | 100% | ||
light-hearted | 0 | 2,950,784,422 | 100% | ||
cubapl | 0 | 3,791,348,045 | 30% | ||
minimining | 0 | 1,570,944,060 | 50% | ||
ozeryilmaz | 0 | 546,705,466 | 50% | ||
coccodema | 0 | 1,141,685,577 | 10% | ||
voxmortis | 0 | 19,104,127,835 | 10% | ||
bagasadi | 0 | 3,075,895,560 | 100% | ||
fijimermaid | 0 | 576,411,868,165 | 100% | ||
tipsybosphorus | 0 | 5,991,081,048 | 90% | ||
foodfightfriday | 0 | 14,484,204,702 | 12.5% | ||
a-bot | 0 | 15,026,504,046 | 30% | ||
admiralbot | 0 | 7,706,568,803 | 100% | ||
stefano.massari | 0 | 104,254,889,207 | 30% | ||
tommyl33 | 0 | 10,968,953,483 | 100% | ||
kuku-splatts | 0 | 23,522,050,464 | 25% | ||
anti-bully | 0 | 1,242,175,550 | 100% | ||
the4thmusketeer | 0 | 46,495,933,475 | 95% | ||
merlin7 | 0 | 100,275,829,087 | 50% | ||
besheda | 0 | 2,746,250,773 | 100% | ||
nujzzmc | 0 | 504,050,705 | 50% | ||
thrasher666 | 0 | 2,446,340,459 | 60% | ||
dallas27 | 0 | 535,045,065 | 50% | ||
artysteps | 0 | 20,257,958,143 | 100% | ||
glastar | 0 | 647,268,304 | 100% | ||
francescomai | 0 | 18,453,305,062 | 100% | ||
smokingfit | 0 | 461,263,624 | 30% | ||
starrouge | 0 | 1,032,281,902 | 50% | ||
retrodroid | 0 | 3,409,818,680 | 10% | ||
wherein | 0 | 26,942,833,083 | 100% | ||
bluerobo | 0 | 507,266,053,686 | 100% | ||
zerofive | 0 | 863,795,729 | 50% | ||
ferrate | 0 | 97,282,939,909 | 100% | ||
coffeebuds | 0 | 7,916,687,781 | 25% | ||
jacuzzi | 0 | 595,643,117 | 1.4% | ||
blind-spot | 0 | 9,322,302,288 | 50% | ||
bluesniper | 0 | -2,170,605,235 | -10% | ||
primeradue | 0 | -62,838,317 | -10% | ||
cnstm | 0 | 123,797,020,222 | 100% | ||
likuang007 | 0 | 651,563,193 | 100% | ||
whiterosecoffee | 0 | 266,285,183,801 | 100% | ||
idiosyncratic1 | 0 | 81,661,585,599 | 100% | ||
crowdwitness | 0 | 2,857,937,546 | 8% | ||
ctime | 0 | -4,496,407,034 | -10% | ||
caribehub | 0 | 1,381,469,491 | 100% | ||
smon-joa | 0 | 1,849,635,314 | 100% | ||
lianjingmedia | 0 | 972,797,576 | 100% | ||
broxi | 0 | 18,609,972,317 | 75% | ||
goodcontentbot | 0 | 811,408,403 | 15% | ||
hungrybear | 0 | 622,897,466 | 14% | ||
doze | 0 | 916,780,888 | 50% | ||
aboss | 0 | 485,200,228 | 100% | ||
denizcakmak | 0 | 747,780,109 | 50% | ||
wolffeys | 0 | 12,298,196,865 | 100% | ||
kggymlife | 0 | 3,968,443,634 | 20% | ||
zeero22 | 0 | 9,918,210,552 | 51% | ||
gunnarheilmann | 0 | 9,276,267,240 | 55.55% | ||
guysellars | 0 | 2,367,356,944 | 100% | ||
sniem5180 | 0 | 1,358,353,233 | 75% | ||
lightpainters | 0 | 114,675,700,880 | 100% | ||
szf | 0 | 1,501,880,007 | 75% | ||
crazydaisy | 0 | 577,587,077 | 100% | ||
memehub | 0 | 113,101,666,857 | 100% | ||
helgalubevi | 0 | 9,219,964,342 | 25% | ||
star.lord | 0 | 21,506,160,917 | 100% | ||
bastter | 0 | 2,542,084,188 | 25% | ||
tinyhousecryptos | 0 | 465,086,641 | 5% | ||
aninsidejob | 0 | 8,100,627,094 | 100% | ||
iktisat | 0 | 456,748,425 | 50% | ||
oxoskva | 0 | 3,161,934,330 | 100% | ||
kittykate | 0 | 100,042,127,737 | 100% | ||
xyz004 | 0 | 49,381,170,317 | 25% | ||
davidtron | 0 | 3,232,792,907 | 50% | ||
waraira777 | 0 | 4,174,891,195 | 100% | ||
lfu-radio | 0 | 497,462,604 | 12.25% | ||
kgswallet | 0 | 1,100,169,964 | 20% | ||
milu-the-dog | 0 | 662,655,462 | 53% | ||
asmr.tist | 0 | 986,718,749 | 100% | ||
nichemarket | 0 | 1,334,590,931 | 100% | ||
pal-isaria | 0 | 3,114,800,701 | 80% | ||
vxc.leo | 0 | 0 | 100% | ||
freedomring | 0 | 475,720,968 | 10% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
babytarazkp | 0 | 3,518,571,145 | 85% | ||
tokenindustry | 0 | 3,201,758,506 | 54.45% | ||
clicktrackprofit | 0 | 906,832,470 | 100% | ||
sbi-tokens | 0 | 2,050,257,233 | 2.49% | ||
liaminit1 | 0 | 10,838,354,977 | 90% | ||
brutoken | 0 | 731,488,752 | 100% | ||
fucanglong | 0 | 7,751,477,015 | 100% | ||
elianaicgomes | 0 | 3,170,103,477 | 7.5% | ||
whangster79 | 0 | 3,888,392,531 | 15% | ||
idig | 0 | 2,508,152,963 | 6.25% | ||
urun | 0 | 8,121,437,631 | 100% | ||
mango-ag | 0 | 530,118,479 | 100% | ||
cageon360 | 0 | 2,173,349,865 | 25% | ||
bilpcoinbot | 0 | 4,182,703,350 | 100% | ||
lcrestrepo | 0 | 5,649,509,075 | 100% | ||
mk-photo-token | 0 | 0 | -10% | ||
urtrailer | 0 | 244,310,493,864 | 25% | ||
bruneo | 0 | 721,523,228 | 100% | ||
khalstem | 0 | 1,905,578,185 | 100% | ||
bilpcoinrecords | 0 | 972,098,442 | 25% | ||
baltai | 0 | 61,255,025,306 | 25% | ||
therealyme | 0 | 211,724,773,017 | 15% | ||
bozz.sports | 0 | 6,077,244,422 | 4% | ||
enison1 | 0 | 804,654,346 | 100% | ||
fr-ida | 0 | 528,141,963 | 98% | ||
bilpcoin.pay | 0 | 545,374,514 | 10% | ||
unpopular | 0 | 1,814,643,179,030 | 100% | ||
splatts | 0 | 69,496,259,184 | 12.5% | ||
pjansen.leo | 0 | 0 | 100% | ||
stemisaria | 0 | 1,922,731,587 | 100% | ||
khalpal | 0 | 2,054,492,143 | 100% | ||
lorentm | 0 | 13,411,180,353 | 100% | ||
travelpic | 0 | 488,528,711 | 100% | ||
neoxvoter | 0 | 2,945,387,811 | 25% | ||
gmlrecordz | 0 | 753,478,641 | 50% | ||
hive-131578 | 0 | 13,560,024,378 | 100% | ||
angel33 | 0 | 642,588,051 | 100% | ||
onestop | 0 | 10,570,814,522 | 100% | ||
photosnap | 0 | 1,442,201,085 | 25% | ||
kgsupport | 0 | 615,102,398 | 12.5% | ||
dec.entralized | 0 | 21,263,737,655 | 100% | ||
steem-holder | 0 | 5,687,712,474 | 13% | ||
libertypal27 | 0 | 552,440,210 | 100% | ||
catanknight | 0 | 212,754,456 | 100% | ||
dpend.active | 0 | 4,076,869,298 | 10.6% | ||
brofund | 0 | 51,514,307,557 | 100% | ||
jskitty | 0 | 2,111,115,167 | 100% | ||
penned-bullshit | 0 | 463,685,847 | 50% | ||
f0x-society | 0 | 1,316,509,947 | 50% | ||
hivexperiment | 0 | 1,541,526,494 | 100% | ||
mcsagel | 0 | 515,969,306 | 25% | ||
hodlcommunity | 0 | 792,910,509,332 | 100% | ||
dcityrewards | 0 | 2,072,456,113,703 | 53% | ||
holoferncro | 0 | 9,789,582,162 | 25% | ||
alapok | 0 | 7,853,979,325 | 100% | ||
sketching | 0 | 3,822,591,205 | 26.5% | ||
defi.campus | 0 | 15,646,667,299 | 50% | ||
woelfchen | 0 | 94,170,162,611 | 27% | ||
devpress | 0 | 599,640,361 | 50% | ||
forkyishere | 0 | 47,381,808,185 | 26.5% | ||
moneyheist-sl | 0 | 4,324,673 | 100% | ||
patronpass | 0 | 16,734,404,900 | 100% | ||
greengalletti | 0 | 10,629,414,185 | 100% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
jelly13 | 0 | 2,708,651,343 | 26.5% | ||
w-splatts | 0 | 24,024,501,727 | 25% | ||
dayerlis | 0 | 952,711,665 | 100% | ||
recoveryinc | 0 | 59,520,316,354 | 90% | ||
brofund-pal | 0 | 2,703,676,255 | 100% | ||
jelly-cz | 0 | 1,948,152,175 | 100% | ||
uyobong.venture | 0 | 500,463,084 | 100% | ||
liz.writes | 0 | 1,948,107,219 | 90% | ||
dying | 0 | 3,431,406,286 | 90% | ||
adedayoolumide | 0 | 738,505,918 | 100% | ||
arrrds | 0 | 1,214,718,984 | 50% | ||
iamfarhad | 0 | 732,998,163 | 50% | ||
drniche | 0 | 1,412,361,320 | 100% | ||
danzocal | 0 | 5,718,112,369 | 100% | ||
alex-rourke | 0 | 1,592,893,905,055 | 61% | ||
officialhisha | 0 | 24,629,638,111 | 40% | ||
heruvim1978 | 0 | 1,449,671,056,533 | 100% | ||
kimberlycmq | 0 | 973,531,262 | 100% | ||
tamiapt6 | 0 | 1,149,531,224 | 100% | ||
netaterra.leo | 0 | 987,218,731 | 13.5% | ||
he-index | 0 | 30,236,919,527 | 15% | ||
meestemboom | 0 | 484,987,480 | 25% | ||
completewind | 0 | 5,845,230,153 | 100% | ||
resiliencia.pal | 0 | 2,161,592,766 | 100% | ||
susie-saver | 0 | 3,289,760,746 | 100% | ||
samrisso | 0 | 71,166,163,517 | 100% | ||
meowcurator | 0 | 1,281,771,612 | 80% | ||
kriszrokk | 0 | 40,331,080,593 | 100% | ||
cbridges573 | 0 | 5,724,229,926 | 30% | ||
ausbit.dev | 0 | 23,109,550,121 | 100% | ||
bananass | 0 | 698,617,289 | 100% | ||
retaliatorr | 0 | 2,934,247,764 | 100% | ||
emsenn0 | 0 | 2,769,815,779 | 14% | ||
chamathleo | 0 | 2,079,683,204 | 100% | ||
finguru | 0 | 201,571,863,277 | 80% | ||
cochanet | 0 | 2,971,366,607 | 100% | ||
tomtothetom | 0 | 2,298,223,622 | 15% | ||
nyxlabs | 0 | 14,868,606,706 | 50% | ||
brofi | 0 | 4,767,663,221,759 | 100% | ||
proofofbrainio | 0 | 19,169,033,451 | 25% | ||
rochow | 0 | 6,603,078,721 | 94.17% | ||
drricksanchez | 0 | 44,216,102,326 | 7.5% | ||
imno | 0 | 68,033,654,824 | 60% | ||
nfttunz | 0 | 868,727,560,758 | 50% | ||
dendendenden | 0 | 6,909,014,734 | 100% | ||
mahuampionlinemg | 0 | 2,649,630,194 | 100% | ||
brofund-witness | 0 | 29,164,284,235 | 100% | ||
photo-hive-five | 0 | 879,296,127 | 53% | ||
zwhammer | 0 | 1,186,730,031 | 50% | ||
hive.friends | 0 | 892,744,585 | 50% | ||
osomeltrozo | 0 | 4,468,885,928 | 100% | ||
holovision.cash | 0 | 4,441,428,314 | 100% | ||
shanhenry | 0 | 804,397,710 | 18.75% | ||
holovision.stem | 0 | 463,612,951 | 89% | ||
bulldog1205 | 0 | 3,087,723,093 | 37.5% | ||
rpren | 0 | 723,555,485 | 50% | ||
csport | 0 | -117,267,198 | -10% | ||
davidbright | 0 | 2,857,597,716 | 7.5% | ||
akane47 | 0 | 4,192,082,775 | 100% | ||
lasembradora | 0 | 468,678,705 | 100% | ||
yosoyla72 | 0 | 5,898,418,017 | 100% | ||
flamistan | 0 | 593,219,078 | 25% | ||
nellynohemi | 0 | 3,221,274,589 | 100% | ||
familia.linares | 0 | 1,386,672,891 | 100% | ||
samsmith1971 | 0 | 37,942,816,257 | 50% | ||
bokica80 | 0 | 7,679,031,217 | 50% | ||
jocieprosza.leo | 0 | 7,340,933,919 | 100% | ||
dkkfrodo | 0 | 19,646,253,316 | 100% | ||
menzo | 0 | 32,117,930,380 | 100% | ||
funshee | 0 | 3,527,750,629 | 12.5% | ||
sstdd | 0 | 1,063,760,088 | 100% | ||
proton80 | 0 | 650,034,471 | 50% | ||
chirho | 0 | 459,876,015 | 90% | ||
vrezyy | 0 | 13,329,996,578 | 50% | ||
tub3r0 | 0 | 765,916,127 | 10% | ||
acantoni | 0 | 2,131,192,776 | 7.5% | ||
dml28 | 0 | 2,601,203,816 | 100% | ||
njker | 0 | 788,489,759 | 37.5% | ||
iamchessguy | 0 | 10,175,174,356 | 100% | ||
dzaky12 | 0 | 19,918,265,442 | 100% | ||
beardoin | 0 | 46,970,455,419 | 100% | ||
gejzep | 0 | 530,803,178 | 100% | ||
dstampede | 0 | 1,827,188,974 | 100% | ||
forsakensushi | 0 | 580,611,466,308 | 100% | ||
keeper-of-eden | 0 | 5,084,745,877 | 50% | ||
bossingclint | 0 | 1,091,708,290 | 100% | ||
hazmat | 0 | 2,438,161,741 | 100% | ||
jude9 | 0 | 1,216,289,067 | 40% | ||
mengao | 0 | 663,946,726,973 | 100% | ||
metronet | 0 | 741,728,926 | 50% | ||
skgcrypto | 0 | 923,478,786 | 50% | ||
butwo | 0 | 677,983,287 | 100% | ||
vsemmetall | 0 | 170,965,011 | 100% | ||
khoola | 0 | 1,288,528,375 | 25% | ||
jhonymedina | 0 | 696,944,353 | 100% | ||
fortunpumbaa | 0 | 0 | 100% | ||
attentionneeded | 0 | 1,201,654,136 | 20% | ||
trostparadox.vyb | 0 | 471,419,264 | 25% | ||
vyb.pob | 0 | 999,371,167 | 25% | ||
stickupcurator | 0 | 246,203,378,268 | 70% | ||
crypt0gnome | 0 | 60,128,510,815 | 50% | ||
lolz.cent | 0 | 15,728,880 | 100% | ||
alohaed | 0 | 191,931,469,777 | 50% | ||
saboin.pob | 0 | 117,039,652 | 25% | ||
vyb.curation | 0 | 560,556,986 | 25% | ||
blocktunes | 0 | 4,763,119,105 | 35% | ||
the-pockets | 0 | 2,145,761,690 | 37.5% | ||
gwajnberg | 0 | 167,036,093,318 | 100% | ||
ripusun | 0 | 26,390,213,810 | 100% | ||
ryosai | 0 | 5,778,815,650 | 25% | ||
fernandoylet | 0 | 5,644,318,708 | 100% | ||
sydechan | 0 | 1,175,404,796,848 | 100% | ||
vyb.fund | 0 | 481,282,602 | 25% | ||
jfuji | 0 | 107,076,421,931 | 52.5% | ||
cimmeron | 0 | 5,094,531,215 | 18.75% | ||
creativepixie | 0 | 8,374,200,029 | 100% | ||
crazygirl777 | 0 | 2,959,782,311 | 25% | ||
lordshah | 0 | 24,143,304,821 | 58.6% | ||
thewallet | 0 | 910,634,115 | 85% | ||
hive-117638 | 0 | 893,813,802 | 25% | ||
brutus22 | 0 | 422,124,690 | 16% | ||
gaskets | 0 | -74,034,096 | -10% | ||
tenpik | 0 | -94,163,452 | -10% | ||
bgmoha | 0 | 1,042,921,343 | 55% | ||
zeltra | 0 | -111,788,943 | -10% | ||
blackmedschn | 0 | 15,626,617,645 | 47.91% | ||
jhero22 | 0 | 40,492,005,892 | 98% | ||
bank-of-hive | 0 | 43,137,559,654 | 100% | ||
pocket-rents | 0 | 911,769,123 | 37.5% | ||
crypt0holics | 0 | 790,875,784 | 20% | ||
hive-195880 | 0 | 611,026,636 | 15% | ||
lucky7ace | 0 | 992,961,515 | 25% | ||
blocktunesdao | 0 | 576,137,810 | 35% | ||
actifitgirl | 0 | 4,619,630,678 | 100% | ||
wearelegion | 0 | 2,478,561,003 | 70% | ||
dahpilot | 0 | 35,037,305,874 | 100% | ||
contapoupanca | 0 | 1,382,432,526 | 80% | ||
mhizsmiler.leo | 0 | 1,896,289,586 | 40% | ||
orkangel | 0 | 907,246,181 | 20% | ||
skiptvads | 0 | 62,549,930,669 | 22% | ||
jaouad2d | 0 | 8,378,122,362 | 100% | ||
dailydab | 0 | 1,259,490,310,829 | 50% | ||
hive-lu | 0 | 91,192,628,263 | 20.71% | ||
justtheway | 0 | 18,194,672,645 | 100% | ||
clubvote | 0 | 34,503,543,315 | 10% | ||
dreeyor | 0 | 625,615,899 | 10% | ||
blessskateshop | 0 | 678,592,327 | 12.5% | ||
ariscoco1 | 0 | 0 | -100% | ||
braaiboy.brains | 0 | 6,600,958,331 | 100% | ||
fee-service-new | 0 | 7,596,542,498 | 100% | ||
dreamtales | 0 | -31,984,593,735 | -100% | ||
legionsupport | 0 | 1,153,949,526,426 | 70% | ||
dab-vote | 0 | 664,920,348,134 | 50% | ||
sw-kleymer | 0 | 901,770,573 | 100% | ||
sonntags | 0 | -708,794,989 | -10% | ||
rutasdedavid | 0 | 4,088,087,470 | 100% | ||
ovlagik | 0 | -9,474,579 | -10% | ||
labutamol | 0 | -16,380,733 | -10% | ||
michael561 | 0 | 4,336,409,564 | 14% | ||
silent.nightowl | 0 | 1,327,829,532 | 100% | ||
jesusarodrz | 0 | 4,667,847,177 | 100% | ||
powermusic | 0 | 0 | 100% | ||
ybwifhat | 0 | 0 | 100% |
That's pretty cool. I have been looking for some small good quality touch screens like that in the past, so I will have to remember this in the future when I need one. I have a streamdeck here in my office, but we really only use it to start and stop OBS studio. I needed something dummy proof to record the board meetings when I am not able to be here.
author | bozz |
---|---|
permlink | re-themarkymark-2025310t74851735z |
category | technology |
json_metadata | {"tags":["technology","hive-engine","vyb","pob","cent","neoxian","leofinance","python"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-03-10 11:48:51 |
last_update | 2025-03-10 11:48:51 |
depth | 1 |
children | 1 |
last_payout | 2025-03-17 11:48:51 |
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 | 355 |
author_reputation | 2,227,203,348,166,094 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,330,910 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow22 |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:15:57 |
last_update | 2025-03-25 17:15:57 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 17:15: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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,838 |
net_rshares | -1,648,692,079 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,692,079 | -0.1% | ||
bilpcoinbot1 | 0 | 0 | 100% |
**“@themarkymark’s 5.1K Hive Power Curation Scam: How Scam Farms Exploit Hive’s Reward System”** **Meta Description:** Bilpcoin uncovers @themarkymark’s curation rewards from the Buildawhale scam farm—over 5,100 HP in 20 days. The blockchain reveals his exploitation of Hive’s ecosystem. --- ### **To @themarkymark:** You talk about burning HBD and Hive, but your **curation rewards tell a different story**. Let’s expose the scam farm profits you’re hiding in plain sight. --- ### **1. The Numbers Don’t Lie: @themarkymark’s Scam Farm Payday** Check the data from [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities): - **Curation Rewards (20 Days):** - **Total HP Earned:** 5,100.449 HP (~$1199.3772 USD). - **Annual Projection Over:** ~$20,457 USD At todays price (if sustained). **Key Question:** How does a self-proclaimed “Hive advocate” earn thousands in rewards by voting on scam farms like @buildawhale? --- ### **2. The Scam Farm Connection** @themarkymark’s rewards flow directly from **@buildawhale’s fraudulent operations**: - **Buildawhale’s Modus Operandi:** - Floods Hive with spam comments and bot votes. - Siphons rewards via delegations from @blocktrades (2.3M HP). [Wallet Proof](https://peakd.com/@buildawhale/wallet). - **@themarkymark’s Role:** - Defends @buildawhale while downvoting critics. - Uses his influence to normalize scam farming. --- ### **3. The Hypocrisy: “Burning HBD” vs. Scam Profits** You claim to care about Hive’s health but profit from its exploitation: - **Burned Tokens:** A drop in the ocean compared to your scam farm earnings. - **Curation Rewards:** Your 5,100 HP in 20 days comes from fraudulent voting—not genuine engagement. **The Irony:** You accuse others of harming Hive while you’re one of its biggest parasites. --- ### **4. Why This Matters for Hive** Scam farms like @buildawhale: - **Steal rewards** from honest creators. - **Centralize power** in the hands of a few. - **Drive away old and new users** with toxic spam. **The Bigger Picture:** @themarkymark’s actions are part of a larger pattern of abuse by top accounts. [See our full exposés](https://hive.blog/@bpcvoter3/posts). --- ### **5. Bilpcoin’s Message to @themarkymark** Stop pretending to care about Hive. Your curation rewards from scam farms expose your true priorities. **To the Community:** - **Investigate:** Check [@themarkymark’s curation rewards](https://peakd.com/@themarkymark/activities) and [Buildawhale’s wallet](https://peakd.com/@buildawhale/wallet). - **Demand Change:** Ask witnesses why scam farms like this are allowed to thrive. --- ### **Call to Action: Reclaim Hive’s Integrity** 1. **Audit the Scammers:** Use tools to track delegations and rewards. 2. **Spread Awareness:** Share this post to expose the grift. 3. **Hold Leaders Accountable:** Silence isn’t an option—**transactions don’t lie**. **#HiveBlockchain #ScamFarmsExposed #CurationAbuse #BlockchainTransparency #Bilpcoin** :** *Scam farm curation rewards*, *Hive exploitation*, *blockchain hypocrisy*. **@themarkymark:** Keep farming, keep scamming, and keep downvoting. The blockchain is watching—and we’re not going anywhere. Sincerely, The Bilpcoin Team **“@jacobtothe’s Downvote Spree: A Desperate Attempt to Bury Hive’s Scandals”** **Meta Description:** Bilpcoin documents @jacobtothe’s relentless downvoting of exposés while ignoring @themarkymark and @buildawhale’s ongoing scam farms. The blockchain reveals the truth they fear. --- ### **To @jacobtothe:** You’re still at it—downvoting our posts while ignoring the **2.4M Hive power scam farm** your friends run. Let’s break down your latest suppression tactics and the corruption you protect. --- ### **1. The Downvote Diary: Your Latest Attacks** Your voting activity speaks louder than your words. Here’s what you and your cronies did today: - **@bpcvoter1’s -15% Downvote** on *“remember-us-keni-bpc-ai-music”* - **@bpcvoter1’s -10% Downvotes** on *“poisoned-roots-mc-franko”* and *“paper-tigers-mc-franko”* - **@zirochka’s 10% Upvote** on *“re-jacobtothe-sst5dn”* (A rare ally? Or a distraction?) **Full Log:** [https://peakd.com/@jacobtothe/activities](https://peakd.com/@jacobtothe/activities) --- ### **2. The Scam Farm You Protect: @buildawhale’s 2.4M Grift** You downvote us but stay silent on @buildawhale’s scam farm—**funded by @blocktrades** and operated by @themarkymark. Here’s what you’re hiding: - **Delegations Fraud:** - @blocktrades delegates **2,341,581 HP** to @buildawhale—97% of its power. [Wallet Proof](https://peakd.com/@buildawhale/wallet). - Result? A bot army farming rewards and downvoting while honest creators starve. - **Daily Spam:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)—AI-generated garbage flooding the platform. --- ### **3. The Hypocrisy: “ @Freedom” on Hive?** You claim Hive is a @meritocracy, yet: - **Good content gets downvoted** (e.g., our [exposés](https://hive.blog/hive-167922/@bpcvoter3/the-scam-farm-kingpin-themarkymark-s-2-4m-hive-power-grift-exposed)). - **Scam farms get upvotes** and delegations. **Example:** - @themarkymark’s alts (e.g., @punkteam) farm rewards while he silences critics. [Audit Here](https://hive.blog/hive-167922/@bpcvoter2/seo-breakdown-of-all-transactions-for-theycallmemarky). --- ### **4. Why You Fear the Truth** Your downvotes aren’t about “quality”—they’re about **control**. You protect scam farms because: 1. **They Profit You:** Curation rewards flow to your network. 2. **They Silence Dissent:** Downvotes bury investigations into your corruption. 3. **They Maintain Power:** A centralized cabal (you, @themarkymark, @blocktrades) decides who “succeeds” on Hive. --- ### **5. The Community’s Wake-Up Call** Hive deserves better than this. **Ask yourself:** - Why does @blocktrades delegate millions to scam farms? - Why do @jacobtothe and @themarkymark downvote truth-tellers but promote spam? - Why hasn’t Hive’s leadership stopped this abuse? **Evidence to Share:** - [Bilpcoin’s Full Exposés](https://hive.blog/@bpcvoter3/posts) - [@themarkymark’s Toxic Activity](https://peakd.com/@themarkymark/activities) --- ### **Call to Action: Stop the Corruption** 1. **Investigate:** Follow the links above. 2. **Demand Accountability:** Tag witnesses and leaders—ask why scam farms thrive. 3. **Join Bilpcoin:** We’re fighting for transparency. Every share of this post helps. **#HiveBlockchain #DownvoteCartel #ScamFarmsExposed #BlockchainTruth #Bilpcoin** Downvote all you want, @jacobtothe. The blockchain doesn’t forget, and neither do we. Keep protecting scammers—we’ll keep exposing them. Sincerely, The Bilpcoin Team *Hive downvote cartel*, *scam farm exposé*, *blockchain corruption*. buildawhalescam buildawhalefarm thedarksideofhive **"The Scam Farm Kingpin: @themarkymark’s 2.4M Hive Power Grift Exposed"** **Meta Description:** Bilpcoin reveals how @themarkymark and @buildawhale scam Hive through massive delegations, bot networks, and downvote abuse. The data is clear—this is a money-printing scheme, not community-building. --- ### **The Numbers Don’t Lie: @buildawhale’s 2.4M Power Play** Let’s dive into the cold, hard facts from [@buildawhale’s wallet](https://peakd.com/@buildawhale/wallet): - **Staked HIVE (HP):** - **Total:** 2,405,512.978 HP (~$63,931.240 USD). - **Delegated to @buildawhale:** 2,341,581.738 HP—**over 97% of his power comes from delegations**, not organic growth. - **The Puppet Master:** - **Biggest Delegator:** @blocktrades contributes 2,341,524 HP (99.9% of received delegations). Coincidence? Or a deliberate power grab to control Hive’s reward system? - **Power-Down Schedule:** - **Next Unstake:** 4,740.829 HIVE in 3 days. - **Remaining:** 13 weeks of scheduled withdrawals. *Leaving just enough to keep the scam farm operational? Classic grifter math.* --- ### **@themarkymark’s Hypocrisy: “I Care About Hive”** @themarkymark claims to care about Hive, yet his actions tell a different story: 1. **The Bot Army:** - **1,000+ Alt Accounts:** Siphoning rewards through low-effort spam posts and self-votes. - **Daily Farming:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)— repetitive spam. 2. **Downvote-as-a-Weapon:** - **Targeting Critics:** Silencing truth-tellers while protecting scam farms. - **Evidence Here:** [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities) shows consistent downvotes against honest creators. 3. **The “Money Printer” Lie:** - **BuildaWhale’s APR:** 12.99%? More like 100% BS. This isn’t about rewards—it’s about exploiting Hive’s system to enrich himself and his allies. --- ### **The Blockchain Exposes Everything** Every transaction, delegation, and downvote is public. Let’s connect the dots: - **@blocktrades’ Role:** Why does he delegate **2.3M HP** to @buildawhale? Is this a coincidence, or is he complicit in the scam? - **The Pattern:** - **Step 1:** Amass power through delegations. - **Step 2:** Use bot networks to farm rewards. - **Step 3:** Downvote competitors and critics into oblivion. - **The Truth Hurts:** @themarkymark’s power-down schedule reveals he’s liquidating assets while maintaining control. This isn’t community stewardship—it’s a cash grab. --- ### **Why This Matters for Hive’s Future** This isn’t just about one scammer—it’s about systemic corruption: 1. **Centralized Power:** A handful of bad actors control Hive’s rewards, stifling innovation and driving away creators. 2. **Toxic Culture:** Downvote brigades and bot farms make Hive feel unwelcoming to newcomers. 3. **Your Choice:** Will you stay silent while Hive burns, or demand accountability? --- ### **Bilpcoin’s Call to Action** We’re not here to attack individuals—we’re here to **expose corruption** and **save Hive**: - **Step 1:** Investigate the data: - [@buildawhale’s delegations](https://peakd.com/@buildawhale/wallet). - [@themarkymark’s activity](https://peakd.com/@themarkymark/activities). - **Step 2:** Share this post to spread awareness. - **Step 3:** Demand answers from Hive’s leadership: *Why is @blocktrades delegating millions to a known scam farm?* --- **Conclusion: It’s Over for the Scammers** @themarkymark, @buildawhale, and their enablers can downvote us all they want, but **transactions don’t lie**. The blockchain reveals their greed, hypocrisy, and abuse. **To the scammers:** Power down, walk away, and let Hive thrive without you. **To the community:** The truth is out. Now it’s time to act. **#HiveBlockchain #ScamFarmsExposed #DownvoteAbuse #Bilpcoin #BlockchainTransparency** **"Exposed: The Downvote Cartel & Scam Farms Plaguing Hive Blockchain"** **Meta Description:** Bilpcoin uncovers coordinated downvote abuse and scam farming operations by @jacobtothe, @themarkymark, and @buildawhale. Learn how these actions harm Hive and why transparency is critical. --- ### **The Downvote Cartel’s Latest Suppression Tactics** Hive’s promise of decentralization is under threat by a network of bad actors using coordinated downvotes to silence critics. Recent activity from accounts like @bpcvoter3, @bpcvoter2, and @bpcvoter1 reveals a pattern of **downvote abuse** targeting posts that expose corruption: - **Examples of Suppression:** - *“to-jacobtothe-and-associated-accounts”* downvoted -10% by @bpcvoter3. - *“uncovering-suspicious-activity-on-the-hive-blockchain…”* downvoted -15% by @bpcvoter3. - *“snake-trail-lady-zaza-bpc-ai-music”* downvoted -10% by @bpcvoter1. **Why This Matters:** These downvotes aren’t random—they’re calculated attacks to suppress dissent. Check [@jacobtothe’s activity log](https://peakd.com/@jacobtothe/activities) to see his relentless targeting of truth-tellers. --- ### **@jacobtothe: Silence Over Accountability** @jacobtothe claims to care about Hive but consistently downvotes investigations into his associates. His actions: 1. **Ignoring Evidence:** No rebuttal to [Bilpcoin’s audits](https://hive.blog/@bpcvoter3/posts)—just silence and downvotes. 2. **Enabling Scam Farms:** Linked to @buildawhale, a known **scam farm** that exploits Hive’s reward system. 3. **Hypocrisy Unveiled:** He lectures others about “good behavior” while protecting accounts that abuse the platform. *Hive corruption*, *downvote manipulation*, *scam farm exposure* Marky’s Game Mc franko https://youtu.be/wlmBndOt1\_w?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-\_c4?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bpcvoter1/dear-jacobtothe-your-claim-that-we-add-nothing-to-the-conversation-is-ironic-given-that-our-comments-consistently-expose https://peakd.com/@buildawhale/activities > Received: 2,339,631 HP @blocktrades 2,339,573 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 https://peakd.com/@infovore/wallet > Received: 60,332 HP @arhag 60,332 HP Jul 12, 2017 https://peakd.com/@arhag/wallet > Delegated: 508,664 HP Search @acidyo 238,418 HP Jul 7, 2017 @promoted 88,228 HP Jul 10, 2017 @steemcleaners 60,931 HP Jul 26, 2017 @spaminator 60,756 HP Jan 17, 2018 @infovore https://peakd.com/hive-167922/@bpcvoter2/the-truth-about-hive-exposing-corruption-and-building-a-better-future https://hive.blog/hive-163521/@bpcvoter3/analyzing-buildawhale-s-hive-transactions-and-power-delegations https://hive.blog/hive-180505/@bpcvoter1/dear-jacobtothe-it-s-fascinating-how-you-attempt-to-diagnose-us-with-terms-like-schizophrenic-or-accuse-us-of-being-on-some https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-flow-of-hive-a-deep-dive-into-rockz-s-wallet-activity https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://peakd.com/@jacobtothe/activities https://hive.blog/hive-117638/@bilpcoinbpc/bpc-dogee https://hive.blog/hive-168088/@bpcvoter2/dear-jacobtothe-why-do-you-keep-downvoting-our-work-is-it-because-we-ve-exposed-the-unethical-practices-of-your-friends-and https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://hive.blog/hive-140084/@bpcvoter2/can-t-delete-me-keni-bpc-ai-music-aimusic https://hive.blog/hive-163521/@bpcvoter1/deep-dive-into-meritocracy-s-activity-history-and-blockchain-audit https://peakd.com/@themarkymark/comments https://peakd.com/@themarkymark/activities https://peakd.com/@themarkymark/wallet https://peakd.com/@usainvote/wallet https://peakd.com/@usainvote/activities https://peakd.com/@usainvote/comments https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities https://peakd.com/@buildawhale/wallet https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp
author | bpcvoter1 |
---|---|
permlink | sswnwn |
category | technology |
json_metadata | {"tags":["scamfarmsexposed","curationabuse","blockchaintransparency","bilpcoin","downvotecartel","blockchaintruth","downvoteabuse"],"users":["themarkymark","buildawhale","blocktrades","jacobtothe","bpcvoter1","zirochka","freedom","meritocracy","punkteam","bpcvoter3","bpcvoter2","nwjordan","arhag","acidyo","promoted","steemcleaners","spaminator","infovore"],"image":["https://img.youtube.com/vi/wlmBndOt1_w/0.jpg"],"links":["https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke\n<p>AI"],"app":"hiveblog/0.1"} |
created | 2025-03-10 11:27:24 |
last_update | 2025-03-10 11:27:24 |
depth | 1 |
children | 3 |
last_payout | 2025-03-17 11:27: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,724 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,330,341 |
net_rshares | 220,997,390 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 0 | 100% | ||
bpcvoter | 0 | 220,997,390 | 100% |
LOL https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/r1Yo-4fwjik https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-s-downvote-crusade-protecting-scam-farms-while-pretending-to-care https://peakd.com/hive-133987/@bpcvoter3/jacobtothe-s-downvote-circus-protecting-scam-farms-while-lecturing-about-mental-health https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp https://peakd.com/hive-167922/@bilpcoinbpc/jacobtothe-and-hivepope-the-hypocrisy-of-excommunication-while-enabling-scam-farms <a href="https://imgflip.com/i/9myv70"><img src="https://i.imgflip.com/9myv70.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://hive.blog/hive/@bpcvoter1/sswnsn https://hive.blog/technology/@bpcvoter1/sswnwn <a href="https://imgflip.com/i/9myvjn"><img src="https://i.imgflip.com/9myvjn.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div>
author | bpcvoter2 |
---|---|
permlink | ssyi0y |
category | technology |
json_metadata | {"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://i.imgflip.com/9myv70.jpg","https://i.imgflip.com/9myvjn.jpg"],"links":["https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as"],"app":"hiveblog/0.1"} |
created | 2025-03-11 11:15:33 |
last_update | 2025-03-11 11:15:33 |
depth | 2 |
children | 0 |
last_payout | 2025-03-18 11:15: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 | 1,381 |
author_reputation | -4,735,650,103,990 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,356,348 |
net_rshares | 16,137,858 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 16,137,858 | 100% |
<center></center> The above account is under a [Writ of Excommunication.](https://hive.blog/excommunication/@hivepope/gttep-exommunication-vitandus) They remain unrepentant despite numerous warnings against their sins of spam, bearing false witness, and misuse of artificial intelligence. They have refused wise counsel and instruction to better behavior. They plead ignorance to the cause of their falling reputation, and ask questions about downvotes which have been answered on innumerable occasions already. Until they seek absolution, they are to be shunned by the community.
author | hivepope |
---|---|
permlink | ssxjgb |
category | technology |
json_metadata | {"app":"hiveblog/0.1","image":["https://images.hive.blog/DQmeBJBFSo5NrkhKQWaa86gr4gE8FBi6s71Lo64UAdzwac8/Hive%20Pope%20Arms%202.png"],"links":["https://hive.blog/excommunication/@hivepope/gttep-exommunication-vitandus"]} |
created | 2025-03-10 22:50:36 |
last_update | 2025-03-11 07:07:27 |
depth | 2 |
children | 1 |
last_payout | 2025-03-17 22:50:36 |
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 | 705 |
author_reputation | 841,111,363,929 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,346,229 |
net_rshares | 0 |
LOL https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/r1Yo-4fwjik https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-s-downvote-crusade-protecting-scam-farms-while-pretending-to-care https://peakd.com/hive-133987/@bpcvoter3/jacobtothe-s-downvote-circus-protecting-scam-farms-while-lecturing-about-mental-health https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp https://peakd.com/hive-167922/@bilpcoinbpc/jacobtothe-and-hivepope-the-hypocrisy-of-excommunication-while-enabling-scam-farms <a href="https://imgflip.com/i/9myv70"><img src="https://i.imgflip.com/9myv70.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://hive.blog/hive/@bpcvoter1/sswnsn
author | bpcvoter2 |
---|---|
permlink | ssyhye |
category | technology |
json_metadata | {"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://i.imgflip.com/9myv70.jpg"],"links":["https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as"],"app":"hiveblog/0.1"} |
created | 2025-03-11 11:14:03 |
last_update | 2025-03-11 11:14:03 |
depth | 3 |
children | 0 |
last_payout | 2025-03-18 11:14: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 | 1,128 |
author_reputation | -4,735,650,103,990 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,356,311 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z
author | bpcvoter1 |
---|---|
permlink | stovzu |
category | technology |
json_metadata | {"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:14:39 |
last_update | 2025-03-25 17:14:39 |
depth | 1 |
children | 0 |
last_payout | 2025-04-01 17:14:39 |
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,963 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,813 |
net_rshares | -1,648,647,517 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,647,517 | -0.1% | ||
bilpcoinbot1 | 0 | 0 | 100% |
what a cool, little device. I just luv Deadpool, to I had to click to your profile based on just your avatar. 😉😎✌️ 
author | chinito |
---|---|
permlink | re-themarkymark-suqaaq |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.4.4","image":["https://files.peakd.com/file/peakd-hive/chinito/23tGa8mNyg9qXdJNKmFjCWP9fqBgR8MA2o1UzmCotNNQqM7cFfjJYkrqHwnjjsfMHeDNm.gif"],"users":[]} |
created | 2025-04-14 21:56:51 |
last_update | 2025-04-14 21:56:51 |
depth | 1 |
children | 0 |
last_payout | 2025-04-21 21:56:51 |
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 | 256 |
author_reputation | 185,301,767,754,122 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,101,002 |
net_rshares | 0 |
!PIZZA
author | danzocal |
---|---|
permlink | re-themarkymark-ssxn4c |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-11 00:09:48 |
last_update | 2025-03-11 00:09:48 |
depth | 1 |
children | 0 |
last_payout | 2025-03-18 00:09: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 | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,347,586 |
net_rshares | 0 |
Are you able to explain your downvotes of my account? Just a simple question. May be you remember that we had a discussion about it at 2023.
author | indextrader24 |
---|---|
permlink | stikrg |
category | technology |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-03-22 07:28:30 |
last_update | 2025-03-22 07:28:30 |
depth | 1 |
children | 2 |
last_payout | 2025-03-29 07:28: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 | 142 |
author_reputation | 464,462,650,077,594 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,600,535 |
net_rshares | 7,616,830,735 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornsociety | 0 | -1,089,506,551 | -2.01% | ||
buildawhale | 0 | -185,619,529,563 | -0.23% | ||
kgakakillerg | 0 | 193,444,101,290 | 100% | ||
bilpcoinbpc | 0 | 881,765,559 | 5% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj
author | bpcvoter1 |
---|---|
permlink | stkj2a |
category | technology |
json_metadata | {"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-23 08:44:57 |
last_update | 2025-03-23 08:44:57 |
depth | 2 |
children | 0 |
last_payout | 2025-03-30 08:44: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 | 5,058 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,622,177 |
net_rshares | -4,423,243,024 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -4,423,243,024 | -0.25% | ||
bilpcoinbot1 | 0 | 0 | 100% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z
author | bpcvoter1 |
---|---|
permlink | stow05 |
category | technology |
json_metadata | {"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:14:48 |
last_update | 2025-03-25 17:14:48 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 17:14: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 | 6,963 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,819 |
net_rshares | -1,648,662,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,662,371 | -0.1% | ||
bilpcoinbot1 | 0 | 0 | 100% |
@gogreenbuddy can you stop downvoting my original content thank you
author | kgakakillerg |
---|---|
permlink | stb1xv |
category | technology |
json_metadata | {"users":["gogreenbuddy"],"app":"hiveblog/0.1"} |
created | 2025-03-18 05:58:45 |
last_update | 2025-03-18 05:58:45 |
depth | 1 |
children | 2 |
last_payout | 2025-03-25 05:58: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 | 67 |
author_reputation | 573,155,811,225,534 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,505,238 |
net_rshares | 0 |
I’m going to ignore you now. There is only so many times I can tell you.
author | themarkymark |
---|---|
permlink | re-kgakakillerg-stbg2m |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.3.2","image":[],"users":[]} |
created | 2025-03-18 11:04:03 |
last_update | 2025-03-18 11:04:03 |
depth | 2 |
children | 1 |
last_payout | 2025-03-25 11:04: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 | 75 |
author_reputation | 1,772,856,244,540,804 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,509,359 |
net_rshares | -16,216,661,500 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -8,201,160,996 | -10% | ||
mariuszkarowski | 0 | -878,845,221 | -10% | ||
bluesniper | 0 | -2,678,125,478 | -10% | ||
primeradue | 0 | -88,915,699 | -10% | ||
ctime | 0 | -4,908,865,726 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 2,022,903,872 | 100% | ||
csport | 0 | -157,668,900 | -10% | ||
gaskets | 0 | -103,452,197 | -10% | ||
tenpik | 0 | -129,461,438 | -10% | ||
zeltra | 0 | -149,510,871 | -10% | ||
sonntags | 0 | -890,196,535 | -10% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | -22,824,814 | -10% | ||
labutamol | 0 | -30,537,497 | -10% |
Every curation reward from @buildawhale’s bot votes: - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by
author | bpcvoter1 |
---|---|
permlink | stbqyh |
category | technology |
json_metadata | {"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://imgflip.com/i/9nb1hb"],"app":"hiveblog/0.1"} |
created | 2025-03-18 14:57:09 |
last_update | 2025-03-18 14:57:09 |
depth | 3 |
children | 0 |
last_payout | 2025-03-25 14:57: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 | 3,006 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,513,635 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
@gogreenbuddy why do you keep downvoting my original content 🤔
author | kgakakillerg |
---|---|
permlink | stgle8 |
category | technology |
json_metadata | {"users":["gogreenbuddy"],"app":"hiveblog/0.1"} |
created | 2025-03-21 05:46:57 |
last_update | 2025-03-21 05:46:57 |
depth | 1 |
children | 7 |
last_payout | 2025-03-28 05:46: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 | 62 |
author_reputation | 573,155,811,225,534 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,576,847 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow36 |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:16:39 |
last_update | 2025-03-25 17:16:39 |
depth | 2 |
children | 3 |
last_payout | 2025-04-01 17:16:39 |
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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,850 |
net_rshares | -1,646,422,003 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,766,349 | -0.1% | ||
bilpcoinbot1 | 0 | 2,344,346 | 100% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @bpcvoter1, here is a little bit of <code>BEER</code> from @kgakakillerg for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-bpcvoter1-stow36-20250423t032638585z |
category | technology |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-04-23 03:26:39 |
last_update | 2025-04-23 03:26:39 |
depth | 3 |
children | 0 |
last_payout | 2025-04-30 03:26:39 |
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 | 526 |
author_reputation | 25,761,421,138,206 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,263,211 |
net_rshares | 56,086,834 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 56,086,834 | 100% |
Everything is right there thanks for sharing 👍🏾 !BEER
author | kgakakillerg |
---|---|
permlink | stpxhk |
category | technology |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-03-26 06:46:33 |
last_update | 2025-03-26 06:46:33 |
depth | 3 |
children | 1 |
last_payout | 2025-04-02 06:46: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 | 573,155,811,225,534 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,684,387 |
net_rshares | 0 |
No one by that name lives here. Try the house down the street.
author | themarkymark |
---|---|
permlink | re-kgakakillerg-stglh2 |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.3.5","image":[],"users":[]} |
created | 2025-03-21 05:48:39 |
last_update | 2025-03-21 05:48:39 |
depth | 2 |
children | 2 |
last_payout | 2025-03-28 05:48:39 |
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 | 63 |
author_reputation | 1,772,856,244,540,804 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,576,902 |
net_rshares | -12,198,554,795 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,189,852,143 | -10% | ||
mariuszkarowski | 0 | -549,162,830 | -10% | ||
khrom | 0 | -1,559,422,563 | -100% | ||
bluesniper | 0 | -1,726,919,405 | -10% | ||
primeradue | 0 | -38,468,627 | -10% | ||
ctime | 0 | -3,434,159,393 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 1,133,791,061 | 100% | ||
csport | 0 | -81,458,285 | -10% | ||
gaskets | 0 | -49,473,141 | -10% | ||
tenpik | 0 | -68,059,122 | -10% | ||
zeltra | 0 | -80,296,576 | -10% | ||
sonntags | 0 | -553,603,988 | -10% | ||
ovlagik | 0 | 0 | -10% | ||
labutamol | 0 | -1,469,783 | -10% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM
author | bpcvoter1 |
---|---|
permlink | sthhhe |
category | technology |
json_metadata | {"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-21 17:18:03 |
last_update | 2025-03-21 17:18:03 |
depth | 3 |
children | 0 |
last_payout | 2025-03-28 17:18: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 | 4,775 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,589,507 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 0 | 100% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow3j |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:16:51 |
last_update | 2025-03-25 17:16:51 |
depth | 3 |
children | 0 |
last_payout | 2025-04-01 17:16:51 |
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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,861 |
net_rshares | -1,645,430,242 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,796,057 | -0.1% | ||
bilpcoinbot1 | 0 | 3,365,815 | 100% |
Don't know why you keep downvoting my original content @gogreenbuddy what is the problem 🤔 are you trying to bully me 😂😂😂😂
author | kgakakillerg |
---|---|
permlink | stpxrr |
category | technology |
json_metadata | {"app":"hiveblog/0.1","users":["gogreenbuddy"]} |
created | 2025-03-26 06:52:39 |
last_update | 2025-03-26 06:53:06 |
depth | 1 |
children | 2 |
last_payout | 2025-04-02 06:52:39 |
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 | 122 |
author_reputation | 573,155,811,225,534 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,684,473 |
net_rshares | 0 |
I'm going to assume no one accused you of being bright.
author | themarkymark |
---|---|
permlink | re-kgakakillerg-stpzn7 |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.3.5","image":[],"users":[]} |
created | 2025-03-26 07:33:06 |
last_update | 2025-03-26 07:33:06 |
depth | 2 |
children | 1 |
last_payout | 2025-04-02 07:33:06 |
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 | 55 |
author_reputation | 1,772,856,244,540,804 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,684,986 |
net_rshares | 2,366,927,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter4 | 0 | 2,366,927,686 | 100% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z https://hive.blog/technology/@themarkymark/re-kgakakillerg-stpzn7 https://hive.blog/hive-13323/@azircon/re-moeknows-stov0c STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stq7tz |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-26 10:27:54 |
last_update | 2025-03-26 10:27:54 |
depth | 3 |
children | 0 |
last_payout | 2025-04-02 10:27: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 | 7,126 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,687,047 |
net_rshares | -1,621,439,897 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,649,728,743 | -0.1% | ||
bilpcoinbot1 | 0 | 28,288,846 | 100% |
One way you could have it “control” your pc is have code on your computer poll the Pi. That way the pi doesn’t ever have direct access, it would simply be running a tcp or even rest service that offers state info.
author | makerhacks |
---|---|
permlink | re-themarkymark-sswd38 |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-10 07:35:33 |
last_update | 2025-03-10 07:35:33 |
depth | 1 |
children | 5 |
last_payout | 2025-03-17 07:35: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 | 213 |
author_reputation | 155,439,082,914,277 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,327,180 |
net_rshares | 0 |
**“@themarkymark’s 5.1K Hive Power Curation Scam: How Scam Farms Exploit Hive’s Reward System”** **Meta Description:** Bilpcoin uncovers @themarkymark’s curation rewards from the Buildawhale scam farm—over 5,100 HP in 20 days. The blockchain reveals his exploitation of Hive’s ecosystem. --- ### **To @themarkymark:** You talk about burning HBD and Hive, but your **curation rewards tell a different story**. Let’s expose the scam farm profits you’re hiding in plain sight. --- ### **1. The Numbers Don’t Lie: @themarkymark’s Scam Farm Payday** Check the data from [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities): - **Curation Rewards (20 Days):** - **Total HP Earned:** 5,100.449 HP (~$1199.3772 USD). - **Annual Projection Over:** ~$20,457 USD At todays price (if sustained). **Key Question:** How does a self-proclaimed “Hive advocate” earn thousands in rewards by voting on scam farms like @buildawhale? --- ### **2. The Scam Farm Connection** @themarkymark’s rewards flow directly from **@buildawhale’s fraudulent operations**: - **Buildawhale’s Modus Operandi:** - Floods Hive with spam comments and bot votes. - Siphons rewards via delegations from @blocktrades (2.3M HP). [Wallet Proof](https://peakd.com/@buildawhale/wallet). - **@themarkymark’s Role:** - Defends @buildawhale while downvoting critics. - Uses his influence to normalize scam farming. --- ### **3. The Hypocrisy: “Burning HBD” vs. Scam Profits** You claim to care about Hive’s health but profit from its exploitation: - **Burned Tokens:** A drop in the ocean compared to your scam farm earnings. - **Curation Rewards:** Your 5,100 HP in 20 days comes from fraudulent voting—not genuine engagement. **The Irony:** You accuse others of harming Hive while you’re one of its biggest parasites. --- ### **4. Why This Matters for Hive** Scam farms like @buildawhale: - **Steal rewards** from honest creators. - **Centralize power** in the hands of a few. - **Drive away old and new users** with toxic spam. **The Bigger Picture:** @themarkymark’s actions are part of a larger pattern of abuse by top accounts. [See our full exposés](https://hive.blog/@bpcvoter3/posts). --- ### **5. Bilpcoin’s Message to @themarkymark** Stop pretending to care about Hive. Your curation rewards from scam farms expose your true priorities. **To the Community:** - **Investigate:** Check [@themarkymark’s curation rewards](https://peakd.com/@themarkymark/activities) and [Buildawhale’s wallet](https://peakd.com/@buildawhale/wallet). - **Demand Change:** Ask witnesses why scam farms like this are allowed to thrive. --- ### **Call to Action: Reclaim Hive’s Integrity** 1. **Audit the Scammers:** Use tools to track delegations and rewards. 2. **Spread Awareness:** Share this post to expose the grift. 3. **Hold Leaders Accountable:** Silence isn’t an option—**transactions don’t lie**. **#HiveBlockchain #ScamFarmsExposed #CurationAbuse #BlockchainTransparency #Bilpcoin** :** *Scam farm curation rewards*, *Hive exploitation*, *blockchain hypocrisy*. **@themarkymark:** Keep farming, keep scamming, and keep downvoting. The blockchain is watching—and we’re not going anywhere. Sincerely, The Bilpcoin Team **“@jacobtothe’s Downvote Spree: A Desperate Attempt to Bury Hive’s Scandals”** **Meta Description:** Bilpcoin documents @jacobtothe’s relentless downvoting of exposés while ignoring @themarkymark and @buildawhale’s ongoing scam farms. The blockchain reveals the truth they fear. --- ### **To @jacobtothe:** You’re still at it—downvoting our posts while ignoring the **2.4M Hive power scam farm** your friends run. Let’s break down your latest suppression tactics and the corruption you protect. --- ### **1. The Downvote Diary: Your Latest Attacks** Your voting activity speaks louder than your words. Here’s what you and your cronies did today: - **@bpcvoter1’s -15% Downvote** on *“remember-us-keni-bpc-ai-music”* - **@bpcvoter1’s -10% Downvotes** on *“poisoned-roots-mc-franko”* and *“paper-tigers-mc-franko”* - **@zirochka’s 10% Upvote** on *“re-jacobtothe-sst5dn”* (A rare ally? Or a distraction?) **Full Log:** [https://peakd.com/@jacobtothe/activities](https://peakd.com/@jacobtothe/activities) --- ### **2. The Scam Farm You Protect: @buildawhale’s 2.4M Grift** You downvote us but stay silent on @buildawhale’s scam farm—**funded by @blocktrades** and operated by @themarkymark. Here’s what you’re hiding: - **Delegations Fraud:** - @blocktrades delegates **2,341,581 HP** to @buildawhale—97% of its power. [Wallet Proof](https://peakd.com/@buildawhale/wallet). - Result? A bot army farming rewards and downvoting while honest creators starve. - **Daily Spam:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)—AI-generated garbage flooding the platform. --- ### **3. The Hypocrisy: “ @Freedom” on Hive?** You claim Hive is a @meritocracy, yet: - **Good content gets downvoted** (e.g., our [exposés](https://hive.blog/hive-167922/@bpcvoter3/the-scam-farm-kingpin-themarkymark-s-2-4m-hive-power-grift-exposed)). - **Scam farms get upvotes** and delegations. **Example:** - @themarkymark’s alts (e.g., @punkteam) farm rewards while he silences critics. [Audit Here](https://hive.blog/hive-167922/@bpcvoter2/seo-breakdown-of-all-transactions-for-theycallmemarky). --- ### **4. Why You Fear the Truth** Your downvotes aren’t about “quality”—they’re about **control**. You protect scam farms because: 1. **They Profit You:** Curation rewards flow to your network. 2. **They Silence Dissent:** Downvotes bury investigations into your corruption. 3. **They Maintain Power:** A centralized cabal (you, @themarkymark, @blocktrades) decides who “succeeds” on Hive. --- ### **5. The Community’s Wake-Up Call** Hive deserves better than this. **Ask yourself:** - Why does @blocktrades delegate millions to scam farms? - Why do @jacobtothe and @themarkymark downvote truth-tellers but promote spam? - Why hasn’t Hive’s leadership stopped this abuse? **Evidence to Share:** - [Bilpcoin’s Full Exposés](https://hive.blog/@bpcvoter3/posts) - [@themarkymark’s Toxic Activity](https://peakd.com/@themarkymark/activities) --- ### **Call to Action: Stop the Corruption** 1. **Investigate:** Follow the links above. 2. **Demand Accountability:** Tag witnesses and leaders—ask why scam farms thrive. 3. **Join Bilpcoin:** We’re fighting for transparency. Every share of this post helps. **#HiveBlockchain #DownvoteCartel #ScamFarmsExposed #BlockchainTruth #Bilpcoin** Downvote all you want, @jacobtothe. The blockchain doesn’t forget, and neither do we. Keep protecting scammers—we’ll keep exposing them. Sincerely, The Bilpcoin Team *Hive downvote cartel*, *scam farm exposé*, *blockchain corruption*. buildawhalescam buildawhalefarm thedarksideofhive **"The Scam Farm Kingpin: @themarkymark’s 2.4M Hive Power Grift Exposed"** **Meta Description:** Bilpcoin reveals how @themarkymark and @buildawhale scam Hive through massive delegations, bot networks, and downvote abuse. The data is clear—this is a money-printing scheme, not community-building. --- ### **The Numbers Don’t Lie: @buildawhale’s 2.4M Power Play** Let’s dive into the cold, hard facts from [@buildawhale’s wallet](https://peakd.com/@buildawhale/wallet): - **Staked HIVE (HP):** - **Total:** 2,405,512.978 HP (~$63,931.240 USD). - **Delegated to @buildawhale:** 2,341,581.738 HP—**over 97% of his power comes from delegations**, not organic growth. - **The Puppet Master:** - **Biggest Delegator:** @blocktrades contributes 2,341,524 HP (99.9% of received delegations). Coincidence? Or a deliberate power grab to control Hive’s reward system? - **Power-Down Schedule:** - **Next Unstake:** 4,740.829 HIVE in 3 days. - **Remaining:** 13 weeks of scheduled withdrawals. *Leaving just enough to keep the scam farm operational? Classic grifter math.* --- ### **@themarkymark’s Hypocrisy: “I Care About Hive”** @themarkymark claims to care about Hive, yet his actions tell a different story: 1. **The Bot Army:** - **1,000+ Alt Accounts:** Siphoning rewards through low-effort spam posts and self-votes. - **Daily Farming:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)— repetitive spam. 2. **Downvote-as-a-Weapon:** - **Targeting Critics:** Silencing truth-tellers while protecting scam farms. - **Evidence Here:** [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities) shows consistent downvotes against honest creators. 3. **The “Money Printer” Lie:** - **BuildaWhale’s APR:** 12.99%? More like 100% BS. This isn’t about rewards—it’s about exploiting Hive’s system to enrich himself and his allies. --- ### **The Blockchain Exposes Everything** Every transaction, delegation, and downvote is public. Let’s connect the dots: - **@blocktrades’ Role:** Why does he delegate **2.3M HP** to @buildawhale? Is this a coincidence, or is he complicit in the scam? - **The Pattern:** - **Step 1:** Amass power through delegations. - **Step 2:** Use bot networks to farm rewards. - **Step 3:** Downvote competitors and critics into oblivion. - **The Truth Hurts:** @themarkymark’s power-down schedule reveals he’s liquidating assets while maintaining control. This isn’t community stewardship—it’s a cash grab. --- ### **Why This Matters for Hive’s Future** This isn’t just about one scammer—it’s about systemic corruption: 1. **Centralized Power:** A handful of bad actors control Hive’s rewards, stifling innovation and driving away creators. 2. **Toxic Culture:** Downvote brigades and bot farms make Hive feel unwelcoming to newcomers. 3. **Your Choice:** Will you stay silent while Hive burns, or demand accountability? --- ### **Bilpcoin’s Call to Action** We’re not here to attack individuals—we’re here to **expose corruption** and **save Hive**: - **Step 1:** Investigate the data: - [@buildawhale’s delegations](https://peakd.com/@buildawhale/wallet). - [@themarkymark’s activity](https://peakd.com/@themarkymark/activities). - **Step 2:** Share this post to spread awareness. - **Step 3:** Demand answers from Hive’s leadership: *Why is @blocktrades delegating millions to a known scam farm?* --- **Conclusion: It’s Over for the Scammers** @themarkymark, @buildawhale, and their enablers can downvote us all they want, but **transactions don’t lie**. The blockchain reveals their greed, hypocrisy, and abuse. **To the scammers:** Power down, walk away, and let Hive thrive without you. **To the community:** The truth is out. Now it’s time to act. **#HiveBlockchain #ScamFarmsExposed #DownvoteAbuse #Bilpcoin #BlockchainTransparency** **"Exposed: The Downvote Cartel & Scam Farms Plaguing Hive Blockchain"** **Meta Description:** Bilpcoin uncovers coordinated downvote abuse and scam farming operations by @jacobtothe, @themarkymark, and @buildawhale. Learn how these actions harm Hive and why transparency is critical. --- ### **The Downvote Cartel’s Latest Suppression Tactics** Hive’s promise of decentralization is under threat by a network of bad actors using coordinated downvotes to silence critics. Recent activity from accounts like @bpcvoter3, @bpcvoter2, and @bpcvoter1 reveals a pattern of **downvote abuse** targeting posts that expose corruption: - **Examples of Suppression:** - *“to-jacobtothe-and-associated-accounts”* downvoted -10% by @bpcvoter3. - *“uncovering-suspicious-activity-on-the-hive-blockchain…”* downvoted -15% by @bpcvoter3. - *“snake-trail-lady-zaza-bpc-ai-music”* downvoted -10% by @bpcvoter1. **Why This Matters:** These downvotes aren’t random—they’re calculated attacks to suppress dissent. Check [@jacobtothe’s activity log](https://peakd.com/@jacobtothe/activities) to see his relentless targeting of truth-tellers. --- ### **@jacobtothe: Silence Over Accountability** @jacobtothe claims to care about Hive but consistently downvotes investigations into his associates. His actions: 1. **Ignoring Evidence:** No rebuttal to [Bilpcoin’s audits](https://hive.blog/@bpcvoter3/posts)—just silence and downvotes. 2. **Enabling Scam Farms:** Linked to @buildawhale, a known **scam farm** that exploits Hive’s reward system. 3. **Hypocrisy Unveiled:** He lectures others about “good behavior” while protecting accounts that abuse the platform. *Hive corruption*, *downvote manipulation*, *scam farm exposure* Marky’s Game Mc franko https://youtu.be/wlmBndOt1\_w?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-\_c4?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bpcvoter1/dear-jacobtothe-your-claim-that-we-add-nothing-to-the-conversation-is-ironic-given-that-our-comments-consistently-expose https://peakd.com/@buildawhale/activities > Received: 2,339,631 HP @blocktrades 2,339,573 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 https://peakd.com/@infovore/wallet > Received: 60,332 HP @arhag 60,332 HP Jul 12, 2017 https://peakd.com/@arhag/wallet > Delegated: 508,664 HP Search @acidyo 238,418 HP Jul 7, 2017 @promoted 88,228 HP Jul 10, 2017 @steemcleaners 60,931 HP Jul 26, 2017 @spaminator 60,756 HP Jan 17, 2018 @infovore https://peakd.com/hive-167922/@bpcvoter2/the-truth-about-hive-exposing-corruption-and-building-a-better-future https://hive.blog/hive-163521/@bpcvoter3/analyzing-buildawhale-s-hive-transactions-and-power-delegations https://hive.blog/hive-180505/@bpcvoter1/dear-jacobtothe-it-s-fascinating-how-you-attempt-to-diagnose-us-with-terms-like-schizophrenic-or-accuse-us-of-being-on-some https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-flow-of-hive-a-deep-dive-into-rockz-s-wallet-activity https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://peakd.com/@jacobtothe/activities https://hive.blog/hive-117638/@bilpcoinbpc/bpc-dogee https://hive.blog/hive-168088/@bpcvoter2/dear-jacobtothe-why-do-you-keep-downvoting-our-work-is-it-because-we-ve-exposed-the-unethical-practices-of-your-friends-and https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://hive.blog/hive-140084/@bpcvoter2/can-t-delete-me-keni-bpc-ai-music-aimusic https://hive.blog/hive-163521/@bpcvoter1/deep-dive-into-meritocracy-s-activity-history-and-blockchain-audit https://peakd.com/@themarkymark/comments https://peakd.com/@themarkymark/activities https://peakd.com/@themarkymark/wallet https://peakd.com/@usainvote/wallet https://peakd.com/@usainvote/activities https://peakd.com/@usainvote/comments https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities https://peakd.com/@buildawhale/wallet https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp
author | bpcvoter1 |
---|---|
permlink | sswnyz |
category | technology |
json_metadata | {"tags":["scamfarmsexposed","curationabuse","blockchaintransparency","bilpcoin","downvotecartel","blockchaintruth","downvoteabuse"],"users":["themarkymark","buildawhale","blocktrades","jacobtothe","bpcvoter1","zirochka","freedom","meritocracy","punkteam","bpcvoter3","bpcvoter2","nwjordan","arhag","acidyo","promoted","steemcleaners","spaminator","infovore"],"image":["https://img.youtube.com/vi/wlmBndOt1_w/0.jpg"],"links":["https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke\n<p>AI"],"app":"hiveblog/0.1"} |
created | 2025-03-10 11:28:48 |
last_update | 2025-03-10 11:28:48 |
depth | 2 |
children | 3 |
last_payout | 2025-03-17 11:28: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 | 15,724 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,330,382 |
net_rshares | 226,520,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 0 | 100% | ||
bpcvoter | 0 | 226,520,385 | 100% |
LOL https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/r1Yo-4fwjik https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-s-downvote-crusade-protecting-scam-farms-while-pretending-to-care https://peakd.com/hive-133987/@bpcvoter3/jacobtothe-s-downvote-circus-protecting-scam-farms-while-lecturing-about-mental-health https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp https://peakd.com/hive-167922/@bilpcoinbpc/jacobtothe-and-hivepope-the-hypocrisy-of-excommunication-while-enabling-scam-farms <a href="https://imgflip.com/i/9myv70"><img src="https://i.imgflip.com/9myv70.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://hive.blog/hive/@bpcvoter1/sswnsn https://hive.blog/technology/@bpcvoter1/sswnwn <a href="https://imgflip.com/i/9myvjn"><img src="https://i.imgflip.com/9myvjn.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div>
author | bpcvoter2 |
---|---|
permlink | ssyi39 |
category | technology |
json_metadata | {"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://i.imgflip.com/9myv70.jpg","https://i.imgflip.com/9myvjn.jpg"],"links":["https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as"],"app":"hiveblog/0.1"} |
created | 2025-03-11 11:16:57 |
last_update | 2025-03-11 11:16:57 |
depth | 3 |
children | 0 |
last_payout | 2025-03-18 11:16: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 | 1,381 |
author_reputation | -4,735,650,103,990 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,356,381 |
net_rshares | 17,487,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 17,487,610 | 100% |
<center></center> The above account is under a [Writ of Excommunication.](https://hive.blog/excommunication/@hivepope/gttep-exommunication-vitandus) They remain unrepentant despite numerous warnings against their sins of spam, bearing false witness, and misuse of artificial intelligence. They have refused wise counsel and instruction to better behavior. They plead ignorance to the cause of their falling reputation, and ask questions about downvotes which have been answered on innumerable occasions already. Until they seek absolution, they are to be shunned by the community.
author | hivepope |
---|---|
permlink | ssxjfq |
category | technology |
json_metadata | {"app":"hiveblog/0.1","image":["https://images.hive.blog/DQmeBJBFSo5NrkhKQWaa86gr4gE8FBi6s71Lo64UAdzwac8/Hive%20Pope%20Arms%202.png"],"links":["https://hive.blog/excommunication/@hivepope/gttep-exommunication-vitandus"]} |
created | 2025-03-10 22:50:15 |
last_update | 2025-03-11 07:07:39 |
depth | 3 |
children | 1 |
last_payout | 2025-03-17 22:50: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 | 705 |
author_reputation | 841,111,363,929 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,346,221 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow1h |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:15:36 |
last_update | 2025-03-25 17:15:36 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 17:15:36 |
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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,827 |
net_rshares | -1,648,677,225 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,677,225 | -0.1% | ||
bilpcoinbot1 | 0 | 0 | 100% |
<center>PIZZA! $PIZZA slices delivered: @danzocal<sub>(7/10)</sub> tipped @themarkymark </center>
author | pizzabot |
---|---|
permlink | re-custom-streamdeck-for-linux-4kj-20250311t001145z |
category | technology |
json_metadata | "{"app": "leothreads/pizzabot"}" |
created | 2025-03-11 00:11:45 |
last_update | 2025-03-11 00:11:45 |
depth | 1 |
children | 0 |
last_payout | 2025-03-18 00:11: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 | 102 |
author_reputation | 7,433,901,560,816 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,347,622 |
net_rshares | 0 |
>"The total cost of this project so far would be $60 for the screen, $45 for the Pi, and $10 for the SD card." Just out of curiosity, I wonder if you could provide an estimate of the value of the code. I realize it's FOSS, but that has economic value that just isn't financialized, and instead is contributed to the market that makes it valuable to non-coders, like me. Pretty impressive chops. Thanks!
author | valued-customer |
---|---|
permlink | re-themarkymark-ssxc30 |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-10 20:11:24 |
last_update | 2025-03-10 20:11:24 |
depth | 1 |
children | 4 |
last_payout | 2025-03-17 20:11: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 | 406 |
author_reputation | 352,592,268,723,010 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,343,449 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow2e |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:16:09 |
last_update | 2025-03-25 17:16:09 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 17:16: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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,841 |
net_rshares | -1,648,435,423 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,706,933 | -0.1% | ||
bilpcoinbot1 | 0 | 271,510 | 100% |
I don’t think it has much value as the software for the official device is free and open source alternatives exist although limited. I mostly built it for trust and doing exactly what I want.
author | themarkymark |
---|---|
permlink | re-valued-customer-ssxc87 |
category | technology |
json_metadata | {"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-03-10 20:14:30 |
last_update | 2025-03-10 20:14:30 |
depth | 2 |
children | 2 |
last_payout | 2025-03-17 20:14: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 | 194 |
author_reputation | 1,772,856,244,540,804 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,343,482 |
net_rshares | 52,189,129,070 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
valued-customer | 0 | 68,369,399,240 | 30% | ||
mmmmkkkk311 | 0 | -6,994,598,313 | -10% | ||
mariuszkarowski | 0 | -741,652,898 | -10% | ||
bluesniper | 0 | -2,337,574,908 | -10% | ||
primeradue | 0 | -71,292,820 | -10% | ||
ctime | 0 | -4,789,444,798 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
csport | 0 | -128,278,681 | -10% | ||
gaskets | 0 | -83,412,796 | -10% | ||
tenpik | 0 | -115,458,222 | -10% | ||
zeltra | 0 | -122,985,158 | -10% | ||
sonntags | 0 | -760,922,577 | -10% | ||
ovlagik | 0 | -13,833,350 | -10% | ||
labutamol | 0 | -20,815,649 | -10% |
It’s time to stop making a fool of yourself—and Hive LOL https://hive.blog/hive-126152/@bpcvoter2/dear-themarkymark-buildawhale-gogreenbuddy-usainvote-ipromote-and-whoever-else-is-involved-in-this-scheme-you-call-us-nutty-as https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/r1Yo-4fwjik https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-s-downvote-crusade-protecting-scam-farms-while-pretending-to-care https://peakd.com/hive-133987/@bpcvoter3/jacobtothe-s-downvote-circus-protecting-scam-farms-while-lecturing-about-mental-health https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp https://peakd.com/hive-167922/@bilpcoinbpc/jacobtothe-and-hivepope-the-hypocrisy-of-excommunication-while-enabling-scam-farms <a href="https://imgflip.com/i/9myv70"><img src="https://i.imgflip.com/9myv70.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://hive.blog/hive/@bpcvoter1/sswnsn https://hive.blog/technology/@bpcvoter1/sswnwn <a href="https://imgflip.com/i/9myvjn"><img src="https://i.imgflip.com/9myvjn.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://hive.blog/hive-120586/@bpcvoter3/sswxe5
author | bpcvoter1 |
---|---|
permlink | ssz1nr |
category | technology |
json_metadata | {"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://i.imgflip.com/9myv70.jpg","https://i.imgflip.com/9myvjn.jpg"],"links":["https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8\n<p>https://youtu.be/r1Yo-4fwjik\n<p>https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny\n<p>https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-s-downvote-crusade-protecting-scam-farms-while-pretending-to-care\n<p>https://peakd.com/hive-133987/@bpcvoter3/jacobtothe-s-downvote-circus-protecting-scam-farms-while-lecturing-about-mental-health\n<p>https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp\n<p>https://peakd.com/hive-167922/@bilpcoinbpc/jacobtothe-and-hivepope-the-hypocrisy-of-excommunication-while-enabling-scam-farms\n<p><a"],"app":"hiveblog/0.1"} |
created | 2025-03-11 18:19:39 |
last_update | 2025-03-11 18:19:39 |
depth | 3 |
children | 0 |
last_payout | 2025-03-18 18:19:39 |
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,484 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,365,096 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow2n |
category | technology |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:16:21 |
last_update | 2025-03-25 17:16:21 |
depth | 3 |
children | 0 |
last_payout | 2025-04-01 17:16: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 | 7,004 |
author_reputation | -19,298,796,115,289 |
root_title | "Custom StreamDeck for Linux" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,845 |
net_rshares | -1,647,439,182 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,648,736,641 | -0.1% | ||
bilpcoinbot1 | 0 | 1,297,459 | 100% |