Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. I Don't Want to Read What You Didn't Write(colinbreck.com)
    discuss
  2. Turn your Mac notch into an arcade(notcharcade.com)
    discuss
  3. Trump TV: The Essentials Station [video](youtube.com)
    discuss
  4. A Call for Control of Frontier AI Models(presidentti.fi)
    discuss
  5. Almost started a war: Report reveals dark reality as AI permeates civilisation(news.com.au)
    discuss
  6. Show HN: Laya decision engine on AWS Lambda, backed by Lambda SnapStart(github.com/hqarroum)
    discuss
  7. Newly Discovered Neo 2026SC Will Improve Orbital Refinement Education(astrophyzix.com)
    discuss
  8. Igalia Celebrates "Twenty-Five Years Upstream"(lwn.net)
    discuss
  9. How to talk about "AI" without adding to the anthropomorphization(buttondown.com/maiht3k)
    discuss
  10. Unattended 24hr Full-Stack Build: Qwen 3.8 27B on a Single RTX 5090(github.com/anglepoiselife)
    discuss
  11. Information is Matter is Energy
    1comments
  12. Show HN: SoTA Feed – Every open-weights release from the labs that matter(borgcloud.ai)
    discuss
  13. Solitaire Alone Together(solitairealonetogether.com)
    discuss
  14. Child Welfare Technology System Shows Minimal Progress After 10 Years and $2B(hhs.gov)
    discuss
  15. Show HN: Fast inference for deep seek flash v4.1 469 tok/s for coding(coralbricks.ai)
    3comments
  16. Pirate IPTV Operators Face $32.7M Judgment, Self-Expanding Blocking Injunction(torrentfreak.com)
    discuss
  17. What 218,146 Upcoming Events Say About the American Taproom(beer.social)
    discuss
  18. I'm addicted to buying domains for my vibe-coded apps that get 0 visitors
    2comments
  19. The CZP-1 (Phase distortion synthesizer)(ambionix.com)
    discuss
  20. How high is current immigration to the United States in historical perspective?(ourworldindata.org)
    discuss
  21. Back to Coupling and Cohesion(bastrich.tech)
    discuss
  22. Learn UI(learn-ui.com)
    discuss
  23. Vdura Sentinel: Storage Support Opens Service Request Before Customer Sees Fault(radicaldatascience.wpcomstaging.com)
    discuss
  24. British Museum bans visitors from photographing Bayeux Tapestry(bbc.com)
    1comments
  25. Wanix – WASM-native Unix sandboxing for the web(wanix.dev)
    discuss
  26. A Colab sandbox for exploring the Drosophila connectome(drive.google.com)
    1comments
  27. Let AI agents search across workspace with the Universal Search MCP Server(developers.google.com)
    discuss
  28. Cargo Ship Tourism Voyages(cnn.com)
    discuss
  29. The Small Car Is Disappearing in America(worldofsystems.co)
    2comments
  30. What's a 'wellness darty'? Gen Z's latest college party trend(mashable.com)
    1comments

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

1 pointsby 1h agogithub.com
1 comments
1h 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.