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
NEWPoker AI is live — meet Hiss, the bot that reads the table.Jun 01✦ NEWThe Book of Babalon grimoire is now embedded on-site.May 30✦ LIVEThe Discord war room is open — come slither in.May 28✦ DROPOutcast Athletic apparel restocked.May 26✦ FIXFresh BTC, ETH, SOL & XMR wallets + QR codes on the donation page.May 24✦ NEWThe Scarlet Library opened — 11 forbidden volumes shelved.May 22✦ LIVEMark of the Beast reissued with the Hiss build feed and live commits.May 20✦ NEWPoker AI is live — meet Hiss, the bot that reads the table.Jun 01✦ NEWThe Book of Babalon grimoire is now embedded on-site.May 30✦ LIVEThe Discord war room is open — come slither in.May 28✦ DROPOutcast Athletic apparel restocked.May 26✦ FIXFresh BTC, ETH, SOL & XMR wallets + QR codes on the donation page.May 24✦ NEWThe Scarlet Library opened — 11 forbidden volumes shelved.May 22✦ LIVEMark of the Beast reissued with the Hiss build feed and live commits.May 20✦
Live now · scarletbeastx

The Machine Is Live

Real-time · Unscripted · Unforgiving

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
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
DevToolbar: scrcpy window auto-position on open + "Rec Scrcpy Pos" buttoExpandCollapse
DevToolbar: scrcpy window auto-position on open + "Rec Scrcpy Pos" butto

Original request:
when i open scrcpy.exe on the developer toolbar, create an autopositioner for the window that opens that puts it in the last position it found for the program.  create a button for recording the position and size of the window in the developer toolbar and write it to the Hiss postgres db so you can restore it on open.   make sure the window is open before you position it, it is not the terminal window, its the window that the terminal window opens

it is currently running and positioned and sized.

Result:
Done. The Developer Toolbar now auto-positions the scrcpy mirror window on open and has a button to record its current placement to the Hiss postgres DB. Built clean and the toolbar is running (pid 20436).

## What it does
- **Opening Scrcpy** (existing button) now launches scrcpy *and* — once the actual mirror window appears — moves it to the last recorded position/size. It polls up to ~25s for the window so the device/adb startup delay is handled, and it targets the **mirror window** (the captioned SDL window titled with the device name, e.g. `SM-A176U1`), explicitly **not** scrcpy's console/terminal window. It only repositions the window *this* launch opens (snapshots pre-existing scrcpy windows first).
- **New "Rec Scrcpy Pos" button** (next to Trainer): finds the running scrcpy window, reads its rect, and upserts it to postgres. If scrcpy isn't open it tells you so.

## Storage
Mirrors the trainer's pattern — `settings` table, `key='devtoolbar_windows'`, `value->'scrcpy'` = `"x,y,w,h"`. Connection uses the same default (`host=127.0.0.1 … dbname=hiss`) and honors the shared `HKCU\Software\Hiss\Trainer\hiss_conn` override.

**I already seeded the current position** (`1273,-1080,654,1039`) into the DB from the running scrcpy, so a reopen will restore it immediately — no need to record first.

## Files
- [DeveloperToolbar.cpp](DeveloperToolbar/DeveloperToolbar.cpp) — DB helpers (libpq), scrcpy window finder, background positioner, record handler, the new button.
- [DeveloperToolbar.vcxproj](DeveloperToolbar/DeveloperToolbar.vcxproj) — added `..\postgres` include, `..\lib` lib dir, and `libpq.lib;secur32.lib;ws2_32.lib`.

## Worth noting
- I had to build the DeveloperToolbar project (normally skipped) since the change lives there; I stopped the running instance first and relaunched it.
- Runtime depends on `libpq.dll` resolving from `C:\Program Files\PostgreSQL\12\bin` via PATH (same as the trainer) — it's not copied into `Release\`.
- **To verify the full flow:** click **Scrcpy** to reopen and confirm it lands at the saved spot; then drag/resize the window, click **Rec Scrcpy Pos**, reopen again, and confirm it restores to the new spot. I couldn't exercise the GUI buttons myself, but the build, libpq load, and DB read/write path are all confirmed.
chorea5c3704Christian Scarlet· 21 hours ago
Hide font/sample web tools on close; concise autocommit subject lineExpandCollapse
Hide font/sample web tools on close; concise autocommit subject line

