2 comments

  • bambax38 minutes ago
    I&#x27;m relatively new to DuckDB (coming from SQLite) and I love it so far. Some parts are magical (described in the previous article by the same author: <a href="https:&#x2F;&#x2F;peterdohertys.website&#x2F;blog-posts&#x2F;dab-of-duck.html" rel="nofollow">https:&#x2F;&#x2F;peterdohertys.website&#x2F;blog-posts&#x2F;dab-of-duck.html</a>)<p>You can point DuckDB to almost any data source and boom, you get an SQL table that you can search, sum, or join to any other data. Or you can attach existing databases from completely independent db systems, and query and join them as one, without having to first importing anything.<p>It feels exhilarating (if you&#x27;re into that sort of thing!)
    • slotix1 minute ago
      We wrapped exactly this into a GUI - attach MySQL and PostgreSQL, files&#x2F; s3 as sources, query them together with DuckDB. No imports. <a href="https:&#x2F;&#x2F;streams.dbconvert.com&#x2F;cross-database-sql" rel="nofollow">https:&#x2F;&#x2F;streams.dbconvert.com&#x2F;cross-database-sql</a>
    • thechao31 minutes ago
      My honeymoon with duckdb wore off pretty quickly when I need to compile it, myself, into a single-file concordance. I understand it&#x27;s open source, so I&#x27;m free to be ignored. But, it&#x27;s positioning itself as a drop-in replacement for SQLite; a large part of SQLite&#x27;s appeal is its ergonomics — its single-fileness — letting me deliver a rational object to my users.
  • rahimnathwani1 hour ago
    Has anyone used DuckDB (or anything else) to create an open source way to publish a mailbox so that a regular person can browse it and search it?<p>I&#x27;m aware of jmail.world, but they haven&#x27;t (yet?) published the source code.<p>I had Claude hack something together recently: <a href="https:&#x2F;&#x2F;healdsburg-youcubed-emails.vercel.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;healdsburg-youcubed-emails.vercel.app&#x2F;</a><p>It works fine for this small set of emails, although the search isn&#x27;t great, and there was more preprocessing that I would have liked. (I would prefer to be able to point a single binary at a pst or mbox file, and have it magically serve it like this, even if it means I need a VPS to serve it.)
    • joouha16 minutes ago
      Maybe <a href="https:&#x2F;&#x2F;github.com&#x2F;wesm&#x2F;msgvault" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;wesm&#x2F;msgvault</a> will do what you need?
    • zffr1 hour ago
      What’s your use case for this?
      • bambax43 minutes ago
        Here&#x27;s one: a client of mine has a bunch of SnapLogic pipelines that are configured to send errors via email, and there is no other persistent logging system. This results in tens of thousands of emails that are insanely hard to search and parse for any useful auditing.
      • rahimnathwani1 hour ago
        Making it easy for members of the public to search and browse email sent by or to government employees.<p>These emails aren&#x27;t published by default but email archives are often included in responses to public record requests.<p>Ideally anyone who receives one of these archives would be able easily inspect it themselves, and also make it available to others.