<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: AgharaShyam</title><link>https://news.ycombinator.com/user?id=AgharaShyam</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 31 Aug 2026 11:09:19 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=AgharaShyam" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by AgharaShyam in "Show HN: LatticeDB – Like SQLite but for graph databases"]]></title><description><![CDATA[
<p>Ladybug looks promising after KuzuDB was sunset (acquired by Apple).<p>However, I really miss the content posted by the KuzuDB team on their YouTube channel.</p>
]]></description><pubDate>Tue, 25 Aug 2026 19:22:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=49439252</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=49439252</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49439252</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Protect Your Relays"]]></title><description><![CDATA[
<p>stop spamming!!</p>
]]></description><pubDate>Fri, 14 Aug 2026 11:47:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=49297528</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=49297528</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49297528</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Telegram Serverless"]]></title><description><![CDATA[
<p>I wish WhatsApp did... hopefully it goes the way of BBM and a more developer friendly platform becomes the norm among normies.</p>
]]></description><pubDate>Wed, 15 Jul 2026 13:23:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48920493</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=48920493</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48920493</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Iroh 1.0"]]></title><description><![CDATA[
<p>LM studio recently released a mobile app powered by Tailscale -- <a href="https://lmstudio.ai/link" rel="nofollow">https://lmstudio.ai/link</a> . Iroh seems like a perfect OSS alternative for implementing similar p2p features.</p>
]]></description><pubDate>Mon, 15 Jun 2026 16:17:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48543497</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=48543497</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48543497</guid></item><item><title><![CDATA[New comment by AgharaShyam in "A DuckDB-based metabase alternative"]]></title><description><![CDATA[
<p>100% agreed regarding shipping a read-replica, for any sufficiently complex enterprise app (ERP, CRM, accounting, etc.).<p>Customers need it to build custom reports, archive data into a warehouse, drive downstream systems (notifications, audits, compliance), and answer edge-case questions you didn’t anticipate.<p>Because of that, I generally prefer these patterns over a half-baked built-in analytics UI or an opinionated REST API:<p>Provide a read replica or CDC stream.
Let sophisticated customers handle authz, modelling, and queries themselves. This gets harder with multi-tenant DBs.<p>Optionally offer a hosted Data API, using something like -- PostgREST / Hasura / Microsoft DAB.
You handle permissions and safety, but stay largely un-opinionated about access patterns.<p>Any built-in metrics or analytics layer will always miss edge cases.<p>With AI agents becoming first-class consumers of enterprise data, direct read access is going to be non-negotiable.<p>Also, I predict the days of charging customers to access their own goddamn data, behind rate-limited + metered REST APIs are behind us.</p>
]]></description><pubDate>Wed, 18 Feb 2026 14:41:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=47061442</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=47061442</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47061442</guid></item><item><title><![CDATA[New comment by AgharaShyam in "BirdyChat becomes first European chat app that is interoperable with WhatsApp"]]></title><description><![CDATA[
<p>This is really amazing. I hope some regulation like DMA comes to India as well.<p>Does WhatsApp charge money for this? If not, why would a business use their API? They could simply create an app to directly talk to their customers, or am I missing something?</p>
]]></description><pubDate>Sat, 24 Jan 2026 21:03:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=46747645</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=46747645</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46747645</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Show HN: Serverless Postgres"]]></title><description><![CDATA[
<p>In addition to infrequent access type use-cases, the ability to trivially create new DBs without incurring significant costs is the killer feature.<p>This makes it feasible to build multi-tenant applications with 1-db-per-tenant. I know the same can be achieved with RLS policies or application-layer permissions, but nothing beats the peace mind (for developer and customers alike) of having tenant data in entirely separate databases. This also makes it easier to have custom schema for different subsets of users. Side note: SQLite (the OG serverless DB) also has the same benefit but is decidedly less feature-full than postgres/mysql.<p>Another pattern that I have seen emerging is that certain products allow end-users to create DBs on the fly as a part of their own product offering. For example, Retool (which uses Neon) allows users to create a new database in seconds, even on their free plan. I don't think this would have been possible (both cost and DX wise) if they provisioned a new Postgres cluster for each customer.<p>On that note, and in light of what happened with the Planetscale free plan, this would make the Supabase free offering and branching to be significantly less expensive to operate. btw: thank you for the free plan and all the amazing OSS contributions from the supabase team!!</p>
]]></description><pubDate>Wed, 29 May 2024 23:04:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=40518141</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=40518141</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40518141</guid></item><item><title><![CDATA[New comment by AgharaShyam in "New 13-inch MacBook Pro"]]></title><description><![CDATA[
<p>Yes</p>
]]></description><pubDate>Mon, 04 May 2020 13:47:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=23068003</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=23068003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=23068003</guid></item><item><title><![CDATA[Hello, World! – Zerodha Tech Blog]]></title><description><![CDATA[
<p>Article URL: <a href="https://zerodha.tech/blog/hello-world/">https://zerodha.tech/blog/hello-world/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22843148">https://news.ycombinator.com/item?id=22843148</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 11 Apr 2020 18:18:26 +0000</pubDate><link>https://zerodha.tech/blog/hello-world/</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=22843148</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22843148</guid></item><item><title><![CDATA[Using Anki to remember what you read]]></title><description><![CDATA[
<p>Article URL: <a href="https://superorganizers.substack.com/p/how-to-build-a-learning-machine">https://superorganizers.substack.com/p/how-to-build-a-learning-machine</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22524026">https://news.ycombinator.com/item?id=22524026</a></p>
<p>Points: 15</p>
<p># Comments: 1</p>
]]></description><pubDate>Mon, 09 Mar 2020 09:09:31 +0000</pubDate><link>https://superorganizers.substack.com/p/how-to-build-a-learning-machine</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=22524026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22524026</guid></item><item><title><![CDATA[Draft of the Fast.ai Book]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/fastai/fastbook">https://github.com/fastai/fastbook</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=22449562">https://news.ycombinator.com/item?id=22449562</a></p>
<p>Points: 509</p>
<p># Comments: 58</p>
]]></description><pubDate>Sat, 29 Feb 2020 08:05:14 +0000</pubDate><link>https://github.com/fastai/fastbook</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=22449562</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=22449562</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Ask HN: What is the best tech stack to develop a SAAS Service?"]]></title><description><![CDATA[
<p>Thanks for a very detailed answer. I appreciate it.<p>You are totally right in that i don't have any real web/application development. In fact i just started university but i have been programming for a few years (mostly problems on sites like code chef in C, C++ no products) but recently got this idea when i visited a plant that my father owns. There are about 600 such plants in the same area and they use fairly old software or not at all. So i talked to him about my idea and he thinks it will be very useful and also commercially successful since there is virtually no competition. That's why i decided to learn web development. But now i am realising it's tougher than it looks. I asked this question in order to get an idea what all the things i need to learn in order to even attempt to build something like this. Now that i look at my question i think i should have asked "How to be a full stack web developer?". So if anyone is still reading i think this would be the question that you should answer or maybe i should have just googled it and started working</p>
]]></description><pubDate>Sat, 28 Jan 2017 13:36:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=13506189</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=13506189</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13506189</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Ask HN: What is the best tech stack to develop a SAAS Service?"]]></title><description><![CDATA[
<p>So what i am planning to build is SAAS service that provides all the feature's listed above and more, customised for an (unspecified for competitive purpose) industry. The web client is used for entry of data related to sales, stock, payroll. I am also making apps for various operator's inside the plant to upload data using their android phone's and tablets.<p>Then i want to process and display all this data (related to Manufacturing, Sales, Marketing etc) on web, iOS and Android.<p>So essentially there will be apps for employee's working in the plant (for data entry) as well as for the managers and owners (to monitor everything and make decisions)<p>I want the web dashboard to look somewhat similar to - <a href="https://demo.baremetrics.com" rel="nofollow">https://demo.baremetrics.com</a><p>And since i have no experience in building mobile apps i want to know what languages/frameworks would be best suitable to develop good/native looking apps for iOS and Android using web technologies.<p>Thanks.</p>
]]></description><pubDate>Sat, 28 Jan 2017 09:08:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=13505567</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=13505567</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13505567</guid></item><item><title><![CDATA[New comment by AgharaShyam in "Ask HN: What is the best tech stack to develop a SAAS Service?"]]></title><description><![CDATA[
<p>Thanks for the suggestion i336_<p>So what i am planning to build is SAAS service that provides all the feature's listed above and more, customised for an (unspecified for competitive purpose) industry. The web client is used for entry of data related to sales, stock, payroll. I am also making apps for various operator's inside the plant to upload data using their android phone's and tablets.<p>Then i want to process and display all this data (related to Manufacturing, Sales, Marketing etc) on web, iOS and Android.<p>So essentially there will be apps for employee's working in the plant(for data entry) as well as for the managers and owners(to monitor everything and make decisions)<p>I want the web dashboard to look somewhat similar to - <a href="https://demo.baremetrics.com" rel="nofollow">https://demo.baremetrics.com</a><p>And since i have no experience in building mobile apps i want to know what languages/frameworks would be best suitable to develop good/native looking apps for iOS and Android using web technologies.<p>Thanks.</p>
]]></description><pubDate>Sat, 28 Jan 2017 09:05:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=13505562</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=13505562</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13505562</guid></item><item><title><![CDATA[Ask HN: What is the best tech stack to develop a SAAS Service?]]></title><description><![CDATA[
<p>Hi Guys,<p>I want to know what languages and frameworks should i learn in order to develop a vertical SAAS Service. This includes making an iOS, Android and a Web App.<p>Feature that i want to develop are - 
- Inventory Management
- Dealer Management
- Accounting
- Payroll
- Analytics (Important)</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=13505248">https://news.ycombinator.com/item?id=13505248</a></p>
<p>Points: 35</p>
<p># Comments: 23</p>
]]></description><pubDate>Sat, 28 Jan 2017 06:39:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=13505248</link><dc:creator>AgharaShyam</dc:creator><comments>https://news.ycombinator.com/item?id=13505248</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=13505248</guid></item></channel></rss>