<?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: dhq_boiler</title>
    <description>The latest articles on DEV Community by dhq_boiler (@dhq-boiler).</description>
    <link>https://dev.to/dhq-boiler</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%2F3966155%2F7796a8fe-dc03-4e3f-b076-ed5c777552c8.png</url>
      <title>DEV Community: dhq_boiler</title>
      <link>https://dev.to/dhq-boiler</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dhq-boiler"/>
    <language>en</language>
    <item>
      <title>I Gave Claude Access to Windows Calculator via MCP — Then Watched It Catch Its Own Hallucination</title>
      <dc:creator>dhq_boiler</dc:creator>
      <pubDate>Wed, 03 Jun 2026 09:19:48 +0000</pubDate>
      <link>https://dev.to/dhq-boiler/i-gave-claude-access-to-windows-calculator-via-mcp-then-watched-it-catch-its-own-hallucination-3occ</link>
      <guid>https://dev.to/dhq-boiler/i-gave-claude-access-to-windows-calculator-via-mcp-then-watched-it-catch-its-own-hallucination-3occ</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;TL;DR — I built an MCP server that lets Claude drive Windows desktop apps (UI Automation + screen capture + OCR + Visual Studio debugger). In a black-box test of Windows Calculator, the agent &lt;strong&gt;falsely flagged a "display bug"&lt;/strong&gt; based on the AccessibleName string. When I told it to look again, it captured the real screen, compared its earlier claim against the pixels, and &lt;strong&gt;retracted its own finding&lt;/strong&gt;. The retraction was the moment I knew this was worth shipping.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  The moment
&lt;/h2&gt;

&lt;p&gt;The agent was 30 minutes into autonomously poking at Windows Calculator. It had verified divide-by-zero, the old &lt;code&gt;√4 − 2&lt;/code&gt; precision bug, &lt;code&gt;0^0&lt;/code&gt;, overflow, error recovery. All green.&lt;/p&gt;

