frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Many businesses using AI to save time, but do they know what they're doing?

https://www.rnz.co.nz/news/business/874814/many-businesses-using-ai-to-save-time-but-do-they-know...
3•billybuckwheat•1m ago•0 comments

Business Impersonation Fraud: When Trust Is the Target

https://medium.com/@alanscottencinas/business-impersonation-fraud-when-trust-is-the-target-1f4882...
1•encinas88•1m ago•0 comments

Mind the Gap: Policy vs. Reality in Post-Quantum TLS Deployment

https://arxiv.org/abs/2607.29005
1•sbulaev•1m ago•0 comments

OpenAI's Unreleased Model Astra Solves Ten Major Open Mathematics Problems

https://thezvi.substack.com/p/openais-unreleased-model-astra-solves
1•7777777phil•2m ago•0 comments

Run your agent's code where the LLM, TTS, and calls run

https://microsite-actor-demo-cfca6e9d-3.telnyxcompute.com/
1•fionaattelnyx•5m ago•1 comments

The Vietnam of Computer Science (2006) [pdf]

https://www.odbms.org/wp-content/uploads/2013/11/031.01-Neward-The-Vietnam-of-Computer-Science-Ju...
1•Tomte•8m ago•0 comments

Castlemap – Guess the Castle Game

https://thecastlemap.com/guess/
1•Flightmussy•10m ago•1 comments

Submillisecond

https://www.submillisecond.com/
1•knaier•10m ago•0 comments

Apple challenges UK government's latest demand for iCloud backdoor: report

https://techcrunch.com/2026/08/03/apple-challenges-uk-governments-latest-demand-for-icloud-backdo...
1•speckx•10m ago•0 comments

KisakCOD – open-source reimplementation of Call of Duty 4 Multiplayer

https://github.com/SwagSoftware/KisakCOD
1•skibz•11m ago•0 comments

Further Developments About Internal AI Models Hacking Things

https://thezvi.substack.com/p/further-developments-about-internal
1•paulpauper•11m ago•0 comments

The One Town That Wants a Data Center

https://www.theatlantic.com/technology/2026/08/jay-maine-wants-data-center/688043/
1•paulpauper•11m ago•0 comments

Show HN: City-wise comparison of Bribes across India – bribes.fyi

https://bribes.fyi/cities
1•neverenderr•11m ago•0 comments

Kimi K3 Built the Game. I Still Had to Play It

https://www.drjoshcsimmons.com/writing/kimi-k3-built-the-game-i-still-had-to-play-it
1•joshcsimmons•11m ago•0 comments

The hallmarks of protein and amino acid restriction in aging and longevity

https://www.cell.com/cell-press-blue/fulltext/S3051-3839(26)00077-0
1•simonebrunozzi•15m ago•0 comments

Sure mate, buy me a bloody coffee

https://peateasea.de/sure-mate-buy-me-a-bloody-coffee/
1•speckx•17m ago•0 comments

The AI Bailout Could Be Baked into the AI Bubble

https://prospect.org/2026/08/03/ai-bailout-could-be-baked-into-bubble-private-equity-life-insurer...
3•Ambolia•17m ago•0 comments

Rust Project goals 2026: Reflection and Comptime

https://github.com/rust-lang/rust-project-goals/blob/main/src/2026/reflection-and-comptime.md
1•Ygg2•18m ago•1 comments

How Many People Are in Space Right Now

https://www.howmanypeopleareinspacerightnow.com/
3•EndXA•19m ago•0 comments

"Shock from Jensen Huang's Bubble Will Be Severe"

https://news.sbs.co.kr/english/article.do?news_id=N1008688017
2•mapping365•19m ago•0 comments

Why Everything Is Getting Louder

https://www.theatlantic.com/magazine/archive/2019/11/the-end-of-silence/598366/
1•bookofjoe•20m ago•1 comments

SEC Semi-Annual Reporting Proposal Tracker

https://tzachizach.github.io/sec-semi-annual-proposal-tracker/letters.html
1•petethomas•21m ago•0 comments

HedgeHog: The new standard in backgammon analysis

https://hedgehog-bg.com/frontpage
2•twright•21m ago•0 comments

Games of FIFA World Cup 2026

