HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ajitsing

no profile record

投稿

[untitled]

1 ポイント·投稿者 ajitsing·19 日前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·25 日前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·先月·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·2 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·3 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·4 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·4 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·5 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·5 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·5 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·5 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·5 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·6 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·7 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·7 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·7 か月前·0 コメント

[untitled]

1 ポイント·投稿者 ajitsing·7 か月前·0 コメント

コメント

ajitsing
·先月·議論
[flagged]
ajitsing
·5 か月前·議論
I built a free, privacy-friendly QR code generator that runs entirely in the browser. Supports URLs, text, email, phone, and WiFi. Customize colors, sizes, and error correction levels. Download as PNG or SVG. No signup, no tracking, no server-side processing.
ajitsing
·5 か月前·議論
Gossip protocol (also called epidemic protocol) is a decentralized communication pattern where nodes share information by randomly selecting peers and exchanging state at regular intervals. Each node picks a small number of random peers (typically 1 to 3) every second and shares its view of the cluster. Information spreads exponentially, reaching all nodes in O(log N) rounds. It is used for cluster membership, failure detection, and state propagation in systems like Cassandra, Consul, and DynamoDB.
ajitsing
·5 か月前·議論
Complete breakdown of X's open source recommendation algorithm. Learn how the For You feed works, including the Grok-based transformer model, candidate pipeline architecture, and real-world lessons for building recommendation systems at scale
ajitsing
·6 か月前·議論
Hi, it's written by me. Thanks a bunch for sharing, I am glad you found it useful.
ajitsing
·6 か月前·議論
Built a regex tester that explains what each part of your pattern does. Shows matches in real-time, visualizes capture groups, and runs 100% client-side (nothing sent to servers). Includes a cheat sheet and common pattern examples. Free, no signup.
ajitsing
·6 か月前·議論
Explains Snowflake IDs—the 64-bit distributed ID system used by Twitter, Discord, and Instagram. Includes the bit structure breakdown, code examples for extracting timestamps, Java implementation, and database performance comparisons with UUIDs.
ajitsing
·6 か月前·議論
Reference guide for all 23 GoF patterns. Includes decision trees for pattern selection and examples from Java SDK, Spring, and Android.
ajitsing
·6 か月前·議論
Covers: - The quorum formula (floor(N/2) + 1) - Why W + R > N guarantees consistency - Real examples from Cassandra, ZooKeeper, etcd - How quorum prevents split-brain during network partitions - The tradeoffs between read and write quorums
ajitsing
·7 か月前·議論
Key points covered: - How SSE works over plain HTTP (no protocol upgrade needed) - The EventSource API's built-in auto-reconnect with Last-Event-ID - Real implementations: Node.js server, scaling with Redis Pub/Sub - Common pitfalls: proxy buffering, connection limits, memory leaks - When to choose SSE vs WebSockets vs Long Polling

The auto-reconnection feature is the killer - browser automatically resends Last-Event-ID header so your server can resume the stream without missing events. No manual implementation needed.

Working code examples included. Happy to answer questions about production deployments.
ajitsing
·7 か月前·議論
Covers: - How long polling actually works under the hood - The timeout dance (browser limits, proxy limits) - Common pitfalls: connection starvation, thundering herd, memory leaks - Scaling with Redis Pub/Sub - When to use it vs WebSockets vs SSE
ajitsing
·7 か月前·議論
how a stock price travels from exchange to your phone. ticker plants, Kafka fan-out, WebSocket scaling to 100K connections per server.
ajitsing
·7 か月前·議論
Internal documents seen by Bloomberg and SourceMaterial reveal AWS uses a mix of large campuses and colocation sites to rapidly scale without building new facilities. Also covered: Canon ransomware via Oracle zero-day (CVE-2025-61882), Meta negotiating to buy Google TPUs, and White House Genesis Mission combining AI + quantum computing.
ajitsing
·8 か月前·議論
Weekly dev news roundup: TypeScript compiler rewritten in Go (10x faster), .NET 10 LTS ships with major performance gains, Python 3.14 released with free-threaded execution, React Native critical vulnerability affects 2M projects, and Microsoft announces $10B AI infrastructure investment in Portugal.
ajitsing
·8 か月前·議論
Deep dive into failure detection patterns used by Kubernetes, Cassandra, HAProxy, and etcd. Covers the math behind timeout calculations, Phi Accrual failure detection, and preventing split brain scenarios. Includes sequence diagrams for each pattern.