Original request:
when i close the font creation tool or the sample gen tool, im unable to reopen them.    when i close them they should hide not close so it reopens easily

Result:
Both done.

## 1. Tools hide instead of closing — rebuilt `Release\trainer.exe` (running, pid 22168)
The Font Creation Tool and Sample Gen Tool are native windows wrapping a WebView2 ([CTrainerWebWindow](trainer/TrainerWebWindow.cpp)). They had no `WM_CLOSE` handler, so closing **destroyed** the window while the trainer kept a stale pointer — the Open buttons then called `ShowWindow` on a dead window and nothing happened.

Now `OnClose()` [hides](trainer/TrainerWebWindow.cpp) the window (saving its placement) instead of destroying it, so clicking **Open Sample Gen** / **Create Fonts** instantly re-shows it with state intact. The window is finally torn down when the trainer itself exits. **Try it:** open a tool, close it, reopen — it should pop right back.

## 2. Concise commit subject line
The Stop hook [write_commit_summary.ps1](scripts/write_commit_summary.ps1) now uses a short one-line subject from `.git\CLAUDE_COMMIT_SUBJECT` (which I write each turn), falling back to the old "first line of the reply" behavior if it's absent. The full request + result still go in the **body**, so detail isn't lost — just the first line reads cleanly.

For this turn I wrote the subject:
> `Hide font/sample web tools on close; concise autocommit subject line`

and recorded the convention in [memory](C:\Users\scarl\.claude\projects\c--www-openholdembot-old\memory\autocommit_watcher.md) so future sessions write a terse subject too.

So this turn's autocommit will read with that concise first line instead of my whole response.
chore1cdcb54Christian Scarlet· 22 hours ago
Done — web-only, so just reload the Font Creation Tool.ExpandCollapse
Done — web-only, so just reload the Font Creation Tool.

Original request:
change the verbage for clicking a green glyph chip and remove green and make sure to note in it that both colors are deleted.

Result:
Done — web-only, so just **reload the Font Creation Tool**.

## Updated wording

**Footer hint** ([fonts.html](trainer/web/fonts.html)) — dropped "green", notes both colours:
> ⚠ Clicking a glyph chip above DELETES its saved font(s) from the database — this removes the glyph from BOTH colours (Ctrl+Z to undo).

**Confirm dialog** ([fonts.js](trainer/web/fonts.js)) — also notes both colours and fixed the now-incorrect "cannot be undone":
> Delete the saved font(s) for "X" (Text g) from the database?
>
> This removes every glyph saved as "X" in this group — for BOTH colours. You can undo with Ctrl+Z.
choreff8962bChristian Scarlet· 22 hours ago
Done — chip-deletes are now undoable through the existing Undo buttonExpandCollapse
Done — chip-deletes are now undoable through the existing Undo button

Original request:
sure write an undo

Result:
Done — chip-deletes are now undoable through the **existing Undo button and Ctrl+Z** (same LIFO stack as row create/delete). Build is clean and trainer is running (pid 34528); both endpoints respond.

## How it works
When you delete a footer chip, the server keeps a copy of the removed font record(s) on the undo stack. Pressing **Undo (Ctrl+Z)** re-inserts them into the database and brings the green chip back.

## What changed

**Server (rebuilt `Release\trainer.exe`)**
- [FontGlyphStore.h](trainer/FontGlyphStore.h) — `SUndoAction` gained a `fonts` vector + a `type 2` (chip-delete); new `DeleteCharFonts()`; `Undo()` now reports the action type/group/char.
- [FontGlyphStore.cpp](trainer/FontGlyphStore.cpp) — `DeleteCharFonts()` removes the char's fonts (capturing them for undo) and pushes a type-2 action; `Undo()` re-inserts them on type 2.
- [TrainerFonts.cpp](trainer/TrainerFonts.cpp) — `RemoveCharFromGroup()` can output the removed records; new `RestoreFonts()` re-inserts + saves to DB.
- [TrainerServer.cpp](trainer/TrainerServer.cpp) — `deletechar` now routes through the store (so an undo is recorded); `undo` response includes `fontsRestored`/`group`/`ch` when a chip-delete is undone.

**Web ([fonts.js](trainer/web/fonts.js))**
- On chip-delete, snapshots the chip's prior per-colour coverage counts (LIFO).
- `doUndo()` recognizes a restored chip-delete and restores that chip's coverage from the snapshot, so the green chip (and its `xN` count) reappears exactly as before. Status now hints "— Ctrl+Z to undo".

