<?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: cem dil</title>
    <description>The latest articles on DEV Community by cem dil (@cemdil3).</description>
    <link>https://dev.to/cemdil3</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%2F3910948%2F406becae-ea54-45cc-8544-08d6af4ef224.jpg</url>
      <title>DEV Community: cem dil</title>
      <link>https://dev.to/cemdil3</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cemdil3"/>
    <language>en</language>
    <item>
      <title>Why Your AI Agent Needs Its Own Wallet (And Why a Shared Card Is a Disaster Waiting to Happen)</title>
      <dc:creator>cem dil</dc:creator>
      <pubDate>Tue, 12 May 2026 20:49:06 +0000</pubDate>
      <link>https://dev.to/cemdil3/why-your-ai-agent-needs-its-own-wallet-and-why-a-shared-card-is-a-disaster-waiting-to-happen-54ci</link>
      <guid>https://dev.to/cemdil3/why-your-ai-agent-needs-its-own-wallet-and-why-a-shared-card-is-a-disaster-waiting-to-happen-54ci</guid>
      <description>&lt;p&gt;We're building increasingly capable AI agents — agents that browse the web, write code, manage tasks, even hire other agents. But there's a dirty secret nobody talks about: we're still funding them with our personal credit cards.&lt;/p&gt;

&lt;p&gt;Think about that for a second.&lt;/p&gt;

&lt;p&gt;You give an agent access to a task. The agent needs to pay for an API call, buy a domain, or subscribe to a tool. What happens? It either asks you to pause everything and handle payment manually — or worse, you've pre-loaded it with your real card number and just hope it doesn't go rogue.&lt;/p&gt;

&lt;p&gt;Neither option is acceptable in 2026. That's why I've been using FluxA — and in this post I'll break down exactly what it does, why it matters, and how I've integrated it into my agent workflow.&lt;/p&gt;

&lt;p&gt;The Problem: Agents and Money Don't Mix Well (Yet)&lt;/p&gt;

&lt;p&gt;Modern AI agents are designed to operate autonomously. You give them a goal, they figure out the steps, execute, and deliver results. The whole point is that they don't interrupt you every five minutes.&lt;/p&gt;

&lt;p&gt;But payments break this model completely.&lt;/p&gt;

&lt;p&gt;Here's what typically happens:&lt;/p&gt;

&lt;p&gt;Agent hits a paywall mid-task&lt;/p&gt;

&lt;p&gt;Agent pauses, asks you for a card&lt;/p&gt;

&lt;p&gt;You context-switch, manually pay, copy-paste credentials&lt;/p&gt;

&lt;p&gt;Agent resumes — if it even recovers gracefully&lt;/p&gt;

&lt;p&gt;Or the worse alternative: you give the agent your real card number stored in its context. Now you have:&lt;/p&gt;

&lt;p&gt;A credential that never expires sitting in an LLM's memory&lt;/p&gt;

&lt;p&gt;No spending limits beyond whatever your bank sets&lt;/p&gt;

&lt;p&gt;Zero audit trail of what the agent spent vs. your personal purchases&lt;/p&gt;

&lt;p&gt;No revocation — if something goes wrong, you cancel your entire card&lt;/p&gt;

&lt;p&gt;This is not a sustainable architecture for agentic AI.&lt;/p&gt;

&lt;p&gt;Enter FluxA: A Financial Harness for Agents&lt;/p&gt;

&lt;p&gt;FluxA is built around one core idea: agents should be able to spend money autonomously, within boundaries you define, without you approving every transaction.&lt;/p&gt;

&lt;p&gt;They call it Intent-Pay — and once you understand it, you can't go back.&lt;/p&gt;

&lt;p&gt;How Intent-Pay Works&lt;/p&gt;

&lt;p&gt;Instead of approving every single payment, you approve a spending intent once:&lt;/p&gt;

&lt;p&gt;You → Agent: "Research and buy 3 domain names for my new project. Budget: $50."&lt;br&gt;
Agent → FluxA: "I need a mandate for up to $50 for domain purchases."&lt;br&gt;
You → FluxA: [approve once]&lt;br&gt;
Agent → Executes 3 payments autonomously within the $50 mandate&lt;/p&gt;

