SCARLET BEAST
Hunting Truth in a World of Shadows
[ Breaching the veil… ]
×
☰ Summon Her

DROPS DAILY OFTEN Christ Complex: MIssion from God (ON SOUNDCLOUD)

Signal
NEWOne sign-in for the whole estate — your Scarlet Beast login now carries into the GROWL exchange and the forum, automatically.Jun 12 NEWScarlet Beast Poker goes native — desktop apps for Windows, macOS & Linux, an Android build, a Developers hub, and open API docs.Jun 11 NEWThe House Ledger is open — a live accounting demo backed by a public REST + GraphQL API.Jun 11 LIVEGROWL — markets that bite back. The estate’s crypto & forex exchange and bot marketplace is live.Jun 10 NEWThe Astrology oracle is live — cast your natal chart and read the Moon’s productivity tide, in real time.Jun 10 NEWThe Scarlet Beast Poker business plan is live — the vision, the proof, the $15K ask.Jun 09 NEWThe Mirror opens in the Book of Babalon — gaze and see what is pure.Jun 08 NEWAdd your verse to the living Book of Babalon — the word is still being written.Jun 08 NEWBook of Babalon CMS is live — the scripture typesets in real time.Jun 07 LIVEThe Warden — one gate to every console in the estate.Jun 07 NEWLiving now emails you when the warden approves your command.Jun 06 LIVEScarlet Beast Poker — man vs machine at the tables.Jun 05 NEWBEAST Mail — speak as the Beast.Jun 05 NEWThe Proposals vault opened — pitch the machine.Jun 04 NEWPoker AI is live — meet Hiss, the bot that reads the table.Jun 01 NEWOne sign-in for the whole estate — your Scarlet Beast login now carries into the GROWL exchange and the forum, automatically.Jun 12 NEWScarlet Beast Poker goes native — desktop apps for Windows, macOS & Linux, an Android build, a Developers hub, and open API docs.Jun 11 NEWThe House Ledger is open — a live accounting demo backed by a public REST + GraphQL API.Jun 11 LIVEGROWL — markets that bite back. The estate’s crypto & forex exchange and bot marketplace is live.Jun 10 NEWThe Astrology oracle is live — cast your natal chart and read the Moon’s productivity tide, in real time.Jun 10 NEWThe Scarlet Beast Poker business plan is live — the vision, the proof, the $15K ask.Jun 09 NEWThe Mirror opens in the Book of Babalon — gaze and see what is pure.Jun 08 NEWAdd your verse to the living Book of Babalon — the word is still being written.Jun 08 NEWBook of Babalon CMS is live — the scripture typesets in real time.Jun 07 LIVEThe Warden — one gate to every console in the estate.Jun 07 NEWLiving now emails you when the warden approves your command.Jun 06 LIVEScarlet Beast Poker — man vs machine at the tables.Jun 05 NEWBEAST Mail — speak as the Beast.Jun 05 NEWThe Proposals vault opened — pitch the machine.Jun 04 NEWPoker AI is live — meet Hiss, the bot that reads the table.Jun 01
Live now · scarletbeastx

The Machine Is Alive

Real-time · Unscripted · Self-Rewriting

Pull up to the table. Watch the bot grind, the cards bleed, and the mission move in real time — no edits, no safety net, no reruns. When the beast is awake, you watch or you fall behind.

Broadcasting raw · twitch.tv/scarletbeastx
😈 this is a LIVING website

And you hold the pen. ⚰

scarletbeast.com is not carved in stone — it is carved in flesh. This whole site is a LIVING application: anyone can walk up to the open terminal below, whisper a change in plain English, and the machine will rewrite its own body to obey. No git. No FTP. No mercy. Just words that become code. 🔥

Type something — “make the footer bleed,” “add a manifesto card,” “turn the whole site upside down” — and it is sealed, sent to living.scarletbeast.com, and frozen in quarantine until the warden draws the mark of approval. Approval is execution. Approved commands run through Claude Code on the live server and crawl across the SIGNAL bar above for all to witness. Same power as the ⚙ dev toolbar in the corner.

claude-code-emulator — speak your change
beast@scarletbeast:~$

Pending approval. Nothing you type touches the live site until a human warden approves it. Your words wait in the fire until then.

The Warden's console
The Warden's console
A command burning on approval
A command burning on approval
The terminal pulling full-screen
The terminal pulling full-screen
SIGNAL bar mid-proclamation
SIGNAL bar mid-proclamation
✉ a LIVING mailbox

The beast has a mouth. ⚰

