A country of 500,000 just became OpenAI's first national AI experiment
I have a mental filter for “AI for everyone” announcements. It activates automatically whenever someone uses the phrase “democratizing AI.” The filter translates it to: a landing page, a waitlist, a $20/month subscription that most people in the world can’t easily pay in their local currency, and a press release that gets 800 LinkedIn reposts from people who work at the company.
The Malta announcement is at least structurally different.
The story in one sentence
--> // making it invisible to querySelectorAll. // // `data-cfasync="false"` keeps this rescue script executable even when // Rocket Loader is active. It rescues module scripts via two strategies: // 1. Query the DOM for type$="-module" + src (covers case A) // 2. Regex-parse the raw HTML for commented-out script tags (covers case B) // Dynamically-created scripts bypass Rocket Loader entirely. (function () { if (window.__markdyRescue) return; window.__markdyRescue = true; var rescued = false; function rescueModuleScripts() { if (rescued) return; rescued = true; var srcs = []; // Strategy 1: Rocket Loader kept the tag in DOM but changed the type. // type="module" → type="{uuid}-module" (still has src attribute) document.querySelectorAll('script[type$="-module"][src]').forEach(function (s) { srcs.push(s.src); }); // Strategy 2: Rocket Loader COMMENTED OUT the script tag entirely: // // These are invisible to querySelectorAll, so we parse the raw HTML. // We handle both attribute orderings (type-first or src-first). var html = document.documentElement.innerHTML; var reSrcFirst = //g; var reTypeFirst = //g; var m; while ((m = reSrcFirst.exec(html)) !== null) { srcs.push(m[1]); } while ((m = reTypeFirst.exec(html)) !== null) { srcs.push(m[1]); } // Re-inject each found src as a real module script. // Deduplicate first, then inject. Dynamically-created scripts bypass // Rocket Loader entirely. Modules with the same URL are only executed // once by the browser (cached), so re-injecting already-running scripts // is safe. var seen = {}; srcs.forEach(function (src) { if (seen[src]) return; seen[src] = true; var fix = document.createElement('script'); fix.type = 'module'; fix.src = src; fix.setAttribute('data-cfasync', 'false'); document.head.appendChild(fix); }); } // Rescue when user clicks the placeholder (fallback if autoplay failed). document.addEventListener('click', function (e) { var t = e.target; if (t && typeof t.closest === 'function' && t.closest('.markdy-placeholder')) { rescueModuleScripts(); } }); // Rescue automatically after a short delay for autoplay. // Only fires if initAll() never ran (no data-markdy-init on any root). setTimeout(function () { if (document.querySelector('.markdy-root:not([data-markdy-init])')) { rescueModuleScripts(); } }, 1500); }());Any Maltese citizen who completes a two-hour AI literacy course designed by the University of Malta gets ChatGPT Plus free for a year, with distribution managed by the Malta Digital Innovation Authority.
Why scale actually matters here
Malta has about 530,000 citizens. Smaller than the population of Boston proper. Roughly equivalent to one large district in Ho Chi Minh City.
That smallness is what makes this interesting as an experiment - independent of whether OpenAI is being generous or is just acquiring a half-million cohort of potential paying subscribers on a government budget. A national AI literacy program for a population that size is tractable. You can measure it. You can interview people who took the course. You can watch what happens to per-capita AI usage in a defined geography before and after.
Most AI policy debates are abstract: “AI literacy is important,” “we must prepare citizens,” “AI will transform labor markets.” This one will produce actual data.
Malta is also the first concrete output of “OpenAI for Countries,” the initiative OpenAI launched to work with governments on national-level adoption rather than one-size-fits-all deals. Estonia and Greece got education partnerships; Malta gets the first citizen-level distribution. George Osborne - the former UK Chancellor of the Exchequer who now heads this initiative - called it the start of AI becoming “a national utility.”
The interesting design choice: the course requirement
It would have been easier to just give every Maltese citizen free access. The course requirement makes this marginally more interesting, because it says the intent is understanding before access, not just access.
The bar isn’t high. Two hours. The University of Malta built it. Topics: what AI is, what it can and can’t do, how to use it responsibly.
Whether two hours actually moves the needle on AI literacy is worth being skeptical about. A top HN commenter shared a corporate version of this experience: “We had a mandatory ChatGPT training course at work… We did get a certificate though. There was nothing they could teach that you couldn’t learn by using the free version in your own time.”
Checkbox theater is a real risk. But at least this one is voluntary. Nobody in Malta is failing their performance review because they skipped it.
What HN is actually arguing about
The thread has three distinct currents:
The MAU theory. Critics argue this is marketing, not education. OpenAI is padding its monthly active user count at taxpayer expense. Corporate training that ends in a certificate is a pattern everyone recognizes: everyone passes, the numbers go up, nothing is learned.
The political timing problem. General elections are currently happening in Malta. One commenter observed: “This is purely a vote for us will give you stuff scheme.” Free AI tools, announced mid-campaign, signed by the ruling party’s minister. Draw your own conclusions, but the timing doesn’t help credibility.
The Malta-specifically angle. Another commenter cited a 2019 Guardian piece: “Malta’s corruption is not just in the heart of government, it’s the entire body.” The best comment in the thread, though, skipped the Guardian entirely: “Next, maybe Anthropic can make Sicily an offer it can’t refuse.” That one won the thread.
The counterpoint: it’s voluntary, it’s two hours, there’s no data grab beyond what OpenAI normally collects, and a path to a free year of the best consumer AI product is a real thing of value. “Getting AI basics to the people with playground,” as one commenter put it - which is reasonably accurate.
The deal, laid out
| What you do | What you get |
|---|---|
| Complete the 2-hour AI literacy course | ChatGPT Plus for one year |
| Who built the course? | University of Malta |
| Who handles distribution? | Malta Digital Innovation Authority |
| Cost to citizen | Free (for year one) |
| After year one? | Standard ChatGPT Plus pricing |
The last row is important. “It’s a one year free trial, after that it costs money,” someone noted flatly. That’s accurate. OpenAI is betting that people who’ve used ChatGPT Plus for a full year will pay for it when the trial expires. That’s not an unusual bet - it’s how most freemium conversions work. But it’s not a public service commitment either. OpenAI is building a paying customer base here just as much as it’s building AI literacy.
My honest read
If this works - even partially - it’s a genuinely useful data point. A structured national AI program, combining education with access, at a scale that’s actually measurable: that’s something worth studying. Most AI policy discussions are untethered from evidence. This one will eventually have numbers attached.
If it doesn’t work, it probably joins a long list of national digital upskilling programs that produced certificates, press releases, and nothing much else.
My guess: somewhere in the middle. Some portion of Maltese citizens will take the course seriously, actually get useful with the tool, and keep paying at year two. A larger portion will complete it for the free subscription, use ChatGPT Plus about as much as they would have used the free tier, and cancel before the billing kicks in.
Both outcomes are fine. Even the second one tells us something.
It’s a small country. But that’s the experiment.
Discussion on Hacker News · Source: openai.com · Submitted by bookofjoe
Hoang Yell
A software developer and technical storyteller. I read Hacker News every day and retell the best stories here — in English and Vietnamese — for curious people who don't have time to scroll.