## Notes
- The undo stack is **server-side and in-memory** (cleared on trainer restart, max 100 actions), shared with row operations — so Ctrl+Z walks back through everything in order.
- I verified the endpoints respond correctly with an empty stack and a no-op delete; a full delete→undo round-trip needs a loaded tablemap with fonts, which I didn't exercise live.
- **Reload the Font Creation Tool** for the web changes; the server is already rebuilt and running.
chorea7938deChristian Scarlet· 22 hours ago
All done and verified — the endpoint is live ({"ok":true,"removed":0}ExpandCollapse
All done and verified — the endpoint is live ({"ok":true,"removed":0}

Original request:
if i click a chip glyph in the footer of the font creation tool, prompt to delete those fonts, and then delete them if the user confirms.   add verbage in a red-ish color underneath all the glyphs that signals to user that clicking a glyph chip will delete those fonts

Result:
All done and verified — the endpoint is live (`{"ok":true,"removed":0}` for a non-existent char confirms the new binary is running; trainer pid 35576 is alive).

## What I built

**Server (rebuilt `Release\trainer.exe`, Release|Win32)**
- [TrainerFonts.cpp](trainer/TrainerFonts.cpp) — new `RemoveCharFromGroup(group, ch)`: erases every font record mapping to a character in that group, then `SaveToDB()` (same persistence path as a save). Returns the count removed, or -1 on DB failure.
- [TrainerServer.cpp](trainer/TrainerServer.cpp) — new `POST /api/fonts/deletechar?group=G&ch=C` endpoint returning `{ok, removed}`.

**Web UI ([fonts.js](trainer/web/fonts.js), [fonts.html](trainer/web/fonts.html), [fonts.css](trainer/web/fonts.css))**
- **Accounted (green) footer chips are now click-to-delete.** Clicking one pops a confirm — *"Delete the saved font(s) for "X" (Colour N, Text g)? … cannot be undone"* — and on OK, deletes all that character's fonts from the DB, clears it from both colours' coverage, and refreshes. Cancel does nothing.
- Hovering a deletable chip turns it **red with a ring** as a warning; cursor becomes a pointer.
- Added the red-ish warning line under all the footer glyphs: **"âš  Clicking a green glyph chip above DELETES its saved font(s) from the database."**

## Notes
- Only **green/accounted** chips delete (orange/unaccounted have no fonts, so they're inert).
- Deletion is per **character within the current group** — the underlying `t$` records aren't colour-specific, so clicking the same char in either colour block removes the same fonts (and clears it from both coverage rows).
- **Reload the Font Creation Tool** to pick up the web changes; the server is already rebuilt and running.

Want a small **Undo** for chip-deletes too (the existing Ctrl+Z undo covers row create/delete, not these), or is the confirm enough?
choree55e497Christian Scarlet· 22 hours ago
Done — added 32 new "success/positive" sounds to the completion rotatiExpandCollapse
Done — added 32 new "success/positive" sounds to the completion rotati

Original request:
add 32 more success sounds for completion

Result:
Done — added **32** new "success/positive" sounds to the completion rotation.

## What changed
- Downloaded 32 CC0 PCM WAVs into [scripts/sounds/](scripts/sounds/), prefixed `kenney-*`: 4× confirmation, 9× maximize (rising), 6× glass (ding), 4× open, 2× pluck, 4× question, bong, 2× select.
- All verified as uncompressed PCM (so Windows plays them natively), and they're short UI jingles (well under the 10s hook timeout).
- **No config edit needed** — `play_random_sound.ps1` picks randomly from the whole folder, so the rotation grew automatically from 9 → **41** sounds. The question hook still uses the fixed Mario coin.

These are pleasant confirmation/positive UI sounds rather than full game-victory fanfares (those are hard to source 32 of reliably). If you'd prefer more game-jingle "win" sounds in the mix, I can pull the remaining `chime` theme successes (big-sur/chime/future/material) or grab Kenney's *Digital Audio* power-up jingles — just say which flavor.

To prune any you dislike, just delete the file from `scripts/sounds/`.

Sources: [Calinou/kenney-interface-sounds](https://github.com/Calinou/kenney-interface-sounds) (CC0, Kenney Interface Sounds pack).
chored561bccChristian 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.
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 πŸ”₯