<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: debba</title><link>https://news.ycombinator.com/user?id=debba</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 23 Apr 2026 07:35:30 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=debba" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Show HN: I got tired of writing Pandas scripts just to JOIN two CSV files]]></title><description><![CDATA[
<p>Every few weeks I get 2-3 CSV files and need to run a quick JOIN or aggregation. The options are always the same: fire up pandas, import into SQLite by hand, or use some janky web tool.<p>So I built a plugin for Tabularis (my native DB GUI) that treats a folder of CSV files as a database. Drop your files in, every file becomes a table, column types are inferred automatically, and you get a full SQL editor.<p>No code. No imports. Just SQL.<p>Example: 3 CSV files (users, orders, products) → this query works immediately:<p><pre><code>  SELECT
    u.name,
    u.country,
    COUNT(o.id)                        AS orders,
    ROUND(SUM(p.price * o.quantity), 2) AS total_spent
  FROM orders o
  JOIN users u ON o.user_id = u.id
  JOIN products p ON o.product_id = p.id
  GROUP BY u.id
  ORDER BY total_spent DESC
</code></pre>
The plugin is ~250 lines of stdlib Python (zero dependencies). It works because Tabularis has an open plugin protocol — JSON-RPC over stdin/stdout — so any data source can be a database.<p>Plugin: <a href="https://github.com/debba/tabularis-csv-plugin" rel="nofollow">https://github.com/debba/tabularis-csv-plugin</a>
Tabularis: <a href="https://github.com/debba/tabularis" rel="nofollow">https://github.com/debba/tabularis</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47153091">https://news.ycombinator.com/item?id=47153091</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 25 Feb 2026 15:44:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=47153091</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47153091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47153091</guid></item><item><title><![CDATA[Show HN: Tabularis – DB GUI where drivers are JSON-RPC executables]]></title><description><![CDATA[
<p>I built Tabularis, a database GUI for MySQL/PostgreSQL/SQLite/MariaDB.<p><pre><code>  The interesting bit is the plugin architecture: instead of shipping
  a monolith with built-in drivers, each database driver is a separate
  executable. The core process spawns it and communicates via JSON-RPC 2.0
  over stdin/stdout. No shared libraries, no ABI concerns, process
  isolation for free.

  This means you can write a plugin in Rust, Go, Python, or anything
  that can read stdin and write JSON. The first community plugin is
  DuckDB.

  The app itself is Tauri 2 + React 19 – no Electron, no JVM.

  GitHub: https://github.com/debba/tabularis</code></pre></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47138147">https://news.ycombinator.com/item?id=47138147</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 24 Feb 2026 15:10:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=47138147</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47138147</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47138147</guid></item><item><title><![CDATA[New comment by debba in "Show HN: Tabularis – Rust/Tauri Database GUI with a JSON-RPC Plugin System"]]></title><description><![CDATA[
