create account

Custom StreamDeck for Linux by themarkymark

View this thread on: hive.blogpeakd.comecency.com
· @themarkymark · (edited)
$31.92
Custom StreamDeck for Linux
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:

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


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://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 472 others
👎  , , , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkcustom-streamdeck-for-linux-4kj
categorytechnology
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"]}
created2025-03-10 01:54:03
last_update2025-03-11 18:04:00
depth0
children38
last_payout2025-03-17 01:54:03
cashout_time1969-12-31 23:59:59
total_payout_value15.994 HBD
curator_payout_value15.931 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,285
author_reputation1,772,856,244,540,804
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,323,044
net_rshares92,629,917,843,442
author_curate_reward""
vote details (551)
@bozz ·
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.
properties (22)
authorbozz
permlinkre-themarkymark-2025310t74851735z
categorytechnology
json_metadata{"tags":["technology","hive-engine","vyb","pob","cent","neoxian","leofinance","python"],"app":"ecency/4.0.3-vision","format":"markdown+html"}
created2025-03-10 11:48:51
last_update2025-03-10 11:48:51
depth1
children1
last_payout2025-03-17 11:48:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length355
author_reputation2,227,203,348,166,094
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,330,910
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow22
categorytechnology
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"}
created2025-03-25 17:15:57
last_update2025-03-25 17:15:57
depth2
children0
last_payout2025-04-01 17:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,838
net_rshares-1,648,692,079
author_curate_reward""
vote details (2)
@bpcvoter1 ·
**“@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
👍  ,
properties (23)
authorbpcvoter1
permlinksswnwn
categorytechnology
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"}
created2025-03-10 11:27:24
last_update2025-03-10 11:27:24
depth1
children3
last_payout2025-03-17 11:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15,724
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,330,341
net_rshares220,997,390
author_curate_reward""
vote details (2)
@bpcvoter2 ·
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>
👍  
properties (23)
authorbpcvoter2
permlinkssyi0y
categorytechnology
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"}
created2025-03-11 11:15:33
last_update2025-03-11 11:15:33
depth2
children0
last_payout2025-03-18 11:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,381
author_reputation-4,735,650,103,990
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,356,348
net_rshares16,137,858
author_curate_reward""
vote details (1)
@hivepope · (edited)
<center>![Hive Pope Arms 2.png](https://images.hive.blog/DQmeBJBFSo5NrkhKQWaa86gr4gE8FBi6s71Lo64UAdzwac8/Hive%20Pope%20Arms%202.png)</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.
properties (22)
authorhivepope
permlinkssxjgb
categorytechnology
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"]}
created2025-03-10 22:50:36
last_update2025-03-11 07:07:27
depth2
children1
last_payout2025-03-17 22:50:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length705
author_reputation841,111,363,929
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,346,229
net_rshares0
@bpcvoter2 ·
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
properties (22)
authorbpcvoter2
permlinkssyhye
categorytechnology
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"}
created2025-03-11 11:14:03
last_update2025-03-11 11:14:03
depth3
children0
last_payout2025-03-18 11:14:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,128
author_reputation-4,735,650,103,990
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,356,311
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstovzu
categorytechnology
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"}
created2025-03-25 17:14:39
last_update2025-03-25 17:14:39
depth1
children0
last_payout2025-04-01 17:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,963
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,813
net_rshares-1,648,647,517
author_curate_reward""
vote details (2)
@chinito ·
what a cool, little device.

I just luv Deadpool, to I had to click to your profile based on just your avatar. 

😉😎✌️


![giphy.gif](https://files.peakd.com/file/peakd-hive/chinito/23tGa8mNyg9qXdJNKmFjCWP9fqBgR8MA2o1UzmCotNNQqM7cFfjJYkrqHwnjjsfMHeDNm.gif)
properties (22)
authorchinito
permlinkre-themarkymark-suqaaq
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.4.4","image":["https://files.peakd.com/file/peakd-hive/chinito/23tGa8mNyg9qXdJNKmFjCWP9fqBgR8MA2o1UzmCotNNQqM7cFfjJYkrqHwnjjsfMHeDNm.gif"],"users":[]}
created2025-04-14 21:56:51
last_update2025-04-14 21:56:51
depth1
children0
last_payout2025-04-21 21:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation185,301,767,754,122
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id142,101,002
net_rshares0
@danzocal ·
!PIZZA
properties (22)
authordanzocal
permlinkre-themarkymark-ssxn4c
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-11 00:09:48
last_update2025-03-11 00:09:48
depth1
children0
last_payout2025-03-18 00:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation12,432,803,008,396
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,347,586
net_rshares0
@indextrader24 ·
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.
👍  ,
👎  ,
properties (23)
authorindextrader24
permlinkstikrg
categorytechnology
json_metadata{"app":"hiveblog/0.1"}
created2025-03-22 07:28:30
last_update2025-03-22 07:28:30
depth1
children2
last_payout2025-03-29 07:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation464,462,650,077,594
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,600,535
net_rshares7,616,830,735
author_curate_reward""
vote details (4)
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstkj2a
categorytechnology
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"}
created2025-03-23 08:44:57
last_update2025-03-23 08:44:57
depth2
children0
last_payout2025-03-30 08:44:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5,058
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,622,177
net_rshares-4,423,243,024
author_curate_reward""
vote details (2)
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow05
categorytechnology
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"}
created2025-03-25 17:14:48
last_update2025-03-25 17:14:48
depth2
children0
last_payout2025-04-01 17:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,963
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,819
net_rshares-1,648,662,371
author_curate_reward""
vote details (2)
@kgakakillerg ·
@gogreenbuddy can you stop downvoting my original content thank you
properties (22)
authorkgakakillerg
permlinkstb1xv
categorytechnology
json_metadata{"users":["gogreenbuddy"],"app":"hiveblog/0.1"}
created2025-03-18 05:58:45
last_update2025-03-18 05:58:45
depth1
children2
last_payout2025-03-25 05:58:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation573,155,811,225,534
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,505,238
net_rshares0
@themarkymark ·
I’m going to ignore you now.   There is only so many times I can tell you. 
👍  ,
👎  , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-kgakakillerg-stbg2m
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.3.2","image":[],"users":[]}
created2025-03-18 11:04:03
last_update2025-03-18 11:04:03
depth2
children1
last_payout2025-03-25 11:04:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation1,772,856,244,540,804
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,509,359
net_rshares-16,216,661,500
author_curate_reward""
vote details (15)
@bpcvoter1 ·
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
👍  
properties (23)
authorbpcvoter1
permlinkstbqyh
categorytechnology
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"}
created2025-03-18 14:57:09
last_update2025-03-18 14:57:09
depth3
children0
last_payout2025-03-25 14:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,006
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,513,635
net_rshares0
author_curate_reward""
vote details (1)
@kgakakillerg ·
@gogreenbuddy why do you keep downvoting my original content 🤔
properties (22)
authorkgakakillerg
permlinkstgle8
categorytechnology
json_metadata{"users":["gogreenbuddy"],"app":"hiveblog/0.1"}
created2025-03-21 05:46:57
last_update2025-03-21 05:46:57
depth1
children7
last_payout2025-03-28 05:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation573,155,811,225,534
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,576,847
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow36
categorytechnology
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"}
created2025-03-25 17:16:39
last_update2025-03-25 17:16:39
depth2
children3
last_payout2025-04-01 17:16:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,850
net_rshares-1,646,422,003
author_curate_reward""
vote details (2)
@beerlover ·
<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>
👍  
properties (23)
authorbeerlover
permlinkre-bpcvoter1-stow36-20250423t032638585z
categorytechnology
json_metadata{"app":"beerlover/3.0","language":"rust","developer":"wehmoen"}
created2025-04-23 03:26:39
last_update2025-04-23 03:26:39
depth3
children0
last_payout2025-04-30 03:26:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length526
author_reputation25,761,421,138,206
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id142,263,211
net_rshares56,086,834
author_curate_reward""
vote details (1)
@kgakakillerg ·
Everything is right there thanks for sharing 👍🏾 !BEER
properties (22)
authorkgakakillerg
permlinkstpxhk
categorytechnology
json_metadata{"app":"hiveblog/0.1"}
created2025-03-26 06:46:33
last_update2025-03-26 06:46:33
depth3
children1
last_payout2025-04-02 06:46:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation573,155,811,225,534
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,684,387
net_rshares0
@themarkymark ·
No one by that name lives here.  Try the house down the street.
👍  
👎  , , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-kgakakillerg-stglh2
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-21 05:48:39
last_update2025-03-21 05:48:39
depth2
children2
last_payout2025-03-28 05:48:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation1,772,856,244,540,804
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,576,902
net_rshares-12,198,554,795
author_curate_reward""
vote details (15)
@bpcvoter1 ·
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
👍  
properties (23)
authorbpcvoter1
permlinksthhhe
categorytechnology
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"}
created2025-03-21 17:18:03
last_update2025-03-21 17:18:03
depth3
children0
last_payout2025-03-28 17:18:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,775
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,589,507
net_rshares0
author_curate_reward""
vote details (1)
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow3j
categorytechnology
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"}
created2025-03-25 17:16:51
last_update2025-03-25 17:16:51
depth3
children0
last_payout2025-04-01 17:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,861
net_rshares-1,645,430,242
author_curate_reward""
vote details (2)
@kgakakillerg · (edited)
Don't know why you keep downvoting my original content @gogreenbuddy what is the problem 🤔 are you trying to bully me 😂😂😂😂
properties (22)
authorkgakakillerg
permlinkstpxrr
categorytechnology
json_metadata{"app":"hiveblog/0.1","users":["gogreenbuddy"]}
created2025-03-26 06:52:39
last_update2025-03-26 06:53:06
depth1
children2
last_payout2025-04-02 06:52:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation573,155,811,225,534
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,684,473
net_rshares0
@themarkymark ·
I'm going to assume no one accused you of being bright.
👍  
properties (23)
authorthemarkymark
permlinkre-kgakakillerg-stpzn7
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.3.5","image":[],"users":[]}
created2025-03-26 07:33:06
last_update2025-03-26 07:33:06
depth2
children1
last_payout2025-04-02 07:33:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,772,856,244,540,804
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,684,986
net_rshares2,366,927,686
author_curate_reward""
vote details (1)
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstq7tz
categorytechnology
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"}
created2025-03-26 10:27:54
last_update2025-03-26 10:27:54
depth3
children0
last_payout2025-04-02 10:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,126
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,687,047
net_rshares-1,621,439,897
author_curate_reward""
vote details (2)
@makerhacks ·
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.
properties (22)
authormakerhacks
permlinkre-themarkymark-sswd38
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-10 07:35:33
last_update2025-03-10 07:35:33
depth1
children5
last_payout2025-03-17 07:35:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length213
author_reputation155,439,082,914,277
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,327,180
net_rshares0
@bpcvoter1 ·
**“@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
👍  ,
properties (23)
authorbpcvoter1
permlinksswnyz
categorytechnology
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"}
created2025-03-10 11:28:48
last_update2025-03-10 11:28:48
depth2
children3
last_payout2025-03-17 11:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15,724
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,330,382
net_rshares226,520,385
author_curate_reward""
vote details (2)
@bpcvoter2 ·
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>
👍  
properties (23)
authorbpcvoter2
permlinkssyi39
categorytechnology
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"}
created2025-03-11 11:16:57
last_update2025-03-11 11:16:57
depth3
children0
last_payout2025-03-18 11:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,381
author_reputation-4,735,650,103,990
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,356,381
net_rshares17,487,610
author_curate_reward""
vote details (1)
@hivepope · (edited)
<center>![Hive Pope Arms 2.png](https://images.hive.blog/DQmeBJBFSo5NrkhKQWaa86gr4gE8FBi6s71Lo64UAdzwac8/Hive%20Pope%20Arms%202.png)</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.
properties (22)
authorhivepope
permlinkssxjfq
categorytechnology
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"]}
created2025-03-10 22:50:15
last_update2025-03-11 07:07:39
depth3
children1
last_payout2025-03-17 22:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length705
author_reputation841,111,363,929
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,346,221
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow1h
categorytechnology
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"}
created2025-03-25 17:15:36
last_update2025-03-25 17:15:36
depth2
children0
last_payout2025-04-01 17:15:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,827
net_rshares-1,648,677,225
author_curate_reward""
vote details (2)
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@danzocal<sub>(7/10)</sub> tipped @themarkymark 


</center>
properties (22)
authorpizzabot
permlinkre-custom-streamdeck-for-linux-4kj-20250311t001145z
categorytechnology
json_metadata"{"app": "leothreads/pizzabot"}"
created2025-03-11 00:11:45
last_update2025-03-11 00:11:45
depth1
children0
last_payout2025-03-18 00:11:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation7,433,901,560,816
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,347,622
net_rshares0
@valued-customer ·
>"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!
properties (22)
authorvalued-customer
permlinkre-themarkymark-ssxc30
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-10 20:11:24
last_update2025-03-10 20:11:24
depth1
children4
last_payout2025-03-17 20:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length406
author_reputation352,592,268,723,010
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,343,449
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow2e
categorytechnology
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"}
created2025-03-25 17:16:09
last_update2025-03-25 17:16:09
depth2
children0
last_payout2025-04-01 17:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,841
net_rshares-1,648,435,423
author_curate_reward""
vote details (2)
@themarkymark ·
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. 
👍  
👎  , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-valued-customer-ssxc87
categorytechnology
json_metadata{"tags":["technology"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-03-10 20:14:30
last_update2025-03-10 20:14:30
depth2
children2
last_payout2025-03-17 20:14:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation1,772,856,244,540,804
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,343,482
net_rshares52,189,129,070
author_curate_reward""
vote details (14)
@bpcvoter1 ·
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
properties (22)
authorbpcvoter1
permlinkssz1nr
categorytechnology
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"}
created2025-03-11 18:19:39
last_update2025-03-11 18:19:39
depth3
children0
last_payout2025-03-18 18:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,484
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,365,096
net_rshares0
@bpcvoter1 ·
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
👍  
👎  
properties (23)
authorbpcvoter1
permlinkstow2n
categorytechnology
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"}
created2025-03-25 17:16:21
last_update2025-03-25 17:16:21
depth3
children0
last_payout2025-04-01 17:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,004
author_reputation-19,298,796,115,289
root_title"Custom StreamDeck for Linux"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,672,845
net_rshares-1,647,439,182
author_curate_reward""
vote details (2)