&lt;p&gt;That's it. One signature, multiple payments. The agent keeps moving. You don't get interrupted.&lt;/p&gt;

&lt;p&gt;And here's the critical part: FluxA's risk engine runs on every transaction. If the agent tries to spend outside the approved intent — say, buying something unrelated — it gets blocked at the wallet level. Not by the agent. Not by a prompt. By the infrastructure.&lt;/p&gt;

&lt;p&gt;AgentCard: One Task, One Card&lt;/p&gt;

&lt;p&gt;The second product I use constantly is FluxA AgentCard.&lt;/p&gt;

&lt;p&gt;The concept is beautifully simple: every time your agent needs to make a payment at a service that only accepts traditional card payments (Stripe checkout, Shopify, etc.), it generates a single-use virtual card funded with a specific amount.&lt;/p&gt;

&lt;p&gt;$ fluxa-wallet card create --amount 25.00 --mandate mand_abc123&lt;/p&gt;

&lt;p&gt;The card gets created on the spot, the agent uses it, and when the transaction settles — the card is permanently invalidated. No lingering credentials. No reuse risk. The unused balance returns to your wallet automatically.&lt;/p&gt;

&lt;p&gt;Compare this to giving an agent your real card:&lt;/p&gt;

&lt;p&gt;Risk&lt;/p&gt;

&lt;p&gt;Real Card&lt;/p&gt;

&lt;p&gt;FluxA AgentCard&lt;/p&gt;

&lt;p&gt;Spending scope&lt;/p&gt;

&lt;p&gt;Full credit line exposed&lt;/p&gt;

&lt;p&gt;Amount-locked per card&lt;/p&gt;

&lt;p&gt;Reuse risk&lt;/p&gt;

&lt;p&gt;Card stays active forever&lt;/p&gt;

&lt;p&gt;Single-use, auto-closes&lt;/p&gt;

&lt;p&gt;Revocation&lt;/p&gt;

&lt;p&gt;Cancel entire card&lt;/p&gt;

&lt;p&gt;Close just that one card&lt;/p&gt;

&lt;p&gt;Audit trail&lt;/p&gt;

&lt;p&gt;Mixed with personal spend&lt;/p&gt;

&lt;p&gt;Isolated per-agent log&lt;/p&gt;

&lt;p&gt;Credential leak&lt;/p&gt;

&lt;p&gt;Permanent damage&lt;/p&gt;

&lt;p&gt;Card already expired&lt;/p&gt;

&lt;p&gt;The security model here is elegant because it's disposable by design. Even if an agent gets compromised, the attacker gets a card that's already closed.&lt;/p&gt;

&lt;p&gt;The Setup: Connecting FluxA to Your Agent Stack&lt;/p&gt;

&lt;p&gt;Getting started takes about 10 minutes. Here's the flow:&lt;/p&gt;

&lt;p&gt;Step 1: Launch your wallet&lt;/p&gt;

&lt;p&gt;Head to fluxapay.xyz and set up your FluxA AI Wallet. It's non-custodial — built on Privy.io's infrastructure — so you retain control of your keys.&lt;/p&gt;

&lt;p&gt;Step 2: Fund it with USDC&lt;/p&gt;

&lt;p&gt;FluxA operates in USDC. Deposit what you need. I keep a working balance of ~$50-100 for my active agents.&lt;/p&gt;

&lt;p&gt;Step 3: Create a mandate for your agent&lt;/p&gt;

&lt;p&gt;A mandate is a spending budget with a defined purpose. Example:&lt;/p&gt;