<p>Author here. Happy to answer questions.<p>The main thing in this release is a plugin system for database drivers. The short version: plugins are standalone executables that Tabularis spawns as child processes and talks to over JSON-RPC 2.0 on stdin/stdout.<p>I looked at dynamic libraries first but the cross-language ABI story is painful and would have locked plugin authors into Rust (or at least a C-compatible interface). The stdin/stdout approach means you can write a driver in whatever you want — the only contract is the JSON-RPC protocol. It also gives you process isolation for free, which matters when you're dealing with database drivers that can have their own native dependencies and failure modes.<p>The tradeoff is some serialization overhead per call, but in practice you're always waiting on network or disk anyway, so it hasn't been an issue.<p>First plugin out is DuckDB. I kept it out of core because of its binary size, but it's the database I get asked about most, so it felt like the right first target.<p>One thing I'm still thinking through: whether to pull the built-in drivers (MySQL, PostgreSQL, SQLite, MariaDB) out of core entirely and treat them as first-party plugins. It would make the core much leaner and the architecture more consistent, but it adds friction on first install. Currently leaning toward a setup wizard approach. Curious if anyone has dealt with a similar tradeoff.<p>The plugin guide and protocol spec are in the repo if you want to build one: <a href="https://github.com/debba/tabularis/blob/main/plugins/PLUGIN_GUIDE.md" rel="nofollow">https://github.com/debba/tabularis/blob/main/plugins/PLUGIN_...</a></p>
]]></description><pubDate>Mon, 23 Feb 2026 15:03:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47123188</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47123188</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47123188</guid></item><item><title><![CDATA[Show HN: Tabularis – Rust/Tauri Database GUI with a JSON-RPC Plugin System]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/debba/tabularis">https://github.com/debba/tabularis</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47123186">https://news.ycombinator.com/item?id=47123186</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 23 Feb 2026 15:02:47 +0000</pubDate><link>https://github.com/debba/tabularis</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47123186</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47123186</guid></item><item><title><![CDATA[Show HN: GitHub Tray for GNOME gets a big update: notifications, Actions, issues]]></title><description><![CDATA[
<p>What's new n v9:<p><pre><code>    GitHub Notifications panel — a full accordion UI to browse and manage your notifications directly from the tray

    GitHub Actions workflow runs — see the status of your CI/CD pipelines at a glance

    Refresh button — manually refresh notifications without waiting for the next poll

    Mark as read on open — notifications reload automatically when you open them

    Scrollable & paginated list — handles large notification lists without cluttering the UI

    Translations — added German , Spanish , and French 

    Bug fixes — properly clears timers and nullifies managers on destroy (no more memory leaks)
</code></pre>
Feedback on the UI styling from last time was noted too and you can check here.<p>Install it from GNOME Extensions: <a href="https://extensions.gnome.org/extension/9307/github-tray/" rel="nofollow">https://extensions.gnome.org/extension/9307/github-tray/</a><p>Source: <a href="https://github.com/debba/github-tray-gnome-extension" rel="nofollow">https://github.com/debba/github-tray-gnome-extension</a><p>As always, join the Discord for feature requests and discussion: <a href="https://discord.gg/YrZPHAwMSG" rel="nofollow">https://discord.gg/YrZPHAwMSG</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47105491">https://news.ycombinator.com/item?id=47105491</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 21 Feb 2026 22:26:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47105491</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47105491</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47105491</guid></item><item><title><![CDATA[From Git to Spotlight: A Directory for Open-Source Work]]></title><description><![CDATA[
<p>Article URL: <a href="https://gitster.dev">https://gitster.dev</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47009882">https://news.ycombinator.com/item?id=47009882</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 14 Feb 2026 00:32:24 +0000</pubDate><link>https://gitster.dev</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=47009882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47009882</guid></item><item><title><![CDATA[New comment by debba in "Ask HN: What are you working on? (February 2026)"]]></title><description><![CDATA[
<p><a href="https://github.com/debba/tabularis" rel="nofollow">https://github.com/debba/tabularis</a><p>I’m working on tabularis, a lightweight desktop database management tool designed for developers. It provides a modern interface for managing MySQL/MariaDB, PostgreSQL, and SQLite databases through a native desktop application. Built using Tauri v2 (Rust backend) and React 19 (TypeScript frontend), it offers native performance while maintaining the flexibility of web technologies.</p>
]]></description><pubDate>Mon, 09 Feb 2026 20:12:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=46950500</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46950500</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46950500</guid></item><item><title><![CDATA[PostgreSQL introspection is tricky (lessons from building a native client)]]></title><description><![CDATA[
<p>I’m building Tabularis, a native database client (Rust + Tauri).  
MySQL support is in a good place, but PostgreSQL has been much harder to get right — not for performance, but for <i>introspection</i>.<p>Postgres “works”, but once you go beyond basic tables and columns, things get tricky fast.<p>Some gaps I’ve hit so far:<p>- Type system:
  Arrays, JSON/JSONB, domains, custom types, ranges, geometric types — most clients either flatten them to text or handle them inconsistently.<p>- Schema introspection:
  information_schema only goes so far.
  pg_catalog is powerful but subtle.
  Triggers, functions, partitioned tables, inheritance, materialized views all require special handling.<p>- Postgres-specific UX:
  CTE-heavy queries, EXPLAIN ANALYZE output, extensions like PostGIS / pgvector — these don’t map cleanly to generic DB abstractions.<p>I’m currently using SQLx and a mix of information_schema + pg_catalog queries, but I’m sure there are better patterns I’m missing.<p>I’d love feedback from people who:
- Have written serious Postgres introspection queries
- Have opinions on how Postgres clients <i>should</i> represent schemas and types
- Have been frustrated by existing Postgres GUIs<p>Repo (Apache 2.0): https://github.com/debba/tabularis<p>Happy to learn, iterate, and fix wrong assumptions.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46868322">https://news.ycombinator.com/item?id=46868322</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 03 Feb 2026 08:46:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=46868322</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46868322</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46868322</guid></item><item><title><![CDATA[Show HN: I built theme support in Tabularis – lightweight DB tool for developers]]></title><description><![CDATA[
<p>Hi HN,
We’ve just added theme support to Tabularis, our lightweight, developer-focused database management tool.<p>It already lets you:
 • Browse tables and data
 • Run SQL queries
 • Create and edit table DDL
 • Use experimental AI features (query explain / query generation)
 • Expose configured DB connections via an MCP server for AI tooling<p>With the new UI customization features, you can now:
 • Switch themes (light, dark, custom)
 • Configure font family
 • Adjust font size<p>My goal is to keep the tool fast, distraction-free, and flexible for different developer setups.<p>Open source and actively evolving. Feedback from developers who care about minimal, efficient database tools is very welcome.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46845238">https://news.ycombinator.com/item?id=46845238</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 01 Feb 2026 10:56:33 +0000</pubDate><link>https://github.com/debba/tabularis</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46845238</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46845238</guid></item><item><title><![CDATA[The Birth of a Dialogue: Why I'm Building Tabularis]]></title><description><![CDATA[
<p>Article URL: <a href="https://debba92.substack.com/p/the-birth-of-a-dialogue-why-im-building">https://debba92.substack.com/p/the-birth-of-a-dialogue-why-im-building</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46823432">https://news.ycombinator.com/item?id=46823432</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 30 Jan 2026 12:00:26 +0000</pubDate><link>https://debba92.substack.com/p/the-birth-of-a-dialogue-why-im-building</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46823432</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46823432</guid></item><item><title><![CDATA[Show HN: Tabularis – A lightweight, developer-focused database management tool]]></title><description><![CDATA[
<p>Article URL: <a href="https://tabularis.dev">https://tabularis.dev</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46806752">https://news.ycombinator.com/item?id=46806752</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 29 Jan 2026 07:03:38 +0000</pubDate><link>https://tabularis.dev</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46806752</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46806752</guid></item><item><title><![CDATA[Thoughts on Database Tooling and UX]]></title><description><![CDATA[
<p>Database tooling is in a strange place.<p>On one side, there are powerful, commercial tools that try to be everything at once. They support every engine, every workflow, every edge case. The result is often a heavy application with long startup times, dense UIs, and a constant feeling that you’re navigating a system rather than inspecting data.<p>On the other side, there are lightweight or open-source tools that are fast and simple—but quickly hit a wall as soon as you need anything beyond basic querying.<p>What’s missing is not raw functionality, but UX discipline.<p>Many database managers feel like they’ve grown without ever being pruned. Features accumulate, interactions become implicit, and simple actions require unnecessary context switching. Over time, you end up paying a UX tax: more clicks, more waiting, more mental overhead.<p>For developers who frequently jump between databases or just want to explore data quickly, this friction adds up fast. It’s often easier to drop back to the terminal, even when a graphical tool should be the better option.<p>I started experimenting with a small database manager mainly to address this gap: fast startup, explicit actions, minimal abstraction, and a UI that stays out of the way.<p>That experiment eventually became debba.sql, an open-source database manager written in Rust and built with Tauri. It’s intentionally limited in scope and still very much a side project.<p>The more interesting question, though, is broader than any single tool:<p>Why are we still accepting poor UX as the default for database tooling?<p>If you’re curious, feedback is welcome—but even more welcome is the discussion around what “good UX” for developer tools should actually look like.<p>Link repo: https://github.com/debba/debba.sql<p>Ideas, stars and contributions are welcome.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46791944">https://news.ycombinator.com/item?id=46791944</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 28 Jan 2026 06:58:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=46791944</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46791944</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46791944</guid></item><item><title><![CDATA[Show HN: Debba.sql – A lightweight SQL manager built with Tauri and Rust]]></title><description><![CDATA[
<p>Hi HN,<p>I built debba.sql, a lightweight, cross-platform database manager because I wanted a native, fast tool for quick data edits without the heaviness of Electron-based giants or Java IDEs.<p>The interesting part? This project started as an experiment in vibe coding.
I utilized an AI agent to handle the entire scaffolding and heavy lifting of the implementation. We went from an empty directory to a working app with SSH tunneling, schema introspection, and data editing in record time. It allowed me to focus purely on the architectural decisions, UX "vibe", and solving my specific pain points.<p>The Tech Stack:
*   Frontend: React 19 + TypeScript + Tailwind CSS (using Monaco Editor for SQL)
*   Backend: Rust Tauri v2 (for native performance and small binary size)
*   Database Access: SQLx (pure Rust, async driver)<p>Current Features:
*   Multi-DB Support: PostgreSQL, MySQL/MariaDB, and SQLite.
*   SSH Tunneling: Built-in support for connecting via bastion hosts (supports key/agent/password auth).
*   Native Performance: Fast startup (~10MB binary) and low memory footprint.
*   SQL Editor: Full syntax highlighting and execution.
*   Data Grid: Inline editing, row deletion, and easy "New Row" insertion.
*   Schema Tools: Visual "Create Table" wizard (DataGrip style) and introspection.
*   Export: Native CSV/JSON export.<p>Why I built it:
I often need to jump into a DB via SSH to run a query, edit a specific cell, or check a schema. I wanted something that opens instantly and feels like a native system utility, not a web browser tab.<p>Roadmap / Help Wanted:
It's currently in Alpha (v0.1.0). I'm looking for feedback, bug reports, and contributions!
Next on the list:
*   Multiple Query Tabs
*   Visual Query Builder
*   Dark/Light mode toggle<p>The code is open source. Check it out here: <a href="https://github.com/debba/debba.sql" rel="nofollow">https://github.com/debba/debba.sql</a><p>Let me know what you think about the tool or the AI-assisted dev process!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46772592">https://news.ycombinator.com/item?id=46772592</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 26 Jan 2026 22:36:25 +0000</pubDate><link>https://github.com/debba/debba.sql</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46772592</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46772592</guid></item><item><title><![CDATA[Show HN: FreeMarker Support for Zed Editor]]></title><description><![CDATA[
<p>I created a Zed extension for Apache FreeMarker templates with tree-sitter-based syntax highlighting. FreeMarker is a Java template engine that's still widely used in enterprise apps, but modern editor support has been lacking.<p><pre><code>  The extension handles both angle bracket and square bracket syntax, mixed HTML content, and all FreeMarker directives through a custom tree-sitter grammar rather than regex.

  GitHub: https://github.com/debba/zed-freemarker
  Zed Extensions: Search "FreeMarker"

  Built it mainly for my own projects, but figured others maintaining legacy systems might find it useful.</code></pre></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46599821">https://news.ycombinator.com/item?id=46599821</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 13 Jan 2026 11:50:23 +0000</pubDate><link>https://github.com/debba/zed-freemarker</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46599821</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46599821</guid></item><item><title><![CDATA[Show HN: Storytel-player – unofficial desktop client for Storytel]]></title><description><![CDATA[
<p>Hi HN,
I’ve been working on a desktop client for Storytel, as there is currently no official app for PC/Mac. I wanted something that felt more "native" than a browser tab and included features like offline listening and system tray integration.
The stack:
• Frontend: React 18, Tailwind CSS, Vite.
• Backend: Fastify (embedded within the app to handle API logic and streaming).
• Desktop: Electron with TypeScript.
One of the challenges was managing the streaming API and session persistence in a way that feels seamless across different OSs. It currently supports Windows, macOS (x64/ARM64), and Linux.
It is still a work in progress, but the core player and library management are stable. Any feedback on the architecture (especially the Fastify-within-Electron approach) or the app itself would be greatly appreciated.<p>Repo:<p><a href="https://github.com/debba/storytel-player" rel="nofollow">https://github.com/debba/storytel-player</a><p>Releases:<p><a href="https://github.com/debba/storytel-player/releases" rel="nofollow">https://github.com/debba/storytel-player/releases</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46395804">https://news.ycombinator.com/item?id=46395804</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 26 Dec 2025 20:22:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46395804</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46395804</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46395804</guid></item><item><title><![CDATA[Show HN: RocketGift: Find the perfect gift in 30 seconds using AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://rocketgift.it">https://rocketgift.it</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46175713">https://news.ycombinator.com/item?id=46175713</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 06 Dec 2025 19:00:42 +0000</pubDate><link>https://rocketgift.it</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=46175713</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46175713</guid></item><item><title><![CDATA[Show HN: Storytel-Player – A clean, fast, minimal desktop player for audiobooks]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/debba/storytel-player">https://github.com/debba/storytel-player</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45998434">https://news.ycombinator.com/item?id=45998434</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 20 Nov 2025 22:01:52 +0000</pubDate><link>https://github.com/debba/storytel-player</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=45998434</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45998434</guid></item><item><title><![CDATA[Storytel Player – unofficial desktop client for Storytel audiobooks]]></title><description><![CDATA[
<p>I often listen to audiobooks on Storytel but missed having a proper desktop client.
So I built Storytel Player, a lightweight open-source app that lets you stream your Storytel audiobooks directly on your computer.<p>Repo & downloads here:<p>https://github.com/debba/storytel-player<p>https://github.com/debba/storytel-player/releases/tag/v1.0.7<p>Would love feedback and suggestions from the community.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45476334">https://news.ycombinator.com/item?id=45476334</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 04 Oct 2025 20:15:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=45476334</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=45476334</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45476334</guid></item><item><title><![CDATA[New comment by debba in "Storytel Desktop Player for Windows"]]></title><description><![CDATA[
<p>My project is: <a href="https://github.com/debba/storytel-player" rel="nofollow">https://github.com/debba/storytel-player</a></p>
]]></description><pubDate>Thu, 02 Oct 2025 10:31:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=45448020</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=45448020</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45448020</guid></item><item><title><![CDATA[Storytel Desktop Player for Windows]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/debba/storytel-player/releases/download/v1.0.6/Storytel.Player.Setup.1.0.6.exe">https://github.com/debba/storytel-player/releases/download/v1.0.6/Storytel.Player.Setup.1.0.6.exe</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45448019">https://news.ycombinator.com/item?id=45448019</a></p>
<p>Points: 1</p>
<p># Comments: 1</p>
]]></description><pubDate>Thu, 02 Oct 2025 10:31:34 +0000</pubDate><link>https://github.com/debba/storytel-player/releases/download/v1.0.6/Storytel.Player.Setup.1.0.6.exe</link><dc:creator>debba</dc:creator><comments>https://news.ycombinator.com/item?id=45448019</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45448019</guid></item></channel></rss>