<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rahul Devaskar</title>
    <description>The latest articles on DEV Community by Rahul Devaskar (@apostopher).</description>
    <link>https://dev.to/apostopher</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F114037%2F0df46ebb-cf01-4472-b110-29973fb39647.jpeg</url>
      <title>DEV Community: Rahul Devaskar</title>
      <link>https://dev.to/apostopher</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/apostopher"/>
    <language>en</language>
    <item>
      <title>Make any quiz with AI in 30 seconds — and the three attempts it took to ship it</title>
      <dc:creator>Rahul Devaskar</dc:creator>
      <pubDate>Wed, 20 May 2026 12:32:24 +0000</pubDate>
      <link>https://dev.to/apostopher/make-any-quiz-with-ai-in-30-seconds-and-the-three-attempts-it-took-to-ship-it-5c2f</link>
      <guid>https://dev.to/apostopher/make-any-quiz-with-ai-in-30-seconds-and-the-three-attempts-it-took-to-ship-it-5c2f</guid>
      <description>&lt;h2&gt;
  
  
  The sleepover
&lt;/h2&gt;

&lt;p&gt;It was a Saturday afternoon. My son had friends coming over for a sleepover that night, and he wanted to host a quiz. I had said I'd help him build one. I had also told my partner I'd finish something else by 5pm.&lt;/p&gt;

&lt;p&gt;The two promises were not compatible. (A typical excuse, I know.)&lt;/p&gt;

&lt;p&gt;I sat down at the laptop and thought: &lt;em&gt;just ask the AI&lt;/em&gt;. I opened ChatGPT and typed:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Create a 10 question quiz for 8 year old kids with a Minecraft theme. Only expert Minecraft players should get 100%. Make it tough.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Twenty seconds later I had a quiz. My son was reading the questions over my shoulder, suspicious.&lt;/p&gt;

&lt;p&gt;"But but but but daddy — how will the AI know what &lt;em&gt;I&lt;/em&gt; want?"&lt;/p&gt;

&lt;p&gt;He was eight, and he was already asking the question every product manager eventually asks: &lt;em&gt;who is in charge of the requirements here?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I showed him the prompt. I changed "Minecraft" to "Pokemon" and re-ran it. He watched a new quiz appear. He didn't say anything, but he tilted his head in the way he does when he's reconsidering whether something is magic.&lt;/p&gt;

&lt;p&gt;That was the moment I thought: this should be a feature in &lt;a href="https://quizzy.earth" rel="noopener noreferrer"&gt;Quizzy&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The cost wall
&lt;/h2&gt;

&lt;p&gt;The naive version is two afternoons of work. Slap a form on a page, send the user's input to an LLM, render the result.&lt;/p&gt;

&lt;p&gt;The problem is the bill.&lt;/p&gt;

&lt;p&gt;If I put my OpenAI key behind every user, &lt;em&gt;I&lt;/em&gt; am paying for every quiz on Quizzy.earth. The economics of a free product where every action calls a paid API are bad in a predictable way: the more successful you are, the more it costs you. There's no version of "this took off" that isn't also "I am broke."&lt;/p&gt;

&lt;p&gt;Quizzy doesn't charge for this. I don't want it to. So the question wasn't &lt;em&gt;how do I add AI?&lt;/em&gt; — it was &lt;em&gt;how do I add AI in a way where the user's AI does the work?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That turned out to be the hard part. I tried three things.&lt;/p&gt;

&lt;h2&gt;
  
  
  Attempt 1: The BYO-AI form
&lt;/h2&gt;

&lt;p&gt;The first idea was the obvious one. Build a small form: &lt;strong&gt;topic&lt;/strong&gt;, &lt;strong&gt;difficulty&lt;/strong&gt;, &lt;strong&gt;language&lt;/strong&gt;. Press a button. The app composes a &lt;em&gt;prompt&lt;/em&gt; you can copy.&lt;/p&gt;

&lt;p&gt;You paste that prompt into whichever AI you already use. ChatGPT, Claude, Gemini, whatever. The AI spits out JSON. You paste the JSON back into Quizzy. The app parses it into a quiz.&lt;/p&gt;

&lt;p&gt;In theory: elegant. The user pays for their own tokens. I pay for nothing. Everyone wins.&lt;/p&gt;

