<?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: Brian Son</title>
    <description>The latest articles on DEV Community by Brian Son (@brianmson).</description>
    <link>https://dev.to/brianmson</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%2F3649787%2F92e4ba1b-ce8b-4117-9537-cbc4bc3f3b44.jpg</url>
      <title>DEV Community: Brian Son</title>
      <link>https://dev.to/brianmson</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brianmson"/>
    <language>en</language>
    <item>
      <title>Edit a SQLite Database on a Remote Server as if It Were Local — Over SSH, with Auto-Sync</title>
      <dc:creator>Brian Son</dc:creator>
      <pubDate>Fri, 05 Jun 2026 01:49:11 +0000</pubDate>
      <link>https://dev.to/brianmson/edit-a-sqlite-database-on-a-remote-server-as-if-it-were-local-over-ssh-with-auto-sync-48oc</link>
      <guid>https://dev.to/brianmson/edit-a-sqlite-database-on-a-remote-server-as-if-it-were-local-over-ssh-with-auto-sync-48oc</guid>
      <description>&lt;p&gt;If you've ever shipped a small app to a Linux box, you know the SQLite ritual.&lt;/p&gt;

&lt;p&gt;The database is a single file sitting somewhere like &lt;code&gt;/var/lib/myapp/app.db&lt;/code&gt;. You need to fix one bad row. So you SSH in, try to remember whether &lt;code&gt;sqlite3&lt;/code&gt; is even installed, fumble through &lt;code&gt;.headers on&lt;/code&gt; and &lt;code&gt;.mode column&lt;/code&gt;, squint at unaligned output in a terminal, hand-write an &lt;code&gt;UPDATE&lt;/code&gt;, pray you got the &lt;code&gt;WHERE&lt;/code&gt; clause right, and hope you didn't just corrupt production.&lt;/p&gt;

&lt;p&gt;Or you &lt;code&gt;scp&lt;/code&gt; the file down, open it in a GUI, make your edits, and &lt;code&gt;scp&lt;/code&gt; it back — and now you're manually playing the role of a sync engine, hoping nobody wrote to the server in between.&lt;/p&gt;

&lt;p&gt;There's a better way. &lt;strong&gt;DBGridy&lt;/strong&gt; lets you open a remote SQLite file over SSH and edit it in a proper data grid — and every change you make is &lt;strong&gt;synced back to the server automatically&lt;/strong&gt;, the moment you make it.&lt;/p&gt;

&lt;p&gt;No terminal gymnastics. No manual upload. No "wait, which copy is the real one?"&lt;/p&gt;

&lt;h2&gt;
  
  
  The 30-second setup
&lt;/h2&gt;

&lt;p&gt;Remote SQLite isn't a separate mode you have to learn. It's just a connection string. Instead of pointing &lt;code&gt;Data Source&lt;/code&gt; at a local path, you point it at an &lt;code&gt;ssh://&lt;/code&gt; URL:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ssh"&gt;&lt;code&gt;&lt;span class="k"&gt;Data&lt;/span&gt; Source=ssh://deploy@db.example.com:22/var/lib/myapp/app.db?authType=password&amp;amp;password=•••••
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Prefer key-based auth? DBGridy speaks that too:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ssh"&gt;&lt;code&gt;&lt;span class="k"&gt;Data&lt;/span&gt; Source=ssh://deploy@db.example.com:22/var/lib/myapp/app.db?authType=key&amp;amp;keyPath=C:&lt;span class="err"&gt;\&lt;/span&gt;Users&lt;span class="err"&gt;\&lt;/span&gt;me&lt;span class="err"&gt;\&lt;/span&gt;.ssh&lt;span class="err"&gt;\&lt;/span&gt;id_ed25519&amp;amp;passphrase=•••••
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Connect, and the remote database shows up in the tree view exactly like a local one — tables, views, triggers, schema, the works. Double-click a table and you're looking at your rows in an editable grid.&lt;/p&gt;