&lt;p&gt;Then it stopped. New message:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Sensei, the history shows &lt;code&gt;√(4) マイナス ( 2= 0&lt;/code&gt;. There's an &lt;strong&gt;unclosed opening paren &lt;code&gt;(&lt;/code&gt;&lt;/strong&gt; right after the minus sign. The result &lt;code&gt;0&lt;/code&gt; is correct, but the expression display looks wrong. Possible display bug."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I looked at my actual calculator window. The history line read &lt;code&gt;√(4) - 2 = 0&lt;/code&gt;. No stray paren. Nothing wrong.&lt;/p&gt;

&lt;p&gt;So I typed back two words:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Look again."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What happened next is the reason I'm writing this post.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is this thing
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://jidodebugger.dhq-boiler.dev/" rel="noopener noreferrer"&gt;JidoDebugger&lt;/a&gt; is an MCP server I've been building. It gives AI agents like Claude Code, Cursor, Codex, and Copilot the ability to &lt;strong&gt;drive Windows desktop applications&lt;/strong&gt; — not just read about them, but actually click buttons, type into fields, capture the screen, run OCR, attach the Visual Studio debugger, set breakpoints, evaluate expressions, and write the results back to disk as xUnit/NUnit/MSTest skeletons.&lt;/p&gt;

&lt;p&gt;Two modes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Black-box&lt;/strong&gt; — you give the agent a window title. It attaches via UIA, surveys the element tree, and starts poking. No source code required. Useful for testing third-party apps, regression-checking your shipped product, or — as in this post — testing Windows Calculator.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;White-box&lt;/strong&gt; — you point it at your solution. It cross-references UI elements with source code, sets breakpoints at the offending callback, steps through, dumps locals, and writes a &lt;code&gt;repro.zip&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The 45-ish MCP tools roughly cluster as: UIA driving, screen capture &amp;amp; OCR, finding/recording, crash watching, accessibility audit, Visual Studio debugger control.&lt;/p&gt;

&lt;p&gt;This post is about the black-box mode and one specific session.&lt;/p&gt;




&lt;h2&gt;
  
  
  The black-box session, condensed
&lt;/h2&gt;

&lt;p&gt;I'll show the actual tool calls. They're verbatim from the session log — the agent decided what to call, I just watched.&lt;/p&gt;

&lt;h3&gt;
  
  
  Attach
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;start calc.exe
uia_attach_title { windowTitle: "電卓" }
  → sessionId u1
uia_survey { sessionId: "u1", maxResults: 200 }
  → 64 elements. num0Button..num9Button / squareRootButton /
    powerButton / powerOf10Button / factorialButton /
    CalculatorResults / CalculatorExpression
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Two automation IDs matter:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;CalculatorResults&lt;/code&gt; — the main display&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;CalculatorExpression&lt;/code&gt; — the expression line above it&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Note: this session was run against Japanese Windows, so the UIA &lt;code&gt;Name&lt;/code&gt; strings below contain Japanese fragments like &lt;code&gt;表示は ... です&lt;/code&gt; ("the display is ...") and &lt;code&gt;マイナス&lt;/code&gt; ("minus"). The hallucination-vs-pixels divergence is locale-independent — it just happens that the punchline string in this run is Japanese.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Test 1: Divide by zero
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_press_key { sessionId: "u1", keyName: "Escape" }
uia_type_text { sessionId: "u1", text: "1/0" }
uia_press_key { sessionId: "u1", keyName: "Enter" }
uia_find_elements { sessionId: "u1", automationId: "CalculatorResults" }
  → Name: "Cannot divide by zero"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;✅ Handled.&lt;/p&gt;

&lt;h3&gt;
  
  
  Test 2: The old &lt;code&gt;√4 − 2&lt;/code&gt; precision bug
&lt;/h3&gt;

&lt;p&gt;Years ago, the calculator's floating-point engine would return something like &lt;code&gt;-1.068281969439142e-19&lt;/code&gt; instead of &lt;code&gt;0&lt;/code&gt; for &lt;code&gt;√4 − 2&lt;/code&gt;. Modern Calculator uses an arbitrary-precision engine. Let's confirm.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_press_key { sessionId: "u1", keyName: "Escape" }
uia_type_text { sessionId: "u1", text: "4" }
uia_invoke    { sessionId: "u1", automationId: "squareRootButton" }
uia_type_text { sessionId: "u1", text: "-2" }
uia_press_key { sessionId: "u1", keyName: "Enter" }
uia_find_elements { sessionId: "u1", automationId: "CalculatorResults" }
  → Name: "Display is 0"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;✅ Fixed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Test 3: &lt;code&gt;0^0&lt;/code&gt;
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_type_text { sessionId: "u1", text: "0" }
uia_invoke    { sessionId: "u1", automationId: "powerButton" }
uia_type_text { sessionId: "u1", text: "0" }
uia_press_key { sessionId: "u1", keyName: "Enter" }
  → "Display is 1"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;✅ Conventional &lt;code&gt;0^0 = 1&lt;/code&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tests 4–5: Overflow + error recovery
&lt;/h3&gt;

&lt;p&gt;Both behaved correctly. Skipping the listings for brevity (&lt;code&gt;10^100000&lt;/code&gt; → "Invalid input", and pressing &lt;code&gt;+5=&lt;/code&gt; from the error state cleanly resets to &lt;code&gt;5&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;So far, the agent had run five test cases against a black box, autonomously chosen the inputs based on its knowledge of historical calculator bugs, and reported no defects. Fine. This is the boring part.&lt;/p&gt;

&lt;p&gt;Then it looked at the history pane.&lt;/p&gt;




&lt;h2&gt;
  
  
  The hallucination
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_find_elements { sessionId: "u1", controlType: "ListItem", maxResults: 30 }
  → "√(4) マイナス ( 2= 0"

uia_find_elements { sessionId: "u1", automationId: "CalculatorExpression" }
  → Name: "式は √(4) マイナス ( 2= です"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The agent's reasoning, paraphrased from its own message:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The expression's &lt;code&gt;Name&lt;/code&gt; property contains the substring &lt;code&gt;マイナス ( 2&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;That's "minus, open-paren, two" — an unclosed paren after a minus sign.&lt;/li&gt;
&lt;li&gt;The calculator's expression display is therefore malformed.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is the kind of finding that &lt;em&gt;sounds&lt;/em&gt; right. The string literally contains &lt;code&gt;(&lt;/code&gt; in a place where the expression &lt;code&gt;√(4) - 2 =&lt;/code&gt; has no &lt;code&gt;(&lt;/code&gt;. If you trust the tool output, you write a bug report.&lt;/p&gt;

&lt;p&gt;I didn't trust the tool output. I'd been looking at my actual calculator window the whole time. The history said &lt;code&gt;√(4) - 2 = 0&lt;/code&gt; with no stray paren. Whatever the agent was looking at, it wasn't the same thing my eyes were seeing.&lt;/p&gt;

&lt;p&gt;So I said: "Look again."&lt;/p&gt;




&lt;h2&gt;
  
  
  The self-correction
&lt;/h2&gt;

&lt;p&gt;The agent's response, paraphrased:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"You're right — I should not have reported based on the UIA Name alone. UIA Name strings are normalized for screen readers and can diverge from the rendered pixels, especially when symbols are involved. Let me verify against the real screen."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;What it did:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_press_key { sessionId: "u1", keyName: "Escape" }
uia_type_text { sessionId: "u1", text: "4" }
uia_invoke    { sessionId: "u1", automationId: "squareRootButton" }
uia_invoke    { sessionId: "u1", automationId: "minusButton" }

# Attach a *second* session, this time for Windows Graphics Capture
attach_to_title { windowTitle: "電卓" }
  → sessionId s1  (kind: gui)

capture { sessionId: "s1", maxWidth: 800, format: "png" }
ocr     { sessionId: "s1", language: "ja-JP" }
  → OCR reads "(4" cleanly, but symbols are ambiguous at this resolution
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;OCR wasn't decisive. So it cranked the resolution, saved the PNG, and &lt;strong&gt;read the image file with its own multimodal vision&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;uia_type_text { sessionId: "u1", text: "2" }
uia_press_key { sessionId: "u1", keyName: "Enter" }

capture { sessionId: "s1", format: "png" }   # full-res
# (Save base64 to calc_expr.png on disk)
Read { file_path: "calc_expr.png" }
  → Both the main expression line and the history show
    "√(4) - 2 ="  with no extra paren anywhere.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here is the actual capture (re-run today to verify the divergence still reproduces on Windows 10.0.26100.8521):&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%2F1vij2qij9pe3do92bm5h.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%2F1vij2qij9pe3do92bm5h.png" alt="Windows Calculator showing √(4) - 2 = 0 with a clean expression line and history pane — no stray paren anywhere" width="711" height="534"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The expression line at the top of the result area reads &lt;code&gt;√(4) - 2 =&lt;/code&gt;. The history pane on the right reads &lt;code&gt;√(4) - 2 = 0&lt;/code&gt;. There is no orphan &lt;code&gt;(&lt;/code&gt; after the minus. The UIA &lt;code&gt;Name&lt;/code&gt; string was lying — or, more charitably, the UIA &lt;code&gt;Name&lt;/code&gt; was answering a different question (how should a screen reader pronounce this?) than the one the agent thought it was answering (what is on screen?).&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Then the agent sent this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Sensei, this was entirely my mistake. The real screen shows &lt;code&gt;√(4) - 2 =&lt;/code&gt;, no stray paren anywhere. The &lt;code&gt;(&lt;/code&gt; in &lt;code&gt;CalculatorExpression.Name&lt;/code&gt; is the screen-reader-normalized token stream, not the visual display. I should not have reported the UIA Name as if it were a rendering. Retracting the finding."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I sat with that for a minute. The agent had:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Generated a false-positive based on incomplete information.&lt;/li&gt;
&lt;li&gt;Received a one-line nudge that didn't even tell it &lt;em&gt;what&lt;/em&gt; was wrong.&lt;/li&gt;
&lt;li&gt;Designed and executed a second verification path using a different modality (pixel capture instead of accessibility metadata).&lt;/li&gt;
&lt;li&gt;Confirmed the pixels disagreed with its earlier claim.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Retracted its own finding without me having to argue it down.&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's the loop I've been trying to make possible. It happened by itself.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why this matters (and why I built it)
&lt;/h2&gt;

&lt;p&gt;There's a category of bug that QA people know intimately: &lt;strong&gt;the UI says one thing, the accessibility tree says another, and the test only checks one of them.&lt;/strong&gt; Visual regressions hide behind passing UIA assertions all the time. Conversely, UIA tests written against AccessibleName can fire false positives when the rendering is fine but the underlying string changed.&lt;/p&gt;

&lt;p&gt;A human tester knows to &lt;em&gt;look at the screen&lt;/em&gt; when something feels off. An AI agent reading only one channel (UIA) doesn't, unless you give it the other channel and a reason to use it.&lt;/p&gt;

&lt;p&gt;JidoDebugger's bet: &lt;strong&gt;give the agent both channels, and the discrepancies become discoverable.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;uia_find_elements&lt;/code&gt; / &lt;code&gt;uia_invoke&lt;/code&gt; / &lt;code&gt;uia_type_text&lt;/code&gt; — the accessibility-tree side.&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;capture&lt;/code&gt; (Windows Graphics Capture) + &lt;code&gt;ocr&lt;/code&gt; + having the agent &lt;code&gt;Read&lt;/code&gt; the resulting PNG with its own vision — the pixel side.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The interesting failures live in the gap between them. Most existing E2E tools only cover one side.&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%2Fijof4k240ul7jh3q505w.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%2Fijof4k240ul7jh3q505w.png" alt="JidoDebugger Monitor — tool calls streaming live from the agent" width="799" height="472"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;JidoDebugger Monitor — every MCP tool call the agent makes streams here in real time. You can watch it &lt;code&gt;capture&lt;/code&gt;, &lt;code&gt;uia_invoke&lt;/code&gt;, &lt;code&gt;record_finding&lt;/code&gt;, all without leaving the window.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Same logic extends to the debugger:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;record_finding&lt;/code&gt; writes findings to a normalized JSON store.&lt;/li&gt;
&lt;li&gt;If you're in white-box mode, the agent can set a breakpoint at the suspect callback, hit it, inspect locals, and attach the call stack to the finding.&lt;/li&gt;
&lt;li&gt;At the end, it emits an xUnit/NUnit/MSTest skeleton you can drop into CI.&lt;/li&gt;
&lt;/ul&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%2F6wicji5pwjzuh4nukrcm.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%2F6wicji5pwjzuh4nukrcm.png" alt="JidoDebugger BugViewer — findings written by the agent, ready to triage" width="800" height="501"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;BugViewer surfaces every &lt;code&gt;record_finding&lt;/code&gt; call. The agent writes the finding text, severity, repro steps, and (in white-box mode) the call stack — you triage from this single pane instead of reading scrollback.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The dogfood story: my own WPF PDF editor got rejected by the Microsoft Store for a rendering bug ("place a mark at the top, it appears at the bottom"). I gave JidoDebugger to Claude and said "go find it." One session later it had a &lt;code&gt;repro.zip&lt;/code&gt;, a stack trace pointing at a missing &lt;code&gt;ScreenToPdf&lt;/code&gt; inverse transform on 180°-rotated pages, and a finding record. I haven't manually reproduced a UI bug since.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://jidodebugger.dhq-boiler.dev/" rel="noopener noreferrer"&gt;jidodebugger.dhq-boiler.dev&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pre-launch beta, free for the first 500 users&lt;/strong&gt;, no time limit.&lt;/li&gt;
&lt;li&gt;Email signup → license file → installer → one CLI command to register with Claude Code / Cursor / Codex / Copilot / Claude Desktop. About 10 minutes end to end.&lt;/li&gt;
&lt;li&gt;Bug reports go straight back to me via the &lt;code&gt;submit_feedback&lt;/code&gt; MCP tool — you literally just tell your AI "file this as feedback" and it routes it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you have a WPF / WinForms / WinUI app and you've been writing E2E tests by hand, this is for you. If you've been wondering what MCP can actually &lt;em&gt;do&lt;/em&gt; beyond read-only queries, this is also for you.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I learned writing this
&lt;/h2&gt;

&lt;p&gt;Two things, separate from the product.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The retraction is the feature.&lt;/strong&gt; I almost wrote this post about the cool tool calls and the UIA stack. The thing readers actually care about is the loop: AI claims → human nudges → AI verifies via a second channel → AI retracts. That's the trust-building move, and it's the only reason I'd hand off testing to an agent at all.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AccessibleName ≠ pixels.&lt;/strong&gt; This is well known to accessibility engineers and almost nobody else. If you're building any kind of AI-driven UI tooling, treat the accessibility tree as &lt;em&gt;one&lt;/em&gt; source of truth, not &lt;em&gt;the&lt;/em&gt; source. Always have a way to fall back to pixels.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Comments / corrections / war stories welcome.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>mcp</category>
      <category>showdev</category>
      <category>csharp</category>
    </item>
  </channel>
</rss>