&lt;p&gt;In practice: I was the only person on Earth who could use it.&lt;/p&gt;

&lt;p&gt;The first problem was that most people don't know what JSON is. I had built a flow that required users to understand a serialisation format, and most of them weren't going to. I figured I could explain that part.&lt;/p&gt;

&lt;p&gt;The second problem was the one I didn't see coming, and my son was the one who found it.&lt;/p&gt;

&lt;p&gt;I handed him the laptop to try it. He typed his topic into Quizzy, copied the generated prompt, pasted it into ChatGPT — and the moment the AI started typing, he selected the half-written response and pasted it back into Quizzy. He didn't wait for the stream to finish. Why would he? On every other app he uses, when text appears, it's done. He pasted half a JSON object, hit &lt;em&gt;create quiz&lt;/em&gt;, and got an error.&lt;/p&gt;

&lt;p&gt;He looked up at me. &lt;em&gt;What did I do wrong?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;He hadn't done anything wrong. The product had. If an eight-year-old can't build a quiz with this thing in under a minute, the product has failed — that was the rule I'd written down for Quizzy on day one, and I'd just watched it break in front of me. &lt;em&gt;Even a kid should be able to build a quiz without friction.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I had built a feature for developers and shipped it to families.&lt;/p&gt;

&lt;h2&gt;
  
  
  Attempt 2: The magical disappear
&lt;/h2&gt;

&lt;p&gt;The next idea was genuinely fun to think about.&lt;/p&gt;

&lt;p&gt;What if the AI itself sent the quiz back to me?&lt;/p&gt;

&lt;p&gt;The flow in my head:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The user gets a prompt with a unique ID baked into it.&lt;/li&gt;
&lt;li&gt;They paste it into their AI.&lt;/li&gt;
&lt;li&gt;The AI generates the quiz and &lt;code&gt;POST&lt;/code&gt;s the JSON to &lt;code&gt;/api/generate-quiz&lt;/code&gt; along with that ID.&lt;/li&gt;
&lt;li&gt;My backend stores it in Redis under that ID.&lt;/li&gt;
&lt;li&gt;The frontend has been polling (or sitting on a websocket) the whole time. The moment the ID lights up, the quiz appears.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The user does nothing. They paste a prompt, they watch their AI think for a few seconds, they look back at Quizzy and the quiz is &lt;em&gt;just there&lt;/em&gt;. No copy. No paste. No JSON.&lt;/p&gt;

&lt;p&gt;This would have been magic.&lt;/p&gt;

&lt;p&gt;It didn't work because, as it turns out, most AI agents won't &lt;code&gt;POST&lt;/code&gt; to an arbitrary URL. Some block it outright. Some require a tool the user hasn't enabled. Some quietly refuse. The version of this that works in 2026 is not the version of this that works for a stranger using whichever AI they happen to have open.&lt;/p&gt;

&lt;p&gt;Maybe one day. Not yet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Attempt 3: The URL smuggle
&lt;/h2&gt;

&lt;p&gt;If &lt;code&gt;POST&lt;/code&gt; is forbidden, what about &lt;code&gt;GET&lt;/code&gt;?&lt;/p&gt;

&lt;p&gt;Most AI agents &lt;em&gt;will&lt;/em&gt; "browse" or "search" a URL when asked. So what if the prompt told the AI to construct a URL where the entire generated quiz lived in the query string, and then to visit it? My server would parse the quiz out of the query params, stash it in Redis, same as before.&lt;/p&gt;

&lt;p&gt;I built this one. It almost worked.&lt;/p&gt;

&lt;p&gt;It died for two unromantic reasons. The first is that browsers and proxies cap URL lengths somewhere between 2k and 8k characters. A ten-question quiz with four options each blows past that without breaking a sweat. The second is that the AI's built-in browser tools have their own opinions about what counts as a legal URL, and a 6k-character query string was not one of them. The requests never landed. The DNS resolved to nowhere useful. I was smuggling air.&lt;/p&gt;

&lt;p&gt;So: I couldn't hide JSON. I couldn't avoid the copy-paste. And on mobile — where most of Quizzy's traffic actually lives — every paste also means switching apps. Open Quizzy, copy prompt, swipe to ChatGPT, paste, wait, copy response, swipe back, paste again. App-switching on a phone is its own friction tax, and unlike the others, this one I couldn't engineer my way out of in this version. The user's AI is in a different app from mine, and the path between them runs through the OS.&lt;/p&gt;