&lt;h2&gt;
  
  
  What actually happens under the hood
&lt;/h2&gt;

&lt;p&gt;This is the part I think developers will appreciate, because the design is deliberately boring in the right places — it optimizes for &lt;strong&gt;speed while you work&lt;/strong&gt; and &lt;strong&gt;safety when you save&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;When you connect, DBGridy:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Pulls the file down over SFTP&lt;/strong&gt; into a local cache (a private mirror keyed by the remote source). Your edits never hit the network on the hot path — they hit a local SQLite file, so the grid stays instant.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Opens the mirror as a normal SQLite database.&lt;/strong&gt; Everything you already know works: multi-tab SQL editor with syntax highlighting, in-cell editing, add/delete rows, &lt;code&gt;CREATE&lt;/code&gt;/&lt;code&gt;DROP&lt;/code&gt;, the lot.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Then, the moment you change data — an in-cell edit, an inserted row, a deleted row, an &lt;code&gt;UPDATE&lt;/code&gt;/&lt;code&gt;INSERT&lt;/code&gt;/&lt;code&gt;DELETE&lt;/code&gt; you ran in the query editor — DBGridy &lt;strong&gt;pushes the file back to the server automatically&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It runs a &lt;strong&gt;WAL checkpoint first&lt;/strong&gt; when the database is in WAL mode, so the bytes you upload are the complete, consistent picture — not a main file with half the story still living in a &lt;code&gt;-wal&lt;/code&gt; sidecar.&lt;/li&gt;
&lt;li&gt;It uploads over &lt;strong&gt;SFTP&lt;/strong&gt; and writes the remote file &lt;strong&gt;atomically&lt;/strong&gt; (download/replace uses a temp file + retry, so a flaky connection won't leave you with a truncated database).&lt;/li&gt;
&lt;li&gt;Rapid edits &lt;strong&gt;coalesce&lt;/strong&gt;. If you fix five cells in two seconds, you don't get five competing uploads stepping on each other — an upload in flight simply schedules one more pass when it finishes, so the server always converges on your latest state.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And you get feedback the whole way. The log panel tells you exactly what's happening:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;Info : Remote SQLite saving... (deploy@db.example.com:22:/var/lib/myapp/app.db)
Ok   : Remote SQLite saved to server: deploy@db.example.com:22:/var/lib/myapp/app.db
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No "Save" button to forget. No "Sync" dialog to babysit. You edit; it's saved. The server file stays the single source of truth.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Good to know:&lt;/strong&gt; Remote SQLite is built for the "one person fixing data on a server" workflow — the case you actually hit at 2 a.m. The remote copy is the canonical one, and your local mirror refreshes when you connect.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Why this matters
&lt;/h2&gt;

&lt;p&gt;SQLite is everywhere now — edge deployments, IoT devices, self-hosted apps, CI artifacts, that one internal tool nobody wants to touch. It's a fantastic database precisely because it's &lt;em&gt;just a file&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;But "just a file" is also exactly why operating on it remotely has always been clumsy. The file lives over there; your tools live over here. DBGridy closes that gap so the remote file behaves like a local one, without you ever leaving the editor or thinking about transport.&lt;/p&gt;

&lt;h2&gt;
  
  
  DBGridy is more than one trick
&lt;/h2&gt;

&lt;p&gt;Remote SQLite over SSH is the newest headline feature, but it lives inside a tool built to be the &lt;strong&gt;one grid editor for all your databases&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;One UI, many databases.&lt;/strong&gt; Connect to &lt;strong&gt;MySQL, PostgreSQL, SQL Server, Oracle, SQLite, MongoDB, Redis, and ClickHouse&lt;/strong&gt; — SQL and NoSQL — through the same grid-based interface. Stop context-switching between five different clients.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A real query workspace.&lt;/strong&gt; Syntax highlighting, multiple query tabs, a "Merge INSERT Statements" tool for bulk operations, and one-click export to &lt;strong&gt;CSV, SQL, or JSON&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A built-in SSH terminal.&lt;/strong&gt; Full xterm.js emulation (256-color, vi/nano, mouse, clipboard), terminal tabs right next to your query editors, SFTP-aware "open terminal here," and sessions that survive a restart. WSL works too.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A developer utility belt.&lt;/strong&gt; The &lt;em&gt;Convert Util&lt;/em&gt; menu packs the stuff you'd otherwise keep a dozen browser tabs open for: Base64 / URL / UTF-8 encode-decode, Unix-timestamp ↔ UTC, &lt;strong&gt;JWT generate &amp;amp; decode&lt;/strong&gt;, &lt;strong&gt;AES encrypt/decrypt&lt;/strong&gt;, hashing, UUID generation, a &lt;strong&gt;JSONPath tester&lt;/strong&gt;, and Hex ↔ Decimal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Compare mode.&lt;/strong&gt; Character-level diff highlighting (including whitespace), line-by-line copy between editors, and keyboard-driven diff navigation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Light and dark themes&lt;/strong&gt;, because your eyes matter at 2 a.m.&lt;/p&gt;

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

&lt;p&gt;DBGridy is a Windows desktop app — download the release, unzip, run &lt;code&gt;DBGridy.exe&lt;/code&gt;. No installer ceremony.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://dbgridy.com" rel="noopener noreferrer"&gt;dbgridy.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you maintain anything backed by a SQLite file on a remote box, give the SSH workflow a spin and tell me it isn't the part you didn't know you were missing. And if there's a database or a workflow you wish it handled, I'd genuinely like to hear it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;DBGridy — one grid editor for MySQL, PostgreSQL, SQL Server, Oracle, SQLite, MongoDB, Redis, and ClickHouse. Copyright © 2025 BrianMSon.&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Built a Lightweight Database GUI Because I Was Tired of Heavy Tools</title>
      <dc:creator>Brian Son</dc:creator>
      <pubDate>Mon, 23 Feb 2026 08:57:01 +0000</pubDate>
      <link>https://dev.to/brianmson/i-built-a-lightweight-database-gui-because-i-was-tired-of-heavy-tools-d1n</link>
      <guid>https://dev.to/brianmson/i-built-a-lightweight-database-gui-because-i-was-tired-of-heavy-tools-d1n</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Lightweight Database GUI Because I Was Tired of Heavy Tools
&lt;/h1&gt;

&lt;p&gt;Most database tools today are powerful.&lt;/p&gt;

&lt;p&gt;But sometimes… they’re just too much.&lt;/p&gt;

&lt;p&gt;I didn’t want to spin up Docker.&lt;br&gt;&lt;br&gt;
I didn’t want to configure 20 different settings.&lt;br&gt;&lt;br&gt;
I didn’t want a cloud-based dashboard.&lt;/p&gt;

&lt;p&gt;I just wanted something simple.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;DBGridy&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;As a developer, I often need to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Quickly inspect data
&lt;/li&gt;
&lt;li&gt;Run simple queries
&lt;/li&gt;
&lt;li&gt;Compare results
&lt;/li&gt;
&lt;li&gt;Edit CSV files
&lt;/li&gt;
&lt;li&gt;Check UUID timestamps
&lt;/li&gt;
&lt;li&gt;Test JSONPath expressions
&lt;/li&gt;
&lt;li&gt;Decode JWT tokens
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And every time, I had to open a different tool.&lt;/p&gt;

&lt;p&gt;Some were too heavy.&lt;br&gt;&lt;br&gt;
Some required installation.&lt;br&gt;&lt;br&gt;
Some required online accounts.&lt;br&gt;&lt;br&gt;
Some were slow.&lt;/p&gt;

&lt;p&gt;I wanted a fast, local, lightweight tool that just works.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Is DBGridy?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;DBGridy&lt;/strong&gt; is a lightweight desktop database utility built for developers who:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prefer local tools
&lt;/li&gt;
&lt;li&gt;Want zero cloud dependency
&lt;/li&gt;
&lt;li&gt;Need quick productivity utilities
&lt;/li&gt;
&lt;li&gt;Work frequently with MySQL, SQLite, and CSV
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It focuses on speed and simplicity.&lt;/p&gt;

&lt;p&gt;No bloated UI.&lt;br&gt;&lt;br&gt;
No enterprise complexity.&lt;br&gt;&lt;br&gt;
Just practical features.&lt;/p&gt;

&lt;p&gt;If you're curious, you can learn more about the project here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dbgridy.com" rel="noopener noreferrer"&gt;https://dbgridy.com&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Clean Data Grid Experience
&lt;/h3&gt;

&lt;p&gt;Fast data browsing with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sorting
&lt;/li&gt;
&lt;li&gt;Filtering
&lt;/li&gt;
&lt;li&gt;Inline editing
&lt;/li&gt;
&lt;li&gt;Quick navigation
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Designed for quick inspection — not heavy BI analysis.&lt;/p&gt;




&lt;h3&gt;
  
  
  Compare Mode
&lt;/h3&gt;

&lt;p&gt;Sometimes you need to compare:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Two query results
&lt;/li&gt;
&lt;li&gt;Two CSV files
&lt;/li&gt;
&lt;li&gt;Two JSON documents
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DBGridy includes a simple side-by-side comparison mode to quickly spot differences.&lt;/p&gt;

&lt;p&gt;No external diff tool required.&lt;/p&gt;




&lt;h3&gt;
  
  
  Built-in Developer Utilities
&lt;/h3&gt;

&lt;p&gt;I kept adding small tools I personally needed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AES Encrypt / Decrypt
&lt;/li&gt;
&lt;li&gt;JWT Decoder
&lt;/li&gt;
&lt;li&gt;UUID Inspector
&lt;/li&gt;
&lt;li&gt;JSONPath Tester
&lt;/li&gt;
&lt;li&gt;CSV utilities
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of opening multiple browser tabs, everything lives in one place.&lt;/p&gt;




&lt;h3&gt;
  
  
  Lightweight by Design
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Native desktop app
&lt;/li&gt;
&lt;li&gt;No browser dependency
&lt;/li&gt;
&lt;li&gt;No cloud
&lt;/li&gt;
&lt;li&gt;No telemetry
&lt;/li&gt;
&lt;li&gt;No forced login
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s built for developers who value control.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I Didn’t Just Use Existing Tools
&lt;/h2&gt;

&lt;p&gt;Yes, there are great tools out there.&lt;/p&gt;

&lt;p&gt;But I found that many tools fall into one of these categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Too enterprise-heavy
&lt;/li&gt;
&lt;li&gt;Too cloud-centric
&lt;/li&gt;
&lt;li&gt;Too minimal (missing features I need)
&lt;/li&gt;
&lt;li&gt;Too slow for quick workflows
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something balanced:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;More powerful than a basic CSV editor&lt;br&gt;&lt;br&gt;
Simpler than a full enterprise database suite  &lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Who Is DBGridy For?
&lt;/h2&gt;

&lt;p&gt;You might like DBGridy if you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Frequently inspect database tables
&lt;/li&gt;
&lt;li&gt;Need quick CSV editing
&lt;/li&gt;
&lt;li&gt;Compare structured data often
&lt;/li&gt;
&lt;li&gt;Work offline
&lt;/li&gt;
&lt;li&gt;Prefer desktop tools over web dashboards
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s especially useful for solo developers and small teams.&lt;/p&gt;




&lt;h2&gt;
  
  
  Lessons Learned While Building It
&lt;/h2&gt;

&lt;p&gt;Building a dev tool taught me something important:&lt;/p&gt;

&lt;p&gt;Developers don’t just want features.&lt;/p&gt;

&lt;p&gt;They want:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Speed
&lt;/li&gt;
&lt;li&gt;Clarity
&lt;/li&gt;
&lt;li&gt;Predictability
&lt;/li&gt;
&lt;li&gt;Low friction
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every extra click matters.&lt;br&gt;&lt;br&gt;
Every configuration screen matters.&lt;/p&gt;

&lt;p&gt;The best tools feel invisible.&lt;/p&gt;




&lt;h2&gt;
  
  
  What’s Next?
&lt;/h2&gt;

&lt;p&gt;I’m currently exploring:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Better diff/compare features
&lt;/li&gt;
&lt;li&gt;More structured log viewing tools
&lt;/li&gt;
&lt;li&gt;Improved CSV → database workflows
&lt;/li&gt;
&lt;li&gt;Possibly lightweight REST API utilities
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DBGridy is evolving as a growing developer toolbox.&lt;/p&gt;

&lt;p&gt;If you’ve ever felt frustrated by overly complex database tools and prefer something lightweight and local, you can check it out here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dbgridy.com" rel="noopener noreferrer"&gt;https://dbgridy.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback is always welcome.&lt;/p&gt;

</description>
      <category>database</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Introducing DBGridy</title>
      <dc:creator>Brian Son</dc:creator>
      <pubDate>Sun, 07 Dec 2025 03:32:11 +0000</pubDate>
      <link>https://dev.to/brianmson/introducing-dbgridy-4dn8</link>
      <guid>https://dev.to/brianmson/introducing-dbgridy-4dn8</guid>
      <description>&lt;p&gt;Introducing DBGridy: A Simple, Grid-Focused DB Client&lt;br&gt;
Hey Dev Community,&lt;/p&gt;

&lt;p&gt;If you manage databases, you know the drill: clients are often too slow, too complicated, or lack the basic efficiency you need for quick fixes and data exploration.&lt;/p&gt;

&lt;p&gt;I built DBGridy to be the opposite: a fast, minimalist database client designed around the simplicity of a spreadsheet grid.&lt;/p&gt;

&lt;p&gt;I've been using this tool daily, and now I'd love to get it into your hands. Please try it out and give me direct, no-nonsense feedback. What works? What doesn't?&lt;/p&gt;

&lt;p&gt;💡 The Core Idea: Data on the Grid&lt;br&gt;
DBGridy is optimized for quick data interaction. Instead of navigating complex interfaces, you work directly on the table view.&lt;/p&gt;

&lt;p&gt;Fast Loading: Handles large tables efficiently without the lag.&lt;/p&gt;

&lt;p&gt;Direct Editing: Double-click a cell, edit the data in place, and save. It's designed for speed.&lt;/p&gt;

&lt;p&gt;Simple Filtering: Use column headers to filter and sort data instantly.&lt;/p&gt;

&lt;p&gt;🛠️ What Else It Does&lt;br&gt;
We cover the fundamentals needed for daily development:&lt;/p&gt;

&lt;p&gt;Multi-DB Support: Works with MySQL, PostgreSQL, SQLite, and more.&lt;/p&gt;

&lt;p&gt;Intelligent SQL Editor: Includes smart autocompletion to speed up query writing.&lt;/p&gt;

&lt;p&gt;Export Ready: Easily export data sets to CSV and JSON formats.&lt;/p&gt;

&lt;p&gt;🙏 Your Feedback Needed&lt;br&gt;
DBGridy is ready for broader testing. Your feedback is crucial for its development.&lt;/p&gt;

&lt;p&gt;I'm specifically looking for your thoughts on:&lt;/p&gt;

&lt;p&gt;Workflow: Does it integrate easily into your daily tasks?&lt;/p&gt;

&lt;p&gt;Performance: How does it handle your heaviest queries and largest data views?&lt;/p&gt;

&lt;p&gt;Missing Tools: Are there any essential, high-priority features we should add next?&lt;/p&gt;

&lt;p&gt;Check it out. Let me know what you think.&lt;/p&gt;

&lt;p&gt;👉 Download DBGridy and start testing: &lt;a href="https://dbgridy.com" rel="noopener noreferrer"&gt;https://dbgridy.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for taking the time.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
