Screenshots

The Terminal Aesthetic

The Exchange doesn’t just look retro. It IS retro — a real terminal application running on jterm, a JVM-based terminal framework. ANSI escape codes, cursor positioning, color, the works. But underneath, it’s Java 26, Postgres, and a reactive event bus.

The BBS file archive includes hand-crafted and programmatically generated ANSI art. Here’s a taste of what’s in the archive.

Welcome Banner

The first thing you see on login — generated with the Phosphor ANSI art pipeline:

// In the login handler:
on login {
    if user.first_login {
        art = ansi_gen("THE EXCHANGE", font: "banner")
        colored = ansi_colorize(art, ansi_gradient(bright_green, bright_cyan))
        show_ansi(colored)
    } else {
        show "starfield.ans"
    }
    say "Welcome back, ${user.username}!"
}

Available Art Files

FileDescriptionUsed On
welcome.ansTHE EXCHANGE block letter bannerFirst login
starfield.ansAnimated star field backgroundReturning users
mountains.ansMountain landscapeFile archive splash
ocean.ansOcean sceneMail screen header
circuit.ansCircuit board patternSysOp menu
cyberpunk.ansCyberpunk cityscapeChat channel header

Screenshots (Coming Soon)

The BBS is under active development. Screenshots will be added as features come online:

Main Menu

Live Chat

Message Boards

Mail

Door Games

Phosphor Editor

Hot-Reload Demo

Federation

These screenshots will be captured and uploaded as each phase of the implementation completes. Follow the dev log for updates.