&lt;p&gt;So the remaining question was a smaller one: with all of that fixed in place, could the existing flow at least stop being a UX punishment?&lt;/p&gt;

&lt;h2&gt;
  
  
  What I actually shipped
&lt;/h2&gt;

&lt;p&gt;The thing I keep reminding myself when I build for people who aren't developers: &lt;strong&gt;users don't want your product.&lt;/strong&gt; They want the thing your product gives them. Every step you can absorb so they don't have to think about it is the product.&lt;/p&gt;

&lt;p&gt;I couldn't remove the copy-paste step. But I could make it forgive almost anything.&lt;/p&gt;

&lt;p&gt;Two changes did most of the work:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JSONL instead of JSON.&lt;/strong&gt; Instead of asking the AI for one big JSON array, I ask it to emit &lt;em&gt;one JSON object per line&lt;/em&gt;. Now if a user pastes a partial stream — three lines out of ten — I get a three-question quiz instead of an error. Their copy is imperfect; the parse is graceful. The quiz that appears is a little shorter than they expected, not a red banner.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;code&gt;jsonrepair&lt;/code&gt; for everything else.&lt;/strong&gt; Users don't just paste the JSON. They paste &lt;em&gt;the AI's whole response&lt;/em&gt; — including "Sure! Here's your quiz:" at the top and "Let me know if you want me to tweak anything!" at the bottom. The &lt;a href="https://www.npmjs.com/package/jsonrepair" rel="noopener noreferrer"&gt;&lt;code&gt;jsonrepair&lt;/code&gt;&lt;/a&gt; package is forgiving in exactly the ways an LLM's output is messy. It strips chatter, closes unclosed brackets, repairs trailing commas, fixes single quotes. It turns "almost JSON" into JSON.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkvv2t82zoffdpao0iz7l.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkvv2t82zoffdpao0iz7l.gif" alt="A user dragging across an AI response, selecting the preamble and trailing chatter along with the JSON, then pasting all of it into Quizzy and still getting a clean quiz" width="800" height="465"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Together: the flow still has a paste step, but the paste step almost never fails. The user sees a quiz appear. They don't see the parser stitching their messy paste back into shape.&lt;/p&gt;

&lt;p&gt;It is not the magical disappearing-prompt flow I wanted in attempt two. But it ships, it costs me nothing per quiz, and it works for grandparents pasting from ChatGPT on a Sunday morning.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fquizzy.earth%2Fai-import.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fquizzy.earth%2Fai-import.png" alt="End-to-end in Quizzy: fill in topic, difficulty, and language; copy the generated prompt; paste into an AI; paste the response back; watch the quiz appear" width="799" height="341"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The thread
&lt;/h2&gt;

&lt;p&gt;Every dead end I hit was a version of the same instinct: &lt;em&gt;let the user's tools do the work&lt;/em&gt;. That instinct was right. The trick wasn't backing away from it — it was accepting that the rough edges of "the user's tools" (partial pastes, friendly preambles, half-streamed responses) were &lt;em&gt;my&lt;/em&gt; problem to absorb, not theirs.&lt;/p&gt;

&lt;p&gt;Good UX, in this case, looked less like a clever pipeline and more like a tolerant parser. The clever architecture would have been more satisfying to build. It also wouldn't have shipped.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it — and tell me how you'd do it
&lt;/h2&gt;

&lt;p&gt;It's live at &lt;strong&gt;&lt;a href="https://quizzy.earth" rel="noopener noreferrer"&gt;quizzy.earth&lt;/a&gt;&lt;/strong&gt;. Open it, pick a topic, generate the prompt, paste it into your favourite AI, paste the response back. Thirty seconds, no account, your tokens.&lt;/p&gt;

&lt;p&gt;If you've solved &lt;em&gt;"great UX on someone else's API budget"&lt;/em&gt; in a way I haven't tried — I'd love to hear it. Especially that magical disappearing version. I still think there's a way to make it work.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>sideprojects</category>
      <category>ux</category>
    </item>
    <item>
      <title>I built a quiz app with my 8-year-old to fix homework — and accidentally a family ritual</title>
      <dc:creator>Rahul Devaskar</dc:creator>
      <pubDate>Thu, 14 May 2026 10:02:32 +0000</pubDate>
      <link>https://dev.to/apostopher/i-built-a-quiz-app-with-my-8-year-old-to-fix-homework-and-accidentally-a-family-ritual-1c1b</link>
      <guid>https://dev.to/apostopher/i-built-a-quiz-app-with-my-8-year-old-to-fix-homework-and-accidentally-a-family-ritual-1c1b</guid>
      <description>&lt;h2&gt;
  
  
  The homework problem