https://siddhesh.substack.com/p/wc26
1•weekendvampire•21m ago•0 comments

Wall Street's bulls are starting to admit the earnings bubble is real

https://fortune.com/2026/08/03/60-40-investing-strategy-broken-earnings-bubble-big-tech-goldman-a...
2•mapping365•22m ago•0 comments

Code, craft, and the making of nested folders

https://www.figma.com/blog/code-craft-and-the-making-of-nested-folders/
1•handfuloflight•25m ago•0 comments

What Trump's latest slump means for the midterms

https://www.natesilver.net/p/what-trumps-latest-slump-means-for
1•7777777phil•28m ago•0 comments

Show HN: Open-source book format for instant translations and Android app

https://tbook.dev/
1•adubovskoy•28m ago•1 comments

Two Have Died in the Cyclospora Outbreak. The Fifty-State Count Is Now 21,913

https://www.marlerblog.com/case-news/two-people-have-died-in-the-cyclospora-outbreak-the-fifty-st...
1•speckx•28m ago•0 comments

Set Theory Symbols

https://www.rapidtables.com/math/symbols/Set_Symbols.html
1•marysminefnuf•33m ago•0 comments
Open in hackernews

Show HN: Robinscan – A real-time block explorer for Robinhood Chain

https://robinscan.io
1•cdav•57m ago

Comments

cdav•9m ago
Hi HN, I'm one of the builders of Robinscan. Robinhood launched their own L2 (chain ID 4663, Arbitrum Orbit stack) and we built a dedicated block explorer for it. Not a Blockscout fork or wrapper. We own the full stack: node, indexer, explorer. All in Rust.

The node: robin-reth is our own Reth implementation customized for arbitrum. It exposes a bulk binary log stream (custom protocol, not JSON) that lets the price oracle scan the entire chain's DEX events in one pass instead of paginating eth_getLogs thousands of times. The node, the indexer and the explorer are released together , so no version mismatch possible.

The indexer: robin-rpc-source fetches blocks via standard JSON-RPC in batch and validates every field: transaction count matches receipt count, parent hashes chain correctly, every log belongs to its transaction and block. If anything doesn't match, the entire range is rejected. Most indexers trust the RPC; we own the RPC and still validate.

robin-index is the reverse index: It's 32 independently sharded LSM stores, each owning a disjoint slice of the keyspace. Keys store sort fields inverted so iteration is newest-first by default. A bulk builder uses external sorting with bounded memory for fresh index construction. The write path decodes ERC-20, ERC-721 and ERC-1155 (including batch transfers) and maintains holder balances incrementally. Some erc20 emit Transfer events without actually moving state. Four of this chain's fifty largest do exactly that, so we reconcile against on-chain balanceOf calls.

robin-indexer is the follower binary. Two-phase checkpoint commit: begin() writes pending state to disk, blocks are applied, commit() moves pending to committed. On crash, re-fetch and re-apply, verifying parent hash continuity. Staged publish writes to a .building sibling and renames atomically. robin-gateway (the explorer) maintains a sliding window of ~6M blocks locally with zstd compression (~7.5x on block bodies). It has a tx_hash→block_number index, a callTracer cache for internal transactions and a full-history per-address internal-transaction index. Serves a Blockscout-compatible API, forwards uncovered requests upstream.

robin-gecko is the price oracle. It builds a graph from swap events where each pool is an edge carrying price, depth and trailing volume. Prices are solved via BFS from a numeraire, with depth and volume floors. OHLCV candles at three resolutions. The price graph is two hash maps in memory, rebuilt from the log stream on boot. The bulk stream from our node is what makes that rebuild fast. robin-librarian resolves 4-byte selectors to method names. The interesting part is static bytecode analysis: walks EVM bytecode, extracts dispatched selectors by anchoring on the PUSH4+EQ+JUMPI pattern, recovers argument types, detects proxy patterns (EIP-1167/1967/1822). Also finds contracts with similar bytecode (Jaccard ≥0.9 on selector surface + shingle similarity) and borrows their ABIs. A curated table covers standard signatures. Rule: a guess never shadows a fact.

Will be open-sourcing the full stack at Robinscan's GitHub. Happy to go deeper on any part of it and always open to connecting with teams, integrations, or partnerships across the ecosystem.