Posts

Hello world !

 The story of "Hello, World!" is deeply tied to the history of programming and computer science education. Here's a quick rundown of its origins and significance: 1. Origins in Early Programming The phrase "Hello, World!" first appeared in programming literature in the 1970s. It was popularized by Brian Kernighan in his book The C Programming Language (1978), co-authored with Dennis Ritchie , the creator of the C language. However, Kernighan had already used it in an earlier 1972 internal Bell Labs tutorial for the B programming language, a precursor to C. The first recorded "Hello, World!" example in B looked like this: main() { printf("hello, world\n"); } 2. Why "Hello, World!"? Simplicity : It's a small, easy-to-understand program that demonstrates basic syntax. Testing : It's often the first thing programmers write when learning a new language. Debugging : It ensures that the compiler and en...

Generative Recommenders: Foundations, Engineering, and a Path to Production

Image
Generative Recommenders: Foundations, Engineering, and a Path to Production Machine Learning · Recommender Systems Generative Recommenders: Foundations, Engineering, and a Path to Production How Hierarchical Sequential Transduction Units (HSTU) turn recommendation into sequential transduction — trillion-parameter models, 15x faster training, up to 285x more FLOPs served at similar latency — and what it takes to actually run this in production. 1.5T params in production GR 12.4% online metric lift (E-Task) 15.2x faster training vs. FlashAttention-2 Transformers 285x more FLOPs served at 1.5–3x QPS Most recommendation systems in production today are Deep Learning Recommendation Models — DLRMs. They are the workhorse behind a decade of progress: YouTube DNN, Wide&Deep, DIN, DCN, DHEN. And they share a quiet, structural problem: they scale with data, not with compute. Throw more GPUs at a DLRM and, past a point, nothing happens. Quality plateaus. The pape...

Understanding Google Cloud IAM, with a step-by-step gcloud walkthrough

Image