&lt;/h2&gt;

&lt;p&gt;It started in December 2025.&lt;/p&gt;

&lt;p&gt;My son was about to start Year 3, and Year 3 in Australia means &lt;strong&gt;NAPLAN&lt;/strong&gt; — the standardised test that suddenly turns "reading at bedtime" into "structured practice." I had a stack of worksheets, a pile of flashcards, and a kid who had zero interest in any of it.&lt;/p&gt;

&lt;p&gt;The problem wasn't that he couldn't do the questions. He could. The problem was that &lt;em&gt;being asked&lt;/em&gt; the questions felt like a chore. The format was the friction. A worksheet says: &lt;em&gt;here is work&lt;/em&gt;. A timer on a phone says: &lt;em&gt;here is a game&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;So one evening I sat down with him and we made a deal: I'll build a thing that turns your homework into a quiz game, and you tell me what makes it fun.&lt;/p&gt;

&lt;p&gt;That deal is what eventually became &lt;a href="https://quizzy.earth" rel="noopener noreferrer"&gt;quizzy.earth&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What an 8-year-old taught me about UX
&lt;/h2&gt;

&lt;p&gt;Here is the thing nobody tells you about designing for kids: &lt;strong&gt;they have zero patience for your onboarding flow.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I tried existing tools first. They all had the same shape:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Sign up&lt;/li&gt;
&lt;li&gt;Verify your email&lt;/li&gt;
&lt;li&gt;Create an account name&lt;/li&gt;
&lt;li&gt;Click through a tutorial&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Now&lt;/em&gt; you can make a question&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By step 2 my son had wandered off to find his ipad.&lt;/p&gt;

&lt;p&gt;He wasn't being difficult. He was telling me something true that adults have learned to tolerate: most software treats &lt;em&gt;the act of starting&lt;/em&gt; as a tax you pay before the fun begins. For a kid, there is no "before the fun begins." There is just fun, or there isn't.&lt;/p&gt;

&lt;p&gt;So the first rule wrote itself: &lt;strong&gt;no sign ups.&lt;/strong&gt; Open the page, type a question, press play. If a Year 3 kid can't make a quiz in under a minute, the product has failed.&lt;/p&gt;

&lt;p&gt;The second rule came from watching him try to type. He could read fluently, but typing a multiple-choice question with four options and marking the right one is a lot of fiddly UI. Every dropdown, every modal, every "are you sure?" was a place he would stall. So we ripped them all out. One screen. One question at a time. Big buttons. The kind of UI where you don't have to read the labels to know what to press.&lt;/p&gt;

&lt;p&gt;The third rule was the hardest, and I didn't see it until later.&lt;/p&gt;

&lt;h2&gt;
  
  
  "Can we play the toy quiz again?"
&lt;/h2&gt;

&lt;p&gt;Once the prototype worked for homework, something unexpected happened.&lt;/p&gt;

&lt;p&gt;We had family over for dinner. My son — who two weeks earlier hated structured anything — opened the laptop and announced he was going to host a quiz about his soft toys. He'd made it that afternoon. Without telling me.&lt;/p&gt;

&lt;p&gt;The first question was &lt;em&gt;"What is the name of the brown and white teddy?"&lt;/em&gt; — and four adults around a dinner table started arguing about a teddy bear's name like it was trivia night at the pub.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9f1bnisa06qpt4lrwsqd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9f1bnisa06qpt4lrwsqd.png" alt="The brown and white teddy question, as it appeared on screen during the dinner table quiz" width="800" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That was the moment I realised the thing I'd built wasn't a homework tool. It was a tool for &lt;strong&gt;shared attention&lt;/strong&gt;. Homework was just the excuse.&lt;/p&gt;

