<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: bigfish24</title><link>https://news.ycombinator.com/user?id=bigfish24</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 27 Apr 2026 18:26:02 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=bigfish24" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[2026 We Built a Browser Robot Because Webflow's API Can't Handle a Code Block]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.ditto.com/blog/browser-robot-cms-api-gap">https://www.ditto.com/blog/browser-robot-cms-api-gap</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47805153">https://news.ycombinator.com/item?id=47805153</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 17 Apr 2026 12:23:33 +0000</pubDate><link>https://www.ditto.com/blog/browser-robot-cms-api-gap</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=47805153</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47805153</guid></item><item><title><![CDATA[New comment by bigfish24 in "Cross-Platform P2P Wi-Fi: How the EU Killed AWDL"]]></title><description><![CDATA[
<p>I think the EU mandate forces them to do both, so that devices with AWDL are not advantaged over non-Apple devices with Wi-Fi Aware, so my read is that mandate will mean Apple devices will do both modes until they can transition AWDL off entirely.</p>
]]></description><pubDate>Fri, 28 Mar 2025 16:10:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=43507131</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=43507131</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43507131</guid></item><item><title><![CDATA[New comment by bigfish24 in "Cross-Platform P2P Wi-Fi: How the EU Killed AWDL"]]></title><description><![CDATA[
<p>For something like AirDrop this will need to be sorted out, but already work occurred to reverse engineer this: <a href="https://github.com/seemoo-lab/opendrop" rel="nofollow">https://github.com/seemoo-lab/opendrop</a><p>Would be cool if an open standard on auth forms on top of this.</p>
]]></description><pubDate>Fri, 28 Mar 2025 14:23:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=43505810</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=43505810</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43505810</guid></item><item><title><![CDATA[LiveStore: SQLite-based data layer for local-first apps]]></title><description><![CDATA[
<p>Article URL: <a href="https://expo.dev/blog/local-first-application-development-with-livestore">https://expo.dev/blog/local-first-application-development-with-livestore</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42211380">https://news.ycombinator.com/item?id=42211380</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 22 Nov 2024 05:17:58 +0000</pubDate><link>https://expo.dev/blog/local-first-application-development-with-livestore</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=42211380</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42211380</guid></item><item><title><![CDATA[New comment by bigfish24 in "MongoDB deprecates Atlas Device sync"]]></title><description><![CDATA[
<p>Sorry I did not see this reply sooner!<p>1. Yes Ditto uses query-based sync. Candidly, the flexible sync in Atlas has roots back to when I was VP of Product at Realm. It was a must for me, but I think got abandoned for performance issues then brought back. Ditto was built always to support flexible/query sync. We recently have added our own more advanced query engine - DQL (SQLish) and it will enable JOINs and other advanced queries while still being schemaless JSON collections. In this regard Ditto is a better compliment to Mongo than Realm is from data model perspective.<p>2. Yes this partner-first approach is huge opportunity for us. Given Realm had to sell, we were very focused on building a sustainable business. This meant though more focus on enterprise and specific use-cases than going wide to all developers (you can see how well that worked with Firebase, Parse, and many other developer products when you have VC backing). This means we have a solid foundation technically (large-scale deployments in mission critical systems) to now handle wider awareness. Mongo will really help us bring the awareness of Ditto.<p>3. Right now candidly our permission system is nascent compared to Atlas - a webhook fires from Ditto to allow you to integrate into external identity systems and apply permissions. The focus with enterprise meant we targeted use-cases that didn't have too much dynamism in their permissions and data models, so you will find our system naive comparatively. This is a top priority where we will be adding built-in dynamic permission functionality that is similar to Device Sync later this year. You can read more on our system here: <a href="https://docs.ditto.live/auth-and-authorization/data-authorization" rel="nofollow">https://docs.ditto.live/auth-and-authorization/data-authoriz...</a></p>
]]></description><pubDate>Fri, 13 Sep 2024 20:04:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=41534624</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=41534624</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41534624</guid></item><item><title><![CDATA[New comment by bigfish24 in "MongoDB deprecates Atlas Device sync"]]></title><description><![CDATA[
<p>Yeah the client has to serialize/deserialize - think of the DB as a mini Mongo where you insert JSON into collections as the mental model. Reason for this is that in our experience, sync is easier when the system is schema-less because the nature of the system ties folks across teams, so this means the schema tends to live above each individual client (iOS, Android, backend, etc and in larger orgs those are each separate teams). Furthermore, advances such as Codable in Swift and other patterns means client devs are fairly used to handling this with JSON/REST patterns anyway.<p>More similar is that Ditto uses a query-based sync approach - this was an area I am particularly passionate about and helped push at Realm. The challenge with this vs. strict channels is then scalability of the backend system - but we have solved these scalability challenges in several ways.<p>Most prominently, internally Ditto works different than at least my understanding of how Realm Sync worked originally (it might have evolved more under Mongo). We use CRDTs to handle the conflict resolution, so any JSON inserted into Ditto, ends up being a nested CRDT structure on disk. This enables the same predictive conflict resolution, but its a crucial trade off compared to other approaches.<p>First, CRDTs enable P2P sync where no server is needed to mediate the system. This opens up use-cases that Ditto powers where mobile devices sync over Bluetooth and P2P WiFi even without a device accessing the internet. Furthermore, it also opens up more scalability on the backend because the server nodes themselves can communicate P2P.<p>At a more fundamental level this is a trade off of using extra metadata (CRDTs include more context like version vectors and such to know how to merge with each other) compared to Realm's original approach of Operational Transformation which is an algorithmic approach. We felt that the metadata approach was holistically better because of the access to new use-cases and scalability meanwhile there are clever ways to make the metadata cost not a real-world issue (i.e. compression in various ways). Conversely, the algorithmic approach is limited to a client server architecture and has computational scalability issues.<p>All in all, we are very sympathetic to transition costs, but are confident folks will find Ditto can meet the same and more capabilities in Device Sync. Our current challenge is going to be introducing a pricing scheme to support the broader set of Mongo users. To date, we have been very focused on larger enterprise deployments (gotta ensure the bills are paid!) so we will be creative to ensure anyone transitioning is not affected by pricing if they like us!</p>
]]></description><pubDate>Mon, 09 Sep 2024 17:46:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=41491252</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=41491252</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41491252</guid></item><item><title><![CDATA[New comment by bigfish24 in "MongoDB deprecates Atlas Device sync"]]></title><description><![CDATA[
<p>Adam (CEO of Ditto) here, Mongo is transitioning to a partner-first strategy for mobile and edge applications. We are working closely with Mongo to create a cohesive product experience between Ditto and Mongo Atlas. High-level that is a supported bidirectional connector between Atlas and Ditto's Edge Sync platform.<p>Furthermore, we are working with customers of Atlas Device Sync to help and support them in the transition. There are aspects of Ditto different than Realm - most prominent is that we are schema-less. This will mean some client-side code transition, but longer-term a tighter alignment with Mongo Atlas. We are excited as well to introduce more to Ditto's unique capability of P2P device sync.<p>Note, I previously worked at Realm before the Mongo acquisition and even before joining the team I was an avid fan of the database. I hope it continues life via the community!<p>Would love anyone to give Ditto a try, you can sign up for free here: <a href="https://portal.ditto.live/" rel="nofollow">https://portal.ditto.live/</a></p>
]]></description><pubDate>Mon, 09 Sep 2024 17:22:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=41490934</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=41490934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41490934</guid></item><item><title><![CDATA[New comment by bigfish24 in "Mobile and Edge Solutions with MongoDB and Ditto"]]></title><description><![CDATA[
<p>Adam (CEO of Ditto) here, happy to answer any questions! Really excited about this partnership and the potential to combine our unique P2P capability (powered by CRDTs) with Mongo Atlas.<p>Our belief is that edge devices are super computers that shouldn't be treated as dumb clients. These devices can store data, perform advanced computation, and connect to each other directly - which is what Ditto enables.<p>This doesn't mean the cloud is going anywhere, centralized systems still play a major role, especially in large scale AI workloads (where Mongo's vector search means you don't need other tools). However, the cloud is not guaranteed from connectivity failures to backends issues (like CrowdStrike outages).<p>Ditto + Mongo means you can build resilient applications that leverage the best of the edge and cloud!</p>
]]></description><pubDate>Tue, 03 Sep 2024 22:45:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=41440078</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=41440078</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41440078</guid></item><item><title><![CDATA[A Background-Proof Guide on AI]]></title><description><![CDATA[
<p>Article URL: <a href="https://irrationalanalysis.substack.com/p/a-background-proof-guide-on-ai">https://irrationalanalysis.substack.com/p/a-background-proof-guide-on-ai</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41295605">https://news.ycombinator.com/item?id=41295605</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 20 Aug 2024 00:11:49 +0000</pubDate><link>https://irrationalanalysis.substack.com/p/a-background-proof-guide-on-ai</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=41295605</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41295605</guid></item><item><title><![CDATA[Bridging React Native and Rust via JSI]]></title><description><![CDATA[
<p>Article URL: <a href="https://ditto.live/blog/bridging-react-native-and-rust-via-jsi">https://ditto.live/blog/bridging-react-native-and-rust-via-jsi</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=40686909">https://news.ycombinator.com/item?id=40686909</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Sat, 15 Jun 2024 01:58:51 +0000</pubDate><link>https://ditto.live/blog/bridging-react-native-and-rust-via-jsi</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=40686909</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40686909</guid></item><item><title><![CDATA[Running a React Web App in an Android App]]></title><description><![CDATA[
<p>Article URL: <a href="https://ditto.live/blog/run-react-locally-in-android">https://ditto.live/blog/run-react-locally-in-android</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=38917164">https://news.ycombinator.com/item?id=38917164</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 08 Jan 2024 19:54:01 +0000</pubDate><link>https://ditto.live/blog/run-react-locally-in-android</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=38917164</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=38917164</guid></item><item><title><![CDATA[Why Not Rust Crypto?]]></title><description><![CDATA[
<p>Article URL: <a href="https://briansmith.org/why-not-rustcrypto">https://briansmith.org/why-not-rustcrypto</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=37652990">https://news.ycombinator.com/item?id=37652990</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 26 Sep 2023 01:04:44 +0000</pubDate><link>https://briansmith.org/why-not-rustcrypto</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37652990</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37652990</guid></item><item><title><![CDATA[On the Future of Cloud Services and BYOC]]></title><description><![CDATA[
<p>Article URL: <a href="https://jack-vanlightly.com/blog/2023/9/25/on-the-future-of-cloud-services-and-byoc">https://jack-vanlightly.com/blog/2023/9/25/on-the-future-of-cloud-services-and-byoc</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=37652966">https://news.ycombinator.com/item?id=37652966</a></p>
<p>Points: 3</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 26 Sep 2023 00:59:32 +0000</pubDate><link>https://jack-vanlightly.com/blog/2023/9/25/on-the-future-of-cloud-services-and-byoc</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37652966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37652966</guid></item><item><title><![CDATA[New comment by bigfish24 in "Some notes on local-first development"]]></title><description><![CDATA[
<p>Query-based sync to partially replicate is an absolute must. This was a key feature with Ditto: <a href="https://www.ditto.live" rel="nofollow noreferrer">https://www.ditto.live</a></p>
]]></description><pubDate>Thu, 14 Sep 2023 04:31:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=37504997</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37504997</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37504997</guid></item><item><title><![CDATA[SQLite: Past, Present, and Future [pdf]]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.vldb.org/pvldb/vol15/p3535-gaffney.pdf">https://www.vldb.org/pvldb/vol15/p3535-gaffney.pdf</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=37381628">https://news.ycombinator.com/item?id=37381628</a></p>
<p>Points: 7</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 04 Sep 2023 15:49:20 +0000</pubDate><link>https://www.vldb.org/pvldb/vol15/p3535-gaffney.pdf</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37381628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37381628</guid></item><item><title><![CDATA[New comment by bigfish24 in "Rust Cryptography Should Be Written in Rust"]]></title><description><![CDATA[
<p>All of our core code is Rust and even in web backend and k8s tooling at <a href="http://www.ditto.live" rel="nofollow noreferrer">http://www.ditto.live</a><p>Been a great choice even with trade offs like needing to train some hires and compilation speeds.</p>
]]></description><pubDate>Sat, 26 Aug 2023 18:30:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=37275547</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37275547</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37275547</guid></item><item><title><![CDATA[Rust Cryptography Should Be Written in Rust]]></title><description><![CDATA[
<p>Article URL: <a href="https://briansmith.org/rust-cryptography-should-be-written-in-rust-01">https://briansmith.org/rust-cryptography-should-be-written-in-rust-01</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=37273701">https://news.ycombinator.com/item?id=37273701</a></p>
<p>Points: 116</p>
<p># Comments: 105</p>
]]></description><pubDate>Sat, 26 Aug 2023 15:23:08 +0000</pubDate><link>https://briansmith.org/rust-cryptography-should-be-written-in-rust-01</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=37273701</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37273701</guid></item><item><title><![CDATA[New comment by bigfish24 in "FoundationDB: A Distributed Key-Value Store"]]></title><description><![CDATA[
<p>Do you know the paper for Atlas?</p>
]]></description><pubDate>Mon, 03 Jul 2023 19:28:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=36577704</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=36577704</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36577704</guid></item><item><title><![CDATA[Getting Started with Bluetooth File Sync]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.ditto.live/blog/getting-started-with-bluetooth-file-sync">https://www.ditto.live/blog/getting-started-with-bluetooth-file-sync</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=36510651">https://news.ycombinator.com/item?id=36510651</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Wed, 28 Jun 2023 18:38:48 +0000</pubDate><link>https://www.ditto.live/blog/getting-started-with-bluetooth-file-sync</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=36510651</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=36510651</guid></item><item><title><![CDATA[New comment by bigfish24 in "Getting Started with Core Bluetooth"]]></title><description><![CDATA[
<p>In-depth getting started guide to understanding Apple’s Core Bluetooth APIs</p>
]]></description><pubDate>Sun, 14 May 2023 04:28:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=35935316</link><dc:creator>bigfish24</dc:creator><comments>https://news.ycombinator.com/item?id=35935316</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=35935316</guid></item></channel></rss>