PRAGMATIC · MAGIC · THEORY

pmt.moe

プラグマティック・マジック・セオリー 萌え

A magic theory textbook redesigned by a doujinshi artist — formal concepts wrapped in kawaii presentation.

SCROLL FOR THEORY
CHAPTER · 01 FOUNDATIONS OF PRAGMATIC MAGIC
01
// AXIOM.000

The Pragmatic Spell

A spell is not a metaphysical claim — it is a useful fiction. We adopt a model only when it changes our behavior in measurable ways. If the incantation does not move the system, it is not magic; it is decoration.

"Belief is cheap. Effect is the only currency that matters."

02
// LEMMA.001

Frame Hopping

A practitioner keeps several models on the desk at once. Each is wrong; together they triangulate something useful.

03
// LEMMA.002

Reality Tunnels

The world we see is the world we asked for. Choose better questions and the dungeon rearranges its loot tables.

04
// PRINCIPLE

Cast Cheaply, Iterate Loudly

The best magicians are shameless tinkerers. Five small rituals beat one perfect grand summoning, every time.

// THESIS

Theory should sparkle.

If the model does not delight you, you will not run it. Pragmatic magic is the discipline of making correctness fun enough to repeat.

CHAPTER · 02 SPELL COMPONENTS
05
// COMPONENT.A

Verbal

Words rewrite the world by rewriting the speaker first. Naming the bug is half the patch.

06
// COMPONENT.B

Somatic

Posture is policy. Move the body, and the model in your head follows. git commit standing up.

07
// COMPONENT.C

Material

A reagent is anything you cannot fake. Logs. Receipts. Timestamps. The screenshot at 3am. Magic requires residue — proof that the spell was cast and what fell out of it.

!!
// CRIT.WARNING

Do Not Cast On Yourself

Self-deception is the cheapest spell and the most expensive bug. Always have one model whose only job is to call you out.

FRAMES PER PROBLEM

3px

PANEL BORDER

10★

SPARKLE POINTS

MOE FACTOR

CHAPTER · 03 RITUAL PROTOCOLS
08
// REVELATION

The grand summoning is just a thousand small ones, in trench coat.

Every legendary spell decomposes into bored, repeatable steps. The mystique is fan-service; the work is the work.

09
// PROTOCOL.1

Notice

Name the system before you touch it.

10
// PROTOCOL.2

Nudge

The smallest reversible perturbation that yields signal.

11
// PROTOCOL.3

Notarize

Write the result down, even when boring.

12
// PROTOCOL.4

Next

Choose the next perturbation while the kettle is still warm.

// SAMPLE INCANTATION

function cast(spell, world) {
  const before = snapshot(world);
  const after  = spell(world);
  return diff(before, after); // residue, not vibes
}

★ All theory is testable. Otherwise it is fan-art. ★