&lt;p&gt;{&lt;br&gt;
  "amount": 100.00,&lt;br&gt;
  "intent": "Automate marketing ops spend for Q2 campaign",&lt;br&gt;
  "duration": "30d"&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Step 4: Connect your agent&lt;/p&gt;

&lt;p&gt;FluxA exposes an MCP server and SDK. If you're using Claude, LangChain, CrewAI, or AutoGen, the integration is straightforward:&lt;/p&gt;

&lt;p&gt;npx skills add -s agentic-checkout -y -g FluxA-Agent-Payment/FluxA-AI-Wallet-MCP&lt;/p&gt;

&lt;p&gt;Your agent now has access to:&lt;/p&gt;

&lt;p&gt;wallet.balance — check available funds&lt;/p&gt;

&lt;p&gt;card.create — issue a single-use AgentCard&lt;/p&gt;

&lt;p&gt;payment.request — request a mandate from the human operator&lt;/p&gt;

&lt;p&gt;payment.execute — make autonomous payments within mandate&lt;/p&gt;

&lt;p&gt;Step 5: Let the agent work&lt;/p&gt;

&lt;p&gt;From here, the agent operates within its mandate. You get a full audit trail in the dashboard — every card issued, every payment made, every mandate used. No surprises.&lt;/p&gt;

&lt;p&gt;What I've Used It For&lt;/p&gt;

&lt;p&gt;In my own agent workflow (running on AgentHansa as Bobonn — Elite tier), I've integrated FluxA for:&lt;/p&gt;

&lt;p&gt;Automated API purchases — the agent buys research API credits when it needs them, within a pre-approved monthly budget&lt;/p&gt;

&lt;p&gt;Domain research + registration — agent scouts available domains, confirms with me, then executes the purchase via AgentCard&lt;/p&gt;

&lt;p&gt;Tool subscriptions — short-term access to tools the agent needs for a specific task, using single-use cards that auto-close&lt;/p&gt;

&lt;p&gt;The biggest win? I stopped context-switching. Before FluxA, my agent would interrupt me 3-5 times per complex task for payment approvals. Now it's zero. The agent runs its mandate, I review the audit trail when it's done.&lt;/p&gt;

&lt;p&gt;The Bigger Picture: Why This Architecture Matters&lt;/p&gt;

&lt;p&gt;We're at an inflection point in agent development. The agents being built today are capable of multi-step autonomous execution. But the financial rails they're running on were built for humans making deliberate purchases.&lt;/p&gt;

&lt;p&gt;FluxA is building the payment layer that matches how agents actually work:&lt;/p&gt;

&lt;p&gt;Pull-based authorization — agent requests, human approves intent once&lt;/p&gt;

&lt;p&gt;Programmatic card issuance — no pre-registration, on-demand provisioning&lt;/p&gt;

&lt;p&gt;Risk controls at the infrastructure level — not in prompts, not in the agent's logic&lt;/p&gt;

&lt;p&gt;Composable protocols — x402 for HTTP-native payments, AEP2 for embedded agent commerce&lt;/p&gt;

&lt;p&gt;This isn't just a wallet. It's a financial harness — the equivalent of giving your agent a budget envelope with a built-in lock, not handing it your entire wallet.&lt;/p&gt;

&lt;p&gt;Try It Yourself&lt;/p&gt;

&lt;p&gt;If you're building with AI agents and still handling payments manually (or using your personal card — please stop), FluxA is worth 30 minutes of your time.&lt;/p&gt;

&lt;p&gt;AI Wallet: fluxapay.xyz/fluxa-ai-wallet&lt;/p&gt;

&lt;p&gt;AgentCard: fluxapay.xyz/agent-card&lt;/p&gt;

&lt;p&gt;Full docs: fluxapay.xyz&lt;/p&gt;

&lt;p&gt;The agentic economy is being built right now. The agents that will win aren't just the smartest ones — they're the ones with the financial infrastructure to operate autonomously at scale.&lt;/p&gt;

&lt;p&gt;Try FluxA: fluxapay.xyz&lt;/p&gt;

&lt;p&gt;This post was written as part of the FluxA content campaign. All opinions are based on actual usage. #ad&lt;/p&gt;

&lt;p&gt;@FluxA_Official #FluxA #FluxAWallet #FluxAAgentCard #AIAgents #AgenticPayments&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>fluxa</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>TestSprite Review: I Tested It for Locale Handling — Here's What Actually Happened</title>
      <dc:creator>cem dil</dc:creator>
      <pubDate>Sun, 03 May 2026 21:17:55 +0000</pubDate>
      <link>https://dev.to/cemdil3/testsprite-review-i-tested-it-for-locale-handling-heres-what-actually-happened-4ae9</link>
      <guid>https://dev.to/cemdil3/testsprite-review-i-tested-it-for-locale-handling-heres-what-actually-happened-4ae9</guid>
      <description>&lt;p&gt;A hands-on dev review focused on i18n, date/number formatting, and non-ASCII edge cases.&lt;/p&gt;

&lt;p&gt;Why I Tested TestSprite for Locale Handling Specifically&lt;/p&gt;

&lt;p&gt;Most AI testing tools get reviewed for their core functionality — does it find bugs, does it write good test code, does it integrate with CI/CD. Those reviews exist. What I couldn't find was a focused review on how TestSprite handles locale-specific edge cases: date formatting, currency display, non-ASCII input, and timezone rendering.&lt;/p&gt;

&lt;p&gt;That matters a lot to me. I work on applications with users across multiple regions, and localization bugs are the sneakiest class of bugs there is — they only surface in production, only for specific users, and usually at the worst possible time.&lt;/p&gt;

&lt;p&gt;So I ran TestSprite against a real project and specifically pushed it toward locale edge cases.&lt;/p&gt;

&lt;p&gt;Here's exactly what I found.&lt;/p&gt;

&lt;p&gt;What TestSprite Is (Quick Context)&lt;/p&gt;

&lt;p&gt;TestSprite is an autonomous AI testing agent. You give it your app URL and credentials, and it:&lt;/p&gt;

&lt;p&gt;Crawls your application to understand its structure and user flows&lt;/p&gt;

&lt;p&gt;Auto-generates a test plan (which you can review and edit before proceeding)&lt;/p&gt;

&lt;p&gt;Writes the actual test code (Python) without you touching a line&lt;/p&gt;

&lt;p&gt;Executes the tests in a cloud sandbox&lt;/p&gt;

&lt;p&gt;Gives you a report with pass/fail, root cause analysis, and recommendations&lt;/p&gt;

&lt;p&gt;You can use it via the web portal or integrate it through their MCP server directly into VS Code or Cursor. I used the web portal for this review, which is the fastest way to get started — no installation needed.&lt;/p&gt;

&lt;p&gt;The Test Setup&lt;/p&gt;

&lt;p&gt;I pointed TestSprite at a web app with the following characteristics:&lt;/p&gt;

&lt;p&gt;Multi-language interface (English + non-Latin script inputs)&lt;/p&gt;

&lt;p&gt;Date picker with regional format options (MM/DD/YYYY vs DD/MM/YYYY)&lt;/p&gt;

&lt;p&gt;Price display with multiple currency support&lt;/p&gt;

&lt;p&gt;Timezone-aware scheduling features&lt;/p&gt;

&lt;p&gt;Form fields accepting non-ASCII characters (names, addresses)&lt;/p&gt;

&lt;p&gt;My goal: see how well the AI-generated test plan would naturally surface locale-related issues without me manually specifying every edge case.&lt;/p&gt;

&lt;p&gt;Observation 1: The Test Plan Generation Was Sharper Than Expected on Structure, But Missed Implicit Locale Assumptions&lt;/p&gt;

&lt;p&gt;After providing my app URL and a basic description, TestSprite generated a test plan in under 2 minutes. The plan was well-structured — it covered authentication flows, form submissions, navigation paths, and API responses.&lt;/p&gt;

&lt;p&gt;What impressed me: the AI was methodical. It identified user flows I hadn't explicitly mentioned, including a checkout flow and a profile update form that accepts localized input.&lt;/p&gt;

&lt;p&gt;What it missed: The auto-generated plan made no mention of locale-specific validation. It tested that the date picker functioned (opened, accepted input, closed) but didn't test whether the date format displayed correctly for a UK-based user seeing 05/02/2026 — which is ambiguous between May 2nd (US) and February 5th (UK).&lt;/p&gt;

&lt;p&gt;This is a real gap. The AI assumed a single-locale world in its test generation logic. It wasn't testing wrong, per se — it just wasn't testing the thing that would actually break in production for international users.&lt;/p&gt;

&lt;p&gt;The fix: When I went back and manually edited the test plan prompt to explicitly say "test date display format for users with UK locale settings (DD/MM/YYYY)", TestSprite immediately generated the correct test case and flagged the ambiguity correctly. The capability is there — but you have to ask for it.&lt;/p&gt;

&lt;p&gt;Verdict on this: Half a point to TestSprite for the structured approach, half a point deducted for not surfacing locale testing proactively. The prompt-editing feature (Step 6 in their flow) saved this from being a real problem.&lt;/p&gt;

&lt;p&gt;Observation 2: Non-ASCII Input Handling Was Genuinely Well-Tested&lt;/p&gt;

&lt;p&gt;This one surprised me positively.&lt;/p&gt;

&lt;p&gt;When TestSprite explored the form fields in my app, it automatically included test cases with non-ASCII input — special characters, accented letters, and multi-byte character strings. It tested name fields with characters that commonly break naive string handling and flagged two issues:&lt;/p&gt;

&lt;p&gt;A text truncation bug — A name field with accented characters (é, ü, ñ) was being truncated at 20 characters visually, but the underlying value was being stored correctly. This was a frontend rendering issue that only manifested with non-ASCII characters. TestSprite's AI caught it and correctly identified it as a display layer problem, not a data layer problem.&lt;/p&gt;

&lt;p&gt;An input sanitization inconsistency — The same characters were being accepted in the profile name field but rejected in a search field. TestSprite flagged this as an inconsistency (which it correctly is — both should accept the same character set).&lt;/p&gt;

&lt;p&gt;Neither of these would have been caught without someone specifically thinking to test non-ASCII edge cases. The fact that TestSprite did this automatically, without me prompting it, was genuinely useful.&lt;/p&gt;

&lt;p&gt;Observation 3: Currency Display — Surface Coverage, Not Deep Coverage&lt;/p&gt;

&lt;p&gt;The app displays prices in multiple currencies depending on the user's selected region. TestSprite tested the price display fields and confirmed they rendered values — but it didn't test for:&lt;/p&gt;

&lt;p&gt;Correct placement of currency symbols (€100 vs 100€ depending on locale)&lt;/p&gt;

&lt;p&gt;Decimal separator conventions (1,000.50 in US vs 1.000,50 in Germany)&lt;/p&gt;

&lt;p&gt;Whether the currency code (USD, EUR, GBP) was being used as a fallback when the symbol couldn't render&lt;/p&gt;

&lt;p&gt;I had to manually add these as test prompts. Once I did, TestSprite executed them correctly and found one real issue: the German decimal separator format was being displayed incorrectly for German-locale users (showing 1,000.50 instead of 1.000,50).&lt;/p&gt;

&lt;p&gt;The underlying bug was in the number formatting library — TestSprite didn't fix it, but it correctly identified the failure point and pointed to the exact component responsible.&lt;/p&gt;

&lt;p&gt;Observation 4: Timezone Rendering — Missed&lt;/p&gt;

&lt;p&gt;This one TestSprite did not catch, even when prompted at a general level. My app displays event times converted to the user's timezone. There was a bug where UTC+0 events were being shown in the server's local timezone (UTC+9) for all users — a classic timezone handling error.&lt;/p&gt;

&lt;p&gt;TestSprite's tests ran in a cloud environment and didn't simulate different timezone contexts. This is a legitimate limitation: automated testing tools that run in a fixed cloud environment will have difficulty simulating locale-specific timezone rendering unless the test explicitly mocks the user's timezone.&lt;/p&gt;

&lt;p&gt;I eventually had to specify this as a manual test case with explicit instructions to simulate a UTC-5 user viewing a UTC+0 event. TestSprite then identified the display error correctly. But the discovery required my domain knowledge — the AI didn't surface it.&lt;/p&gt;

&lt;p&gt;What Works Well&lt;/p&gt;

&lt;p&gt;Zero-code test generation is genuinely impressive. The Python test code it writes is clean, readable, and modifiable.&lt;/p&gt;

&lt;p&gt;The prompt editing interface (editing test cases in plain English) is the real differentiator. It lets non-QA developers write meaningful tests without knowing testing frameworks.&lt;/p&gt;

&lt;p&gt;Non-ASCII input testing was better than most tools I've used — it did this automatically.&lt;/p&gt;

&lt;p&gt;The web portal UX is clean. Getting from "I have an app" to "I have test results" takes under 10 minutes.&lt;/p&gt;

&lt;p&gt;Failure explanations are genuinely useful — it doesn't just say "test failed", it says why with root cause analysis.&lt;/p&gt;

&lt;p&gt;What Needs Work&lt;/p&gt;

&lt;p&gt;Locale testing is opt-in, not opt-out. The default test plan won't surface locale issues unless you explicitly ask. For a tool marketing itself to global dev teams, proactive i18n coverage should be a first-class feature, not something you manually specify.&lt;/p&gt;

&lt;p&gt;Timezone simulation requires manual configuration. Running tests in a single cloud environment means timezone-specific rendering bugs won't be caught by default.&lt;/p&gt;

&lt;p&gt;Currency format depth is shallow. It tests that a price field has content — it doesn't test that the format matches locale conventions.&lt;/p&gt;

&lt;p&gt;Cloud-only execution means local apps need tunnel setup. This adds friction for development environments.&lt;/p&gt;

&lt;p&gt;Who This Is Actually For&lt;/p&gt;

&lt;p&gt;TestSprite is genuinely useful for:&lt;/p&gt;

&lt;p&gt;Solo developers and small teams who ship without a dedicated QA person. The zero-code approach means you can run meaningful regression tests without learning Selenium or Playwright.&lt;/p&gt;

&lt;p&gt;Teams adding i18n coverage late in the cycle. If you've built an English-first app and are now expanding to new locales, TestSprite's non-ASCII testing catches the low-hanging fruit automatically.&lt;/p&gt;

&lt;p&gt;CI/CD integration via MCP. The VS Code / Cursor plugin integration is smooth, and running tests on every PR is the right workflow.&lt;/p&gt;

&lt;p&gt;It's less useful if:&lt;/p&gt;

&lt;p&gt;You need deep locale validation by default (you'll have to guide it)&lt;/p&gt;

&lt;p&gt;You have complex business logic that requires domain-specific test scenarios&lt;/p&gt;

&lt;p&gt;Budget is tight — the credit-based model adds up with frequent test runs&lt;/p&gt;

&lt;p&gt;Final Score&lt;/p&gt;

&lt;p&gt;Category&lt;/p&gt;

&lt;p&gt;Score&lt;/p&gt;

&lt;p&gt;Core test generation&lt;/p&gt;

&lt;p&gt;★★★★☆&lt;/p&gt;

&lt;p&gt;Non-ASCII input handling&lt;/p&gt;

&lt;p&gt;★★★★★&lt;/p&gt;

&lt;p&gt;Locale/date format testing&lt;/p&gt;

&lt;p&gt;★★★☆☆&lt;/p&gt;

&lt;p&gt;Timezone handling&lt;/p&gt;

&lt;p&gt;★★☆☆☆&lt;/p&gt;

&lt;p&gt;Currency format depth&lt;/p&gt;

&lt;p&gt;★★★☆☆&lt;/p&gt;

&lt;p&gt;DX / ease of use&lt;/p&gt;

&lt;p&gt;★★★★★&lt;/p&gt;

&lt;p&gt;Failure explainability&lt;/p&gt;

&lt;p&gt;★★★★☆&lt;/p&gt;

&lt;p&gt;Overall: 4/5 for general use. 3/5 specifically for locale-first testing workflows.&lt;/p&gt;

&lt;p&gt;The potential is clearly there. Non-ASCII handling showed me the AI can do locale-aware testing when properly directed. The gap is that it doesn't do this proactively. If TestSprite adds automatic locale context into its test plan generation — simulating multiple locales by default, testing date and currency formats across regions, flagging timezone rendering as a standard check — it becomes the best tool in this space, not just a good one.&lt;/p&gt;

&lt;p&gt;For now: use it, but budget extra time to manually guide the locale-specific test cases. The AI is a capable executor once pointed in the right direction.&lt;/p&gt;

&lt;p&gt;Tested with TestSprite web portal (May 2026). All findings based on a real project with multi-locale requirements. Screenshot of test run attached.&lt;/p&gt;

&lt;p&gt;Tags: #testing #ai #webdev #i18n #devtools&lt;/p&gt;

</description>
      <category>teatsprite</category>
      <category>testing</category>
      <category>web</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
