VPVed Pandeyinvedpandeydev.hashnode.dev·3d ago · 16 min readMasterclass on TypeScriptIf JavaScript works, why was TypeScript created? Today we'll answer exactly that, and along the way we'll understand how types work, why interfaces and generics exist, and how a TypeScript project run10
SPSaurabh Prajapatiinblog.thitainfo.com·Aug 8 · 19 min readMastering TypeScript: Interfaces, Generics, and Union Types ExplainedMastering TypeScript: Interfaces, Generics, and Union Types Explained TL;DR: TypeScript adds a compile-time type system on top of JavaScript that catches entire classes of bugs before your code ships00
SPSaurabh Prajapatiinblog.thitainfo.com·Aug 8 · 19 min readMastering TypeScript: Interfaces, Generics, and Union Types ExplainedMastering TypeScript: Interfaces, Generics, and Union Types Explained TL;DR: TypeScript adds a compile-time type system on top of JavaScript that catches entire classes of bugs before your code ships00
KSKanishka Shashiinhtml-dev09.hashnode.dev·Jul 2 · 16 min readMastering TypeScript: Interfaces, Generics, and Unions ExplainedIf JavaScript Works, Why Was TypeScript Created? Here's a question worth sitting with: JavaScript runs the entire web. It powers billion-dollar companies, complex applications, and everything in betwe10
CDCoding Dropletsincodingdroplets.com·Jun 17 · 15 min readC# Collections and Generics Interview Questions for Senior .NET Developers (2026)Senior .NET developers are expected to go beyond knowing which collection type exists — interviewers want to understand whether you can reason about trade-offs under pressure: thread safety, allocatio00
HGHarrison Guoinharrisonsec.hashnode.dev·Apr 20 · 8 min readGo Generics, One Year In: Which Promises Held, Which Didn'tGo 1.18 shipped generics in March 2022. The two years before that were dominated by hopeful blog posts ("finally, a real type system!") and the two years after by the predictable backlash ("why did we even bother, Go was simpler"). I've written produ...00
Aanhinblog.anh.sh·Apr 7 · 9 min readWhy (and How) I Built a Go AI SDKGoAI, a Go (Golang) LLM library: 22+ providers, 2 dependencies, type-safe generics. v0.6.1, Go 1.25+. I built it to learn Go by adding AI to infrastructure that already runs on Go. The Go AI SDK lan00
MYMuhammad Yafi Alhakiminyafi.hashnode.dev·Apr 7 · 2 min readGenerics: The "Template Contract"If you are a frontend developer coming from TypeScript, you actually already understand the core concept of Generics in Rust! They solve the exact same problem in both languages: writing reusable code that handles multiple types without sacrificing s...00
TITech Insights Hubintopperblog.hashnode.dev·Feb 12 · 10 min readTypeScript Generics: Advanced Type ConstraintsWhy Basic Generic Constraints Fail in Modern TypeScript Applications Traditional generic constraints using simple extends clauses work adequately for straightforward scenarios—a generic function that accepts any object, or a utility type that operate...00
MAMd Asif Alaminmeasifalam.com·Feb 7 · 4 min readC# Generics: Complete Guide to Generic Classes, Parameters, Constraints, and MethodsIntroduction Generics are one of the most powerful features in C#. They enable you to design type-safe, reusable, and high-performance code by introducing placeholders for data types. This comprehensive guide covers everything from basic generic clas...00