Osamah·Harazi
Back to portfolio
◇ Writing··6 min

Tajweed and structured thinking

What years of memorising rules for reciting the Qur'an taught me about the way I read papers, build code, and design indicators.

The first technical discipline I learned was tajweed: the rules for reciting the Qur'an correctly. I started at eight. Long before I touched a keyboard or a chart, I'd been trained to read a line of text very, very slowly — letter by letter, weight by weight. I think it's the single most useful habit I have.

What tajweed actually is

Tajweed (تجويد) is the discipline of reciting Arabic so that each letter is pronounced from the correct part of the mouth, with the correct length, with the correct weight, in the correct relationship to the letters around it. There are rules for which letters fuse, which stop, which echo. There are rules for when a nasal sound is held for two beats and when for four. There are rules for silence.

You learn it by reading the same lines, slowly, with a teacher who catches every flaw. Then you read them again. The text doesn't change. You change.

The first thing this teaches you, before any specific rule, is that a piece of text has structure that's invisible until you slow down. The same line read at speed and read at the correct cadence are not the same line.

Three habits I didn't know I was building

1. Parse before you read

In tajweed you don't just sound out a word. Before you say it, you've already classified the letters: which are heavy, which are light, which are followed by a stop, which are followed by a long vowel that pulls them differently. The recitation is the output of a parse that happened first.

I do this with code. I do it with papers. When I open a research paper, I don't start at the first word — I scan it for shape. Where are the section headers? How many figures? Is the contribution in the abstract or buried in section four? The parse runs first; the read happens against the parse.

It's the thing I see other people skip when they say they're "bad at reading dense material." They are not bad at reading. They are reading without parsing.

2. Attend to weight

In tajweed, every letter has a weight. ص is heavy. س is light. They sound similar to a beginner; they are not the same letter and a careful reciter never confuses them. The weight changes the meaning, sometimes the entire word.

Code has weight too. A function that mutates global state is heavy — it pulls everything around it. A pure function is light. A for-loop with a side effect inside it is heavier than a comprehension that builds a list. The reader who can feel the weight reads code differently from the reader who can't.

This shows up most in indicators. A signal generated from a single-bar close is light. A signal generated from a multi-bar confirmation against a higher-timeframe context is heavy. Charts full of light signals look smart and don't work. The weight is the thing.

3. Hold the timing

The most precise rule in tajweed is the timing of the prolongation — madd. Some letters are held for two beats, some for four, some for six, depending on what follows them. If you hold a two-beat for three, the recitation is wrong. The rule isn't "hold it longer when it feels right." The rule is two.

Building anything reliable means accepting that some numbers are not negotiable. A risk-reward of 1:3 is not a feeling. A confirmation on the 4-hour close is not a vibe. Either the bar has closed or it hasn't. Either the rule fired or it didn't.

The hardest discipline isn't learning a rule. It's refusing to fudge it when the situation begs you to.

Why I'm writing this down

I don't think tajweed gave me an edge in any obvious way. The rules don't transfer. What transferred was the habit of reading slowly, with structure, against rules I didn't set. That habit is older than anything else in my toolkit, and most of what I'm good at is downstream of it.

Most of the people I work with have a similar foundational discipline somewhere in their past — a sport, an instrument, a craft, a religion. The specifics don't matter much. What matters is the shape: time spent reading slowly, against constraints that aren't yours, until the constraints become a way of seeing.

Tajweed is mine. I don't think I'd build the things I build without it.