<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: frectonz</title><link>https://news.ycombinator.com/user?id=frectonz</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 16 Jun 2026 15:30:48 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=frectonz" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[Serverless for Your Servers]]></title><description><![CDATA[
<p>Article URL: <a href="https://pennyproxy.com">https://pennyproxy.com</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47286873">https://news.ycombinator.com/item?id=47286873</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 07 Mar 2026 12:03:53 +0000</pubDate><link>https://pennyproxy.com</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=47286873</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47286873</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: Embed an SQLite database in your PostgreSQL table"]]></title><description><![CDATA[
<p>yes you can<p>CREATE TABLE crime_against_humanity (
   databases SQLITE[]
);</p>
]]></description><pubDate>Tue, 19 Nov 2024 17:09:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=42185716</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42185716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42185716</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: Embed an SQLite database in your PostgreSQL table"]]></title><description><![CDATA[
<p>oh nice, i didn't know this existed, thanks</p>
]]></description><pubDate>Tue, 19 Nov 2024 16:24:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=42185191</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42185191</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42185191</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: Embed an SQLite database in your PostgreSQL table"]]></title><description><![CDATA[
<p>That's the sensible option but not the fun one.</p>
]]></description><pubDate>Tue, 19 Nov 2024 14:35:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=42183865</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42183865</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42183865</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: Embed an SQLite database in your PostgreSQL table"]]></title><description><![CDATA[
<p>Thanks i will look into this more, /tmp stuff is most definitely a hack.</p>
]]></description><pubDate>Tue, 19 Nov 2024 14:12:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=42183615</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42183615</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42183615</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: Embed an SQLite database in your PostgreSQL table"]]></title><description><![CDATA[
<p>My next project</p>
]]></description><pubDate>Tue, 19 Nov 2024 14:09:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=42183593</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42183593</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42183593</guid></item><item><title><![CDATA[Show HN: Embed an SQLite database in your PostgreSQL table]]></title><description><![CDATA[
<p>pglite-fusion is a PostgreSQL extension that allows you to embed SQLite databases into your PostgreSQL tables by enabling the creation of columns with the `SQLITE` type. This means every row in the table can have an embedded SQLite database.<p>In addition to the PostgreSQL `SQLITE` type, pglite-fusion provides the `query_sqlite`` function for querying SQLite databases and the `execute_sqlite` function for updating them. Additional functions are listed in the project’s README.<p>The pglite-fusion extension is written in Rust using the pgrx framework [1].<p>----<p>Implementation Details<p>The PostgreSQL `SQLITE` type is stored as a CBOR-encoded `Vec<u8>`. When a query is made, this `Vec<u8>` is written to a random file in the `/tmp` directory. SQLite then loads the file, performs the query, and returns the result as a table containing a single row with an array of JSON-encoded values.<p>The `execute_sqlite` function follows a similar process. However, instead of returning query results, it returns the contents of the SQLite file (stored in `/tmp`) as a new `SQLITE` instance.<p>[1] <a href="https://github.com/pgcentralfoundation/pgrx">https://github.com/pgcentralfoundation/pgrx</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42182146">https://news.ycombinator.com/item?id=42182146</a></p>
<p>Points: 180</p>
<p># Comments: 110</p>
]]></description><pubDate>Tue, 19 Nov 2024 11:02:32 +0000</pubDate><link>https://github.com/frectonz/pglite-fusion</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42182146</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42182146</guid></item><item><title><![CDATA[Embed an SQLite database in your PostgreSQL table]]></title><description><![CDATA[
<p>Article URL: <a href="https://hub.docker.com/r/frectonz/pglite-fusion">https://hub.docker.com/r/frectonz/pglite-fusion</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42174753">https://news.ycombinator.com/item?id=42174753</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 18 Nov 2024 17:35:41 +0000</pubDate><link>https://hub.docker.com/r/frectonz/pglite-fusion</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=42174753</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42174753</guid></item><item><title><![CDATA[Show HN: A Browser UI for Your Docker Registry – Built with Elm and Rust]]></title><description><![CDATA[
<p>I was hosting my own Docker Registry for work, and i was disappointed that Docker Registry didn't ship with a UI, so i decided to build my own version.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41756532">https://news.ycombinator.com/item?id=41756532</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Sun, 06 Oct 2024 12:04:38 +0000</pubDate><link>https://github.com/frectonz/octopod</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=41756532</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41756532</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: If YouTube had actual channels"]]></title><description><![CDATA[
<p>Somebody finally made the Interdimensional Cable from Rick and Morty.</p>
]]></description><pubDate>Wed, 14 Aug 2024 19:12:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=41249482</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=41249482</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41249482</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>Thanks, i have moved them now.</p>
]]></description><pubDate>Mon, 17 Jun 2024 06:13:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=40702777</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40702777</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40702777</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>It is a CLI tool that starts a local web server. After you install it, you can run `sqlite-studio <your_db>` and then you will see a log that says "listening on <a href="http://127.0.0.1:3030" rel="nofollow">http://127.0.0.1:3030</a>". When you open that page you will see the dashboard.</p>
]]></description><pubDate>Mon, 17 Jun 2024 00:07:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=40701176</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40701176</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40701176</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>We have some screenshots on the github releases page (<a href="https://github.com/frectonz/sqlite-studio/releases">https://github.com/frectonz/sqlite-studio/releases</a>). Would be better to take a look at the hosted preview (<a href="https://sqlite-studio.frectonz.io/" rel="nofollow">https://sqlite-studio.frectonz.io/</a>) though.<p>It is a CLI tool, that creates a local server. I will make the readme better soon.</p>
]]></description><pubDate>Sun, 16 Jun 2024 23:59:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=40701127</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40701127</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40701127</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>You can checkout the hosted preview (<a href="https://sqlite-studio.frectonz.io/" rel="nofollow">https://sqlite-studio.frectonz.io/</a>).
We also have some screenshots on the github releases page (<a href="https://github.com/frectonz/sqlite-studio/releases">https://github.com/frectonz/sqlite-studio/releases</a>).</p>
]]></description><pubDate>Sun, 16 Jun 2024 23:57:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=40701111</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40701111</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40701111</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>yeah sorry, i didn't know there was another tool with the same name, i will change it soon.</p>
]]></description><pubDate>Sun, 16 Jun 2024 23:47:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=40701064</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40701064</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40701064</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>Yeah that's true. I didn't think people would be this interested. Will add more info.</p>
]]></description><pubDate>Sun, 16 Jun 2024 23:27:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=40700957</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40700957</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40700957</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>The ui is mostly shadcn/ui (<a href="https://ui.shadcn.com/" rel="nofollow">https://ui.shadcn.com/</a>).</p>
]]></description><pubDate>Sun, 16 Jun 2024 22:58:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=40700794</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40700794</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40700794</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>Yeah seems like there was DB locking issue or sth, just restarted the server, will be fixed soon.</p>
]]></description><pubDate>Sun, 16 Jun 2024 22:54:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=40700782</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40700782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40700782</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>Thanks, I appreciate it. SQLpage looks like a cool idea, will look into it more.</p>
]]></description><pubDate>Sun, 16 Jun 2024 22:53:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=40700774</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40700774</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40700774</guid></item><item><title><![CDATA[New comment by frectonz in "Show HN: SQLite Database Explorer"]]></title><description><![CDATA[
<p>Creator here, sorry, i didn't know the name was taken, i will rename it soon.</p>
]]></description><pubDate>Sun, 16 Jun 2024 22:49:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=40700759</link><dc:creator>frectonz</dc:creator><comments>https://news.ycombinator.com/item?id=40700759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40700759</guid></item></channel></rss>