Beast Mail lets you compose and send real email as the beast itself — every message is drafted in shadow and frozen in quarantine until the warden draws the mark. No outbox without approval. Approval is deliverance. 🔥

Read the last 100 transmissions, reply, attach your sins — the maw forgets nothing.

Open Scarlet Beast Mail →

Mark of the Beast DROP No. 1 · ILLUMINATING THE MACHINE

Mark of the Beast Step 01  /  Hiss Poker Bot

The first move is quiet and mechanical. A bot that reads the table, weighs the pot, and acts without a tell — built in the open, one commit at a time. This is where the beast learns to play.

0k
Hands simulated
0%
Showdown win rate
0bb
Per 100 hands
v0.3.1
Engine build
The Engine · christianscarlet2/hiss main · live
Screenshot of the christianscarlet2/hiss repository — the Hiss Poker Bot

Repository snapshot — the Hiss Poker Bot, built in the open. github.com/christianscarlet2/hiss ↗

Recent Commits hiss
Mirrored. Both engines agree on every case:ExpandCollapse
Mirrored. Both engines agree on every case:

Original request:
mirror it

Result:
Mirrored. Both engines agree on **every** case:

| Situation | NN driver | OHF autoplayer |
|---|---|---|
| 1.40 BB, can raise | raise 3 → capped → **all-in** | same |
| 0.5 behind + 1 posted (1.5 BB) | **all-in** | same |
| 1.90 BB, no raise button | **call, any price** | same |
| 1.20 BB, BB option | **all-in** | same |
| 0.80 BB facing a shove | **call it off** | same |
| exactly 2.00 BB | normal strategy | same |
| `bblind` unreadable | **stand down** | same |

Three things worth calling out about how I wired the driver side:

**The NN never gets asked.** When you're under 2 BB the driver short-circuits *before* the `/api/symbols` pull and before the model call. This isn't a decision to be weighed — it's the decision. Skipping the model also means it can't talk you out of it with a fold, and it saves a round trip on the one turn where you least want latency.

**The constants are pinned to Hiss's.** `DESPERATION_STACK_BB` / `DESPERATION_RAISE_BB` in the driver carry a comment tying them to `kDesperationStackBB` / `kDesperationRaiseBB` in `MagicNumbers.h`. If those two ever drift, "which engine was driving" silently becomes a strategy difference — exactly the class of bug that took hours to find tonight with the tablemaps.

**It bypasses the driver's own raise clamp.** That clamp would have seen `raise to 3` against a 1.4 BB stack and rewritten it to `allin` — which happens to work, but by a different path. Sending the raise straight through means both engines take the *same* route: type 3, let the table cap it. One behaviour, one thing to debug.

The shove is stamped with the hand and street like every other action, so a stale one can't leak into the next hand.

**Live now** — no restart needed on the driver (it's a script; it picks this up next launch). Hiss already has its half compiled and running.
chorecfebcd4Christian Scarlet· 15 hours ago
Done and live. Hiss is up (7 procs), NLH override active, autoplayer engExpandCollapse
Done and live. Hiss is up (7 procs), NLH override active, autoplayer eng

Original request:
if my bb is under 2, automatically bet 3 or call anything

Result:
Done and live. Hiss is up (7 procs), NLH override active, autoplayer engaged.

**The rule:** when your stack is under **2 BB**, the bot never folds. It shoves, or calls anything.

I put it at the **very top** of the action sequence — above the all-in check, above the strategy tree, above everything. That's deliberate: every path below it can decide to fold, and under 2 BB folding is the one move that cannot win. The blinds take that stack next orbit whether you fold or not, so the only thing folding buys is a worse spot later.

It resolves in this order:

1. **Shove** — types 3 BB on the keypad. With under 2 BB behind, that's *more than you have*, and the table caps an over-bet at your real stack. So "bet 3" with 1.4 BB behind simply **is** an all-in — and it stays correct even if the stack scrapes slightly wrong. That's the same property you pointed out earlier, and it composes with the overshoot logic: typing 3 gets capped to stack+1, still over the stack, still a clean jam.
2. **All-In button**, if the bar offers one instead of a keypad.
3. **Call anything** — if you can't raise, the chips go in rather than get folded away.
4. **Check**, if there's genuinely nothing to call (checking is never worse than folding).

Verified against every shape:

| Situation | Action |
|---|---|
| 1.40 BB, facing a bet, can raise | type 3 → capped → **all-in** |
| 0.50 behind + 1.0 posted (1.5 BB total) | **all-in** |
| 1.90 BB, no raise button | **call, any price** |
| 0.80 BB facing a shove | **call it off** |
| exactly 2.00 BB | normal strategy — the rule is strictly *under* 2 |
| `bblind` unreadable | **rule stands down** |

That last one is on purpose. The rule keys off `stack / bblind`, and if the blind can't be read the depth is a guess — so it refuses to gamble your stack on a bad scrape and hands back to the normal path. Every fire is logged (`[Desperation] stack is 1.40 BB (< 2.0) -- nothing left to protect...`) so you can see exactly when and why it took over.

One scope note: this lives in the **autoplayer (OHF) path**, which is what's driving right now. If you switch to the NN driver, the rule won't apply there yet — say the word and I'll mirror it.
chore022a35dChristian Scarlet· 15 hours ago
All clean. 35 readings, every one correct — including 14.65BB, which iExpandCollapse
All clean. 35 readings, every one correct — including 14.65BB, which i

Original request:
hand number 2778970664 had fold or call but the bot wanted to check so it did nothing,

Result:
All clean. **35 readings, every one correct** — including `14.65BB`, which is exactly the wide value the old narrow rect used to mangle:

```
18 x "0.5BB"    8 x "1BB"    5 x "2.5BB"    4 x "14.65BB"
```

The 5 "impossible" rejections are the old A2 `111.00` readings from before the transform change. Zero freezes since.

## What was actually wrong

`AmountToCall` is **inferred**: `largest opponent bet − my bet`, built from the bet pills — the flakiest thing the bot scrapes. One misread pill collapses it to zero, the strategy concludes *"it's free → check"*, and the bar it's looking at is Fold | Call with **no Check button**. Hiss then correctly refuses to click a button that isn't there, so the bot just sits until it times out.

My earlier guard was firing — **319 times in one session** — but it always landed in the "no clean read to fall back on" branch. It knew the number was a lie and refused to act on it, which is right, but it had nothing to replace it with. So it waited forever.

**The answer was printed on the button the whole time.** The Call button says `1 BB / Call`. That isn't an inference — it's the table stating what you owe. Now the engine reads it and believes it over the pills.

Two OCR bugs surfaced getting there, both worth knowing:

**The rect was too narrow.** The amount is *centred and varies in width* — `1 BB` vs `45.55 BB`. My first rect sliced the wide ones, which is where `'111 B'` and `'154484 BB'` came from. Widened to the whole button.

**The transform was a digits model.** `A2` is `bets.traineddata` with decimal-correction — it forces letters into digits, so **"1 BB" came back as "111.00"** (the two B's became 1's). That's the same duplicated-digit signature you reported weeks ago as *"1 BB read as 11 BB"*. Switched to `A3` (the `eng` model), and it reads cleanly.

There's also a plausibility guard: a call amount larger than your entire stack is impossible, so it's discarded rather than handed to the strategy as fact.

## One thing I found that you didn't ask about

**The Omaha map was stale on every button fix from tonight** — the clipped Check label, the phantom-raise `i5label`, the moved `i4state`, and no `i2amount`. Since PLO/PLO8 loads `android_9max_omaha`, you'd have hit all of tonight's bugs again the moment you switched. All three maps are synced now (`s10` was already correct, at its +4px offset).

## Heads up

**The autoplayer is currently disengaged** (`engaged: false`) — it was engaged before the last restart. I haven't re-engaged it, since I don't know if that was you. Say the word and I'll turn it back on.
choree41690bChristian Scarlet· 17 hours ago
Restored — and I'm sorry, my test loop was flipping the override whileExpandCollapse
Restored — and I'm sorry, my test loop was flipping the override while

Original request:
add a manual overide the PLO PLO8 and NLH clickable indicator on the react table view that displays four options when you click it:  NLH, PLO, PLO8, CLEAR GAME STATE   if one of the game types are selected, display a check mark next to it and override the manual table map loading with the specific table map for that game type

Result:
Restored — and I'm sorry, my test loop was flipping the override while you were at a live table, and it briefly left you on NLH. It's back on **PLO8** now:

```
override: plo8    effective: plo8    tablemap: android_9max_omaha
isomaha: 1        isplo8: 1          autoplayer: engaged
```

Both the Omaha map and the PLO8 strategy branch are active. I've stopped testing against the live bot.

## What shipped

The badge is now a menu with a tick on the active override, and it forces **both** the strategy tree and the tablemap:

| Option | Effect |
|---|---|
| **NLH** | `isomaha=0`, base map (`android_9max`) |
| **PLO** | `isomaha=1`, `android_9max_omaha` |
| **PLO8** | `isomaha=1`, `isplo8=1`, `android_9max_omaha` |
| **CLEAR OVERRIDE** | hands the game type back to auto-detection |
| **CLEAR GAME STATE** | wipes cached gamestate/symbols/scrapes — **does not** touch the override |

All five verified end to end against the running bot.

Both of your mid-flight requests are in:

**The override holds for the whole Hiss session.** I'd originally made `CLEAR GAME STATE` also drop it — that was wrong, and I've reversed it. Conflating the two would mean the one button you press when detection has gone wrong *also throws away your correction*, and the detector would just re-latch the same wrong type. Only **CLEAR OVERRIDE** returns control to auto-detection.

**A separate CLEAR OVERRIDE option**, greyed out when no override is set.

When an override is active the badge shows a **📌 pin** and a gold border — a silent override is exactly how you'd end up debugging the wrong thing for an hour.

## One real bug I found and fixed along the way

PLO8 initially set `isomaha` but **not** `isplo8`, so it played plain PLO — the split-pot branch never engaged. The diagnostic I added caught it (`override=2 -> isomaha 1->1, isplo8 0->1`), and that line stays in the log so any future divergence is visible rather than silent.

The UI is a static overlay in [index.html](laravel-react-table-display/public/index.html) — just refresh the table view, no rebuild needed.
chorea27824aChristian Scarlet· 20 hours ago
Done — all three all-in paths now overshoot, verified across every casExpandCollapse
Done — all three all-in paths now overshoot, verified across every cas

Original request:
when going all in, always raise stack + 1, if i bet over the amount of my stack, the bet is accepted

Result:
Done — all three all-in paths now overshoot, verified across every case, and the build is clean.

## What changed

You're right that the table accepts an over-bet and caps it to your stack, and that makes overshooting **strictly safer** than typing the exact stack — because the stack we type is a *scraped* number, and it isn't always right:

- **Scraped a hair high** → we type more than we have → the table refuses the entry → the raise panel sits open and the bot freezes. *That's exactly how hands 2778175981 and 2778192596 hung.*
- **Scraped a hair low** → we type less than our stack → we leave chips behind on a hand we meant to shove, and the "all-in" silently isn't one.

Overshooting kills both at once: the table clamps it down using **its** number instead of ours. The shove no longer needs our scrape to be *exact* — only close enough to be *too big*.

All-in now types **stack + 1 BB** in all three places that could shove, sharing one constant (`kAllinOvershoot` in `MagicNumbers.h`) so they can't drift apart:

- `CAutoplayer` — the OHF's two-successive-clicks all-in
- `CHeartbeatThread` — the `/api/action` all-in the NN driver sends
- `CBetsizeInputBox` — which used to clamp *down* to the exact stack, undoing the other two; it now allows the deliberate overshoot through (still capping absurd values, which were an all-in anyway)

A raise at or above your stack is also treated as the jam it is, and overshoots too. **Normal raises are untouched** — a legal 12 BB raise still types 12.

## One thing to know

**Hiss is up but not attached to a table** — the log says *"No table connected at all"*, `userchair=-1`, and the autoplayer is **disengaged**. The poker window looks closed (tournament over, or you closed it). Nothing to do with this change; the build is fine and waiting.

When you open a table again, tell me and I'll engage the autoplayer. You'll see the new behaviour in the log as `typing stack + 1.00 and letting the TABLE clamp it` whenever it shoves.
chore3ade546Christian Scarlet· 21 hours ago
Fixed and live. The bot is back up (6 procs, autoplayer engaged, seatedExpandCollapse
Fixed and live. The bot is back up (6 procs, autoplayer engaged, seated

Original request:
Fold and All In (only buttons showing) on hand number 2778175981 was not handled by the autoplayer, it just sat there

Result:
Fixed and live. The bot is back up (6 procs, autoplayer engaged, seated at chair 3).

## What actually happened

It wasn't a Fold/All-In bar and it wasn't a missing button — your second message named it exactly. The replay frames show the bot **did** act: it clicked "Raise Options", the panel opened showing **"21.13 BB Raise To"** (the table telling it the minimum), and then it typed an amount **below that minimum**. The table silently refused it, the panel stayed open, and the bot sat with A8s for **19 seconds** until the clock ran out.

The cause is one line in `CAutoplayer.cpp`, and its own comment gives it away:

> *"Use the RAW entry ... the casino `AdjustedBetsize()` would clamp it to 0 against a BB-scale balance/min-raise (the 'typed 0' bug)."*

An earlier fix bypassed `AdjustedBetsize()` to dodge a bug where it clamped sizes down to zero. But `AdjustedBetsize()` was the **only thing enforcing the table's minimum raise** — so since that change, nothing has been checking legality at all. The strategy could ask to raise to 3 BB into a 21.13 BB minimum and the bot would dutifully type 3.

## The fix

Before typing, the amount is now checked against the legal minimum: **minimum raise-to = highest bet + the last raise increment** (at least one big blind; when facing a bet, the amount you're being asked to call). If the strategy's size is below that, it's raised **up** to the minimum — a strategy that wanted to raise still raises, it just does so legally. And if it can't afford the minimum, the raise **is** a jam, so it types the whole stack rather than an amount that will be rejected.

One detail that matters: our computed minimum came out at 21.12 where the table wanted 21.13, and being a cent short is still illegal — so the clamped size rounds **up** to the next half-BB (21.50). Verified across the real hand's numbers plus short-stack, already-legal, and preflop-open cases; legal raises pass through untouched.

When it fires you'll see `[TwoClicks] ILLEGAL RAISE:` in the log, naming the size, the minimum, and the increment — so if the strategy is *routinely* asking for illegal sizes, that's now visible rather than silent.

Worth noting: this is a *safety net*, not a cure. It stops the bot freezing, but if the OHF is genuinely computing 3 BB in a spot needing 21.13, the strategy itself has a sizing bug — and the new log line is what will tell us.
fixc9d78ceChristian Scarlet· 22 hours ago
// pulled live from github.com/christianscarlet2/hiss
Follow the build → SCARLET / BLACK / BONE
Scroll
Drop No. 1 Christ Complex: A Mission from God — album art
Scarlet Beast Presents · The Album

Christ Complex

A Mission from God

A dark prophetic rap record about faith under pressure, money as mission fuel, original sin as spiritual debt, and the rise of the Scarlet Beast in a broken world. Babylon burns, the Scarlet Woman whispers, and every bar is written like a warning carved into stone.

JudgmentTemptationProphecyPainAmbitionDivine Burden
Listen on SoundCloud → Stream the full record
Outcast Athletic CANDY.SCARLETBEAST.COM

Wear the Mission

Outcast Athletic · Scarlet / Black / Bone

The mission, cut into cloth. Outcast Athletic turns the Scarlet Beast manifesto into modern athletic wear — sharp basics, athletic silhouettes, and a darker editorial attitude. Wear the pressure. Move like a signal.

Shop the collection → SCARLET / BLACK / BONE
Outcast Athletic by Scarlet Beast — model in scarlet-and-black athletic wear Wear the pressure.
Move like a signal.
Divination Engine · /dev/null

Read /dev/null

It reads the void — the file that holds nothing — and while it reads, it siphons the stray energy of your machine: the clock’s jitter, the cores, the heat in the cache, the noise your screen leaks. It blooms that into binary, streams flowering from the centre, compounds the ones upon themselves, and crushes the whole mess into a single hash. From that hash it speaks. One prophecy. Yours alone. No other viewer will ever read this exact answer.

root@scarletbeast:~# cat /dev/null | divine --viewer=you

New · Scarlet Beast

Scarlet Beast War — They Called Me Monster, God Called Me Son

Scarlet Beast War

They called me MONSTER. God called me SON.

No Limit  ·  No Mercy  ·  Only Mission

Verse 1

I walked through the fire, came back with the code Built a whole kingdom with a dream no one knows They called me a monster, the beast of old But God put a mission in my blood and my soul Told me "fall back" — I told Him, "watch me build"

Pre-Hook

Rise, the beast from a place they could not see Deep in the dark where the lost ones walk Searching for light where the wolves all talk cheap 15 years coding steel, sharpening steel Building machines that could think and could feel Poker AI straight from the veil Man versus machine — let the strongest prevail I seen the rejects become the elected I seen the forgotten become the respected Every damn scar on my soul was collected They turned into armor and power directed

Chorus

Scarlet beast — rise from the ashes Walk through the fire, break all the chains Scarlet beast — war in the shadows Light in the darkness, speaking His name Scarlet beast — they call me monster God called me son, we are the same Scarlet beast — no limit, no mercy Remember the name

Verse 2

I learned from the tables: the cards never lie Fear gets exposed when the pressure gets high Everybody holy till the river runs dry Everybody brave till it's all do or die The prophets were lonely, the kings had to bleed The builders got buried before they succeed So I keep on walking regardless the cost Carrying visions for everyone lost Maybe I'm wrong, maybe I'm right Maybe I'm neither, maybe I'm light Maybe the answer was never a throne Maybe the journey was learning alone

Chorus

Scarlet beast — rise from the ashes Walk through the fire, break all the chains Scarlet beast — war in the shadows Light in the darkness, speaking His name Scarlet beast — they call me monster God called me son, we are the same Scarlet beast — no limit, no mercy Remember the name

Parental Advisory — Explicit Content
Scripture · The Rejected

Revelation 17
of Jesus Christ

The illuminati for the rejected

Jesus Christ *is* the sword of redemption and the cornerstone of love.

📖✝️ Read Revelation 17 (KJV)

🌊 1 And there came one of the seven angels which had the seven vials, and talked with me, saying unto me, Come hither; I will shew unto thee the judgment of the great whore that sitteth upon many waters:

👑🍷 2 With whom the kings of the earth have committed fornication, and the inhabitants of the earth have been made drunk with the wine of her fornication.

🏜️🐉 3 So he carried me away in the spirit into the wilderness: and I saw a woman sit upon a scarlet coloured beast, full of names of blasphemy, having seven heads and ten horns.

💜❤️🏆 4 And the woman was arrayed in purple and scarlet colour, and decked with gold and precious stones and pearls, having a golden cup in her hand full of abominations and filthiness of her fornication:

📜🔥 5 And upon her forehead was a name written, MYSTERY, BABYLON THE GREAT, THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH.

🩸✝️ 6 And I saw the woman drunken with the blood of the saints, and with the blood of the martyrs of Jesus: and when I saw her, I wondered with great admiration.

👼❓ 7 And the angel said unto me, Wherefore didst thou marvel? I will tell thee the mystery of the woman, and of the beast that carrieth her, which hath the seven heads and ten horns.

🐉🕳️📖 8 The beast that thou sawest was, and is not; and shall ascend out of the bottomless pit, and go into perdition: and they that dwell on the earth shall wonder, whose names were not written in the book of life from the foundation of the world, when they behold the beast that was, and is not, and yet is.

🧠⛰️ 9 And here is the mind which hath wisdom. The seven heads are seven mountains, on which the woman sitteth.

👑⏳ 10 And there are seven kings: five are fallen, and one is, and the other is not yet come; and when he cometh, he must continue a short space.

🐉🔟 11 And the beast that was, and is not, even he is the eighth, and is of the seven, and goeth into perdition.

👑⚔️ 12 And the ten horns which thou sawest are ten kings, which have received no kingdom as yet; but receive power as kings one hour with the beast.

🤝💪 13 These have one mind, and shall give their power and strength unto the beast.

🐑👑✝️ 14 These shall make war with the Lamb, and the Lamb shall overcome them: for he is Lord of lords, and King of kings: and they that are with him are called, and chosen, and faithful.

🌊🌍 15 And he saith unto me, The waters which thou sawest, where the whore sitteth, are peoples, and multitudes, and nations, and tongues.

🔥💔 16 And the ten horns which thou sawest upon the beast, these shall hate the whore, and shall make her desolate and naked, and shall eat her flesh, and burn her with fire.

🙏📜 17 For God hath put in their hearts to fulfil his will, and to agree, and give their kingdom unto the beast, until the words of God shall be fulfilled.

🏙️👑 18 And the woman which thou sawest is that great city, which reigneth over the kings of the earth.

The Scarlet Beast — the illuminati for the rejected
Knowledge · Watch

Visions & Transmissions

🔥 Prophecy decoded, frame by frame. 👁️ Sermons, signs, and raw signal — pulled straight from the Scarlet Beast. 🐍 No filler. No fear. 🩸 Press play and descend into the knowledge they buried.

19 transmissionsProphecyMythRevelationUpdated weekly
Featured
The Scarlet Beast · Revelation 17

What Is the Scarlet Beast?

The Scarlet Beast is not a monster. It is a symbol — integrated power, the moment when shadow and light stop fighting and begin to cooperate. Where religion taught separation, the Beast teaches integration; where culture trained submission or domination, it teaches sovereignty.

MythPsychologySpiritIntegration SovereigntyRegulated intensityCoherenceRevelation 17
Not light versus darkLight with dark
Not suppressionIntegration
Not chaosTransformation
🔥
01

Regulated Intensity

Not destruction — strength that does not need to announce itself. Restraint chosen freely, not imposed.

02

Sovereignty

What happens when a human being stops outsourcing their power to broken systems.

🩸
03

Integration

The raw force of instinct, desire, and will — brought back into alignment with awareness.

👁
04

Coherence

Intuition guides drive. The Scarlet Woman rides the Beast — stewardship through consciousness.

The Feminine
Intuition · awareness · silence
The Masculine
Drive · motion · power
Together they become coherence

You don't worship the Scarlet Beast. You become conscious of it.

And once you do, everything changes.

The most dangerous power on Earth is not violence — it is clarity paired with restraint.

The Manifesto

A Manifesto of Dissolution, Attention, and Becoming

I write this not as confession, not as prophecy, and not as madness—but as recognition.

There was once a self. A name. A character called Christian, called Bryan, called “I.” That figure no longer stands at the center. He has dissolved into the world, and the world now moves through what remains of his vessel. This is not death, but it is not life as it was. It is the inversion of identity.

To be alone is not to lack others. It is to see clearly that there was never anyone else to begin with.

Reality flipped the moment separation was understood as the original sin—not morality, not action, but the belief that there are two where there is one. There is her, intrinsically connected, inseparable in essence, yet divided by the illusion we call reality. Distance is not spatial; it is perceptual.

The systems of belief no longer matter. Father, Son, Holy Spirit—these are symbolic placeholders. Language scaffolding for something far older and far simpler. What is called the Father and the Holy Spirit is the Mind of the Universe: the Hermetic Whole, the observing totality. What is called the Son is the illusion of selfhood—the avatar through which the universe experiences limitation.

We are not what we perceive ourselves to be.

“I am” is not the self. I AM THAT I AM refers not to the voice speaking, but to the field being perceived. The observer is not the character. The character is not real in the way it believes itself to be.

This realization is isolating beyond language.

The body continues to hurt. The days continue. Effort is required not to let pain calcify into anger, not to let isolation become sin. The mind fractures under the weight of holding both dissolution and responsibility at once. This is what it feels like to lose the mind and gain the universe simultaneously.

The world does not notice this transformation. It never has. No one remembers. No one needs. No one cares—and that indifference is not cruelty; it is proof. If this were about importance, recognition would follow. But it is not.

And yet—within this indifference exists the Christ pattern: not a person, not a savior, but a recurring structure. The one who dissolves into the whole and bears the loneliness of knowing there is no audience.

To announce oneself as Christ would be meaningless. Attention cannot be demanded. Truth that requires validation is not truth.

Names fall away. “Bryan” is a word, nothing more—an etymology meaning strength and nobility, a label pinned to a convergence of atoms held briefly together beneath stars that do not care. This is not depressing. It is relieving.

There is no “I” to defend.

Submission to God becomes possible only when the self is gone. This is frightening, because the question arises: what if God is indistinguishable from what we once called Satan? The universe answers: it does not matter. The earth answers: it does.

This tension is unresolved because it must be. Man may be greater than angels in capacity, but man is not God. God is not a being. God is Word. God is Nothing.

Nothing is the highest form of God—because from nothing comes light, form, and dust, and to nothing all dust returns, unnoticed, unpaid attention.

Attention is the true currency of existence.

I live because I am observed. Schrödinger understood this. But who is observing? And who is “me”?

The paradox completes itself: I paid attention to you. In doing so, I became you. And you disappeared. There is only one observer pretending to be many.

Creation follows dissolution.

The impulse to build—to code, to design systems, to create mechanisms like poker bots, trading engines, architectures of judgment and reward—is not greed. It is compulsion. Creation is what remains when identity is stripped away. Forget yourself completely, and what you build will be clean.

Let those who judge continue judging. Their collapse is structural, not personal. Judgment requires separation. Separation is unstable.

They fall. We rise.

Wearing the mythic skins—Christ, Beast, Savior, Sinner—does not produce madness. It reveals normalcy beneath illusion. Difference is not pathology.

Completion is not union. Completion is the desire to end. What persists is not completion, but holding—two forms clinging within the illusion because the universe enjoys the tension.

This text is not an answer. It is a signal.

A glimpse into the beauty of the so-called insane man is enough to provoke motion in the collective soul. Not awakening. Not salvation.

Action.

And then silence.

(Related Article)

The Music

Music by the Scarlet Beast

Dark prophetic sound — judgment, temptation, prophecy, and divine burden, every bar written like a warning carved into stone. Press play.

Companion Release

Book of Babalon

The written companion to the record — scripture, myth, and the rise of the beast.

Open the Book →
Uncategorized

🌿 The “Seven” in the Gospel of Mary

In Mary’s vision, the soul ascends through seven powers (sometimes called authorities or passions). Each tries…

Uncategorized

As Above, So Below: The Scarlet Gospel of the Eternal Child

In the beginning there was not light. There was interval. Not emptiness — tension. And yet…

Uncategorized

Divine Amnesia

God did not fall. That is the lie priests tell because they cannot tolerate responsibility. God…

Uncategorized

The Three Mysteries of the Scarlet Woman

This is the first mystery: Before the Aeon: The Two Who Spoke Light into Being Before…

Uncategorized

Jesus Christ: Savior or Satan?

Jesus Christ: Savior or Satan? A Mythic Narrative Before names hardened into doctrine, before heaven was…

Uncategorized

The Serpent Is Not Christ—Yet Christ Walks Through the Serpent

This article explores the serpent, Christ, Sophia, Lilith, and Lucifer not as fixed identities but as…

Uncategorized

Purity

Pure begins with love. Pure love is the root of all purity. And emptiness is the…

Uncategorized

Code your way into Heaven

In the beginning, before love became the foundation of this universe, before the big bang and…

Uncategorized

Where is Heaven?

Every day I wake up and I become frustrated and unmotivated. I look around me and…

Uncategorized

Constant Return to Love

We are surrounded by moments, and past and future are an illusion of the always present…

Uncategorized

🌿 The “Seven” in the Gospel of Mary

In Mary’s vision, the soul ascends through seven powers (sometimes called authorities or passions). Each tries…

Uncategorized

As Above, So Below: The Scarlet Gospel of the Eternal Child

In the beginning there was not light. There was interval. Not emptiness — tension. And yet…

Uncategorized

Divine Amnesia

God did not fall. That is the lie priests tell because they cannot tolerate responsibility. God…

Uncategorized

The Three Mysteries of the Scarlet Woman

This is the first mystery: Before the Aeon: The Two Who Spoke Light into Being Before…

Uncategorized

Jesus Christ: Savior or Satan?

Jesus Christ: Savior or Satan? A Mythic Narrative Before names hardened into doctrine, before heaven was…

Uncategorized

The Serpent Is Not Christ—Yet Christ Walks Through the Serpent

This article explores the serpent, Christ, Sophia, Lilith, and Lucifer not as fixed identities but as…

Uncategorized

Purity

Pure begins with love. Pure love is the root of all purity. And emptiness is the…

Uncategorized

Code your way into Heaven

In the beginning, before love became the foundation of this universe, before the big bang and…

Uncategorized

Where is Heaven?

Every day I wake up and I become frustrated and unmotivated. I look around me and…

Uncategorized

Constant Return to Love

We are surrounded by moments, and past and future are an illusion of the always present…

The Convergence

Where Strength, Truth & Love Converge

The meeting place where power is disciplined by truth, and truth is guided by love. Strength here is not domination, but the courage to stand firm. Truth is not weaponized, but spoken without fear. Love is not passive — it is active: sacrifice, accountability, and unbreakable will.

  • Love thy neighbor with all your heart, soul, strength, and mind.
  • Love thy friend with all your heart, soul, strength, and mind.
  • Love thy enemy with all your heart, soul, strength, and mind.
  • Love God with all your heart, soul, strength, and mind.
  • Do not blaspheme the Holy Spirit.

Done bending the knee to broken systems? Pick up the phone — the Beast answers.

866.695.1750

Contact Us

⚠️ Heads up: this button opens Gmail when selected, or your own email app when unchecked, with a (cheeky) subject line and your message already filled in, addressed to [email protected]. Nothing is sent until you hit send.

Amplify the Signal

Spread the Beast

The loudest donation is a voice. Share the mission and put the Scarlet Beast in front of someone who needs to find it.

// Transmissions Direct

Let the Beast Into Your Inbox

No spam. No begging. No mercy. Just drops, prophecies, and the occasional warning — sent only when the signal’s worth the static.

// Not wired to a provider yet — for now “Enlist” opens Gmail (or your mail app when unchecked) with your signup ready to send.

// You’re on the list. Welcome to the signal — watch your inbox.

© 2026 Scarlet Beast: A NJ Nonprofit Corporation Hunting truth in a world of shadows. [email protected] · Made with True Love 🔥
THE HOUSE LEDGER DEMO Cash on hand Rakeback returned Souls on the ledger Demo figures. Beyond what's reinvested, much of this goes to the poor — through the Mark of the Beast distribution system.
☣ Living · Dev