Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. IBM: First Modular Cryogenic Systems in Milestone Toward Fault-Tolerant(ibm.com)
    discuss
  2. Show HN: Praxos – Multiplayer AI(praxos.ai)
    discuss
  3. European Commission Reaches Agreement(ox.ac.uk)
    discuss
  4. Jev is an honest game changer(benbrady.dev)
    2comments
  5. Ask HN: Dead Internet
    4comments
  6. Floci: Local AWS Emulator for Development, Testing, and CI(github.com/floci-io)
    discuss
  7. The Real-Time Volumetric Cloudscapes of Horizon – Zero Dawn(drive.google.com)
    discuss
  8. Why So Much Money on "AI"?(rosshartshorn.net)
    1comments
  9. What Palantir Actually Does(thediff.co)
    discuss
  10. A tiny macOS menu bar app that keeps your Mac awake with the lid closed(github.com/archestra-ai)
    discuss
  11. Strands harness: frontier performance with 28% lower token cost(strandsagents.com)
    discuss
  12. Accumulated Variance(vibingarcologies.substack.com)
    discuss
  13. Lasso: AI Watermarks Change How Agents Act(techstrong.ai)
    discuss
  14. Show HN: WebGCM – a global climate model running in the browser on WebGPU(echorelay.net)
    discuss
  15. Lisse: Squircle JavaScript Library(corne.rs)
    discuss
  16. Splitt – Group expense splitting, settle-up, no caps (iOS)(splitt.cash)
    discuss
  17. Synthesia Interactive Avatar API(synthesia.io)
    discuss
  18. The Internet (1997 – 2021)(opte.org)
    1comments
  19. Show HN: A Self-hosted Deferred Deep linking. Firebase dynamic link model(github.com/newtdev)
    1comments
  20. Gold Steadies as Traders Weigh Inflation and Fed Hike Outlook(coinmarketcap.com)
    discuss
  21. Teen Autopsy Marks Arrival of Deadly Drug Cychlorphine in San Francisco(nytimes.com)
    1comments
  22. A Kansas girl ran off to join the circus and changed the tattoo world(npr.org)
    discuss
  23. 'Epigenetic' editing banishes hepatitis B virus(nature.com)
    discuss
  24. Fly.io 2026 Pricing Update(fly.io)
    discuss
  25. macOS 26.4 silently enabled login keychain data protection(lapcatsoftware.com)
    discuss
  26. Google CC, an AI agent built for families(blog.google)
    discuss
  27. Ask HN: Why does it matter if no one reads your novel as long as the AIs do?
    15comments
  28. IA Agent Arthur – Developed an OfflineAIagent(x.com)
    discuss
  29. Building Software That Can Prove Agents Wrong(rafael.md)
    discuss
  30. vLLM Architecture, Memory and Benchmarks Deep Dive(g-ftech.com)
    discuss

Show HN: A Self-hosted Deferred Deep linking. Firebase dynamic link model

1 pointsby 43m agogithub.com
1 comments
42m agoHN ↗

Sometime around December 2025, I was tasked to build a referral system for Sparkle Nigeria(MFB). The referral system allows user to share their referral link with a code embedded in it and once the app is installed the code is retrieved and auto populated. The classic deferred deep linking! The solution, of course, Firebase dynamic link as been deprecated. Branch and Appflyer were an overkill. So I decided to build Blynk deferred link- a self-hosted deferred half of FDL.

The two main approach: Deterministic and Probabilistic(fallback)

Android: Play install referrer,100% Deterministic. iOS: Clipboard hand-off via UIPasteControl, 100% Deterministic, but needs a user tap- Apple won't let you read the clipboard silently.

Fallback(Probabilistic): a scored fingerprint match (IP,device model, screen, timezone, language, recency) against recent clicks. ~85-90% on iOS.

I included a doc/decisions.md file and comprehensive readMe file. The decision.md contains all the decisions made during development, with links to researched articles.

Blynk deferred link is running in production at sparkle.ng. I also included a demo to help developer understand how Blynk deferred link works.