&lt;p&gt;The problem it actually solved had nothing to do with NAPLAN. It was: &lt;em&gt;how do you get a group of people — kids and adults, different ages, different attention spans — to look at the same thing and laugh together for ten minutes?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Most "family games" require somebody to read instructions out loud, deal cards, keep score, and referee disputes. By the time you've set it up, the four-year-old has lost interest. A quiz on a screen, hosted by a kid, sidesteps all of that. The kid is in charge. The adults are players. The screen does the scoring. The friction is gone.&lt;/p&gt;

&lt;h2&gt;
  
  
  The grandparents problem
&lt;/h2&gt;

&lt;p&gt;The next wedge came from a phone call.&lt;/p&gt;

&lt;p&gt;My parents — the grandparents — had been hearing about the dinner quizzes. They wanted to play. But they live overseas, and the "everyone in the same room" format obviously doesn't work over a video call with lag and three time zones.&lt;/p&gt;

&lt;p&gt;What they wanted was something different: &lt;strong&gt;a quiz they could play alone, at their own pace, when they had a quiet moment.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This was a real shift. The original product was synchronous — one host, many players, one room. What they were asking for was asynchronous — make a quiz, send a link, the other person plays whenever, you see how they did later.&lt;/p&gt;

&lt;p&gt;And the delivery channel wasn't an app. It wasn't email. It was WhatsApp. Because that's where the family already was.&lt;/p&gt;

&lt;p&gt;This is the part I keep coming back to when I think about building things: &lt;strong&gt;users don't show up where you want them to show up.&lt;/strong&gt; You go to them. The grandparents weren't going to download an app, create an account, or learn a new interface. They were going to tap a link in WhatsApp and play. If you can't meet them there, you don't have a product for them.&lt;/p&gt;

&lt;p&gt;So we built that mode too. Same engine, different shape: make a quiz, get a shareable link, send it through whichever group chat your family lives in, and the recipient plays solo. The host gets to see the results. No accounts. No friction.&lt;/p&gt;

&lt;h2&gt;
  
  
  The thread
&lt;/h2&gt;

&lt;p&gt;If I zoom out, every version of the product has been solving the same underlying problem in different clothes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Homework:&lt;/strong&gt; how do I get a kid to engage with content that feels like work?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dinner table:&lt;/strong&gt; how do I get a mixed-age group to share attention for ten minutes?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grandparents over WhatsApp:&lt;/strong&gt; how do I share a small moment of play with someone who isn't in the room?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The answer in all three cases turned out to be the same: &lt;strong&gt;strip the friction until the activity itself is the only thing left.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;No accounts. No tutorials. No app store. No "set up your profile." Just: here is a question, here are the answers, press the one you think is right.&lt;/p&gt;

&lt;p&gt;It sounds obvious written down. It was not obvious while I was building it. Every time I added a feature, my son would find a way to get stuck on it, and I'd take it back out. He was, without knowing it, the most ruthless product reviewer I've ever worked with.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd tell someone starting a side project
&lt;/h2&gt;

&lt;p&gt;Three things, in order of how badly I wish I'd known them earlier:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Find a user who can't be polite to you.&lt;/strong&gt; Adults will tell you your product is "interesting" and never open it again. An eight-year-old will tell you it's boring and walk away mid-sentence. The second kind of feedback is worth ten times more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The problem you start with is not the problem you end up solving.&lt;/strong&gt; I started with homework. I ended up with a thing my parents use to send their grandkids quizzes from the other side of the world. The interesting product was hiding inside the obvious one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Friction is the feature.&lt;/strong&gt; Or rather, the &lt;em&gt;absence&lt;/em&gt; of it is. Every screen you remove, every account step you delete, every "are you sure?" you cut — those aren't simplifications. Those are the product.&lt;/p&gt;




&lt;p&gt;If you want to try it, it's at &lt;strong&gt;&lt;a href="https://quizzy.earth" rel="noopener noreferrer"&gt;quizzy.earth&lt;/a&gt;&lt;/strong&gt;. No sign up. Make a quiz in a minute. Send it to whoever you want to laugh with.&lt;/p&gt;

&lt;p&gt;And if you have a kid in Year 3 staring down a stack of worksheets — open it, hand them the keyboard, and see what they make. They'll surprise you.&lt;/p&gt;

</description>
      <category>sideprojects</category>
      <category>webdev</category>
      <category>ux</category>
      <category>react</category>
    </item>
  </channel>
</rss>
