A Founder's Playbook · 25 April 2026 № 01 / 13

Getting
started
coding
with AI.

How a founder ships software in 2026 — without writing most of the code.

Daliso Ngoma
Founder & MD
African Technopreneurs
daliso.com
Daliso Ngoma — portrait
P.S.
Built with Claude Design, and friends.
FIG. A
Daliso NgomaCoding with AI25 Apr 2026
01 — Who is this02 / 13
Portrait
Studio Ghibli–styled · AI-generated
Who is this

Hi, I'm Daliso.

Software engineer turned founder. I started African Technopreneurs in 2017 — an XR and immersive-tech business serving the African market. My background is in software engineering. I still ship code today.

The difference is: I don't write most of it anymore.

African Technopreneurs
African Technopreneurs (Pty) Ltd
Founder & Managing Director · Est. 2017
Daliso NgomaCoding with AI25 Apr 2026
03 — Three artefacts, all AI03 / 13
Three artefacts

Three things you've already seen.
None made the traditional way.

01 / The SiteVanilla HTML/CSS/JS

Scaffolded
by ChatGPT.

Daliso Ngoma.

Scaffolded in conversations with ChatGPT. Source code is public on GitHub.

02 / The LogoMade by ChatGPT

Iterated in
an afternoon.

AT logo

Iterated from rough idea to a final mark in an afternoon. No designer involved.

Cost: a few prompts.
03 / The PortraitStudio Ghibli–styled

From a single
reference photo.

Portrait

Generated from a reference photo. Fed back to AI as the basis for the brand.

A few minutes. Done.
Daliso NgomaCoding with AI25 Apr 2026
04 — Exhibit A04 / 13
Exhibit A

A native iOS app.
thedevilsaidictionary.com

Available on the App Store since 1 April 2026 — appropriately, on April Fools' Day.

10+
iOS apps published with AI assistance
100
downloads this month alone — modest, but real
1 Apr
Release date — yes, deliberately

Distribution beats demos. Ship something real — even if only a hundred people see it.

The Devil's AI DictionaryEST. 2026

the devil's ai dictionary

Prompt
noun.The new keyboard.
Ship
verb.The forgotten step.
Founder
noun.A person with too many tabs.
QR code — thedevilsaidictionary.com
Scan
thedevilsaidictionary.com
Daliso NgomaCoding with AI25 Apr 2026
05 — Why now05 / 13
Why now

Three things changed
in the last eighteen months.

01

Capability.

LLMs got good enough to write production code, not just snippets.

02

Tooling.

Cursor, Claude Code, Codex, v0, Lovable. The IDE-grade tools matured.

03

Cost.

A weekend project that would have cost R50,000 in agency fees is now ~R200 in API spend.

The gap between "I have an idea" and "it's live" has collapsed.

Daliso NgomaCoding with AI25 Apr 2026
06 — The mindset shift06 / 13
The mindset shift

From writing code
to describing intent.

The old way

Code-first.

  • Learn syntax.
  • Read docs.
  • Type every line yourself.
  • Get stuck. Search Stack Overflow.
The new way

Intent-first.

  • Describe what you want.
  • Review what comes back.
  • Direct the next iteration.
  • Ship. Get stuck less often.

You're not coding. You're directing.
The cursor is your second brain.

Daliso NgomaCoding with AI25 Apr 2026
07 — The toolkit07 / 13
The toolkit

Four categories.
Pick one from each.

Category
Tools
What it does
Chat partner
ChatGPT, Claude
Plan, debug, learn. Where most people start.
Code editor
Cursor, Windsurf,
VS Code + Copilot
AI inside your editor. Edits files in place.
Agent
Claude Code, Codex CLI
Delegates whole tasks. Reads, writes, runs commands.
App builder
Lovable, v0, Bolt
App from a prompt. Lowest barrier to ship.

Don't try them all in week one. Pick a chat partner, then add a builder.

Daliso NgomaCoding with AI25 Apr 2026
08 — A simple workflow08 / 13
A simple workflow

Four steps.
Loop the middle two.

01

Describe.

Plain English. Add an example you like.

02

Generate.

Let AI draft. First try is rarely the last.

03

Iterate.

Review. Ask follow-ups. Refine.

04

Ship.

Deploy to a real URL. Tell someone.

Loop 02 ↔ 03 Until it's right. Then ship.

Daliso NgomaCoding with AI25 Apr 2026
09 — Prompting that works09 / 13
Prompting that works

Five things that change everything.

1

Be specific.

"Make a personal site""single-page site, hero, three featured items, dark-mode toggle, mobile-first."

2

Show examples.

Paste a site you like. Ask AI to inspect the pattern, then adapt it.

3

Ask the AI to ask you questions first.

Most ambiguity surfaces in those questions — before any code is written.

4

Share errors verbatim.

Don't paraphrase failures. Paste the exact stack trace or error message.

5

Make it tell you what it's about to do.

Catch wrong assumptions before they hit your code.

Daliso NgomaCoding with AI25 Apr 2026
10 — Start this weekend10 / 13
Start this weekend

Build a personal site.
Live by tomorrow night.

PickWhat to feature

Three things, one CTA.

  • A name.
  • Three things you've done.
  • One call to action.
BuildPick a stack

Beginners / Coders.

  • Lovable — no code.
  • Codex + Claude Code — agents.
  • GitHub + Cloudflare Pages.
ShipBy Sunday night

One link, sent.

  • A live URL.
  • Sent to one friend.
  • First post in your blog.

Don't pick something complicated. Pick something you'll actually finish.

Daliso NgomaCoding with AI25 Apr 2026
11 — What to watch for11 / 13
What to watch for

Five ways this goes wrong.

01 / Confidence

Synthetic confidence.

AI is wrong, confidently. Read what it gives you before you trust it.

02 / Versioning

No version control.

Use git, even on solo projects. AI breaks things — you'll want the undo.

03 / Hallucination

Invented libraries.

AI sometimes fabricates packages that don't exist. Verify before you install.

04 / Testing

No local testing.

"Looks right" isn't shipped. Run it. Click every link. Open it on your phone.

05 / Scope

Feature drift.

AI loves adding things. Hold the line on scope. Ship the small version first — every time.

Daliso NgomaCoding with AI25 Apr 2026
12 — Bonus · For coders12 / 13
Bonus · For coders

Make your site
agent-readable.

Agents now browse the web on behalf of users. Five small files turn your domain into something a model can actually understand. One commit, ship it once.

/llms.txt
# Daliso Ngoma
> Founder, African Technopreneurs.

## Pages
- [About](/about): bio
- [Writing](/writing): essays
- [Work](/work): shipped projects

A plain-text site map. The format LLMs already prefer.

robots.txt
User-agent: GPTBot
Allow: /
User-agent: ClaudeBot
Allow: /
User-agent: PerplexityBot
Allow: /
Sitemap: /sitemap.xml

Opt in by name. Default-deny crawlers you don't want.

<head> · JSON-LD
<script type="application/ld+json">
{
  "@context": "schema.org",
  "@type": "Person",
  "name": "Daliso Ngoma",
  "url": "https://daliso.com"
}
</script>

Structured data. Tell agents what the page is, not what it looks like.

92/100
Agent-readiness score
Check yours
Also worth shipping: /feed.json · /sitemap.xml · OpenGraph + Twitter cards.
Take it from here № 13 / 13
Pick one weekend.
Pick one project.
Just prompt.
QR code — daliso.com
Scan
daliso.com
Daliso Ngoma
— Daliso Ngoma Thanks for listening. Now go ship.