Nishant Banjadeblog.nishantbanjade.com.np·Dec 15, 2024Mastering C# Part 4 GenericsGenerics Generics in C# are a fundamental feature that enhances code reusability, type safety, and performance. By allowing developers to define classes, methods, and interfaces with type parameters, generics facilitate the creation of flexible and m...69 readsC#
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 14, 2024Generic collections part 2: Stack and QueueStack A Stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. It's like a stack of plates: the last plate you put on is the first one you take off. Key Operations: Push: Adds an element to the top of the stack. Pop: ...C#
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Collections General OverviewThings become better to work when everything is organized. Same applicable while coding, we want to keep data organized. We can achieve this using Collections C# provides a rich set of collection classes to store and manage groups of objects efficien...non generic
Jyotiprakash Mishrablog.jyotiprakash.org·Nov 26, 2024Generics in JavaImagine walking into a warehouse with boxes piled high, each labeled with vague descriptions like "Miscellaneous." You open one to find screws, another to find bolts, and yet another to find a tangle of wires. Without precise labels, the task of sort...43 readsJava
Maheshwar Ligadefortechwastitechwasti.com·Nov 22, 2024In-Depth Guide for Interview Questions on Generics in Java with Programming Examples.Generics in Java are a powerful feature that allows you to write more flexible, reusable, and type-safe code. Understanding generics is essential for both Java developers and for cracking interviews, as they are a common topic in technical discussion...Java
Pawan Gangwaniblogs.pgangwani.co.in·Nov 12, 2024TypeScript in React: A Practical Guide to Better CodeIf you've been working with React and want to level up your development experience, TypeScript is your next best friend. In this guide, we'll explore how to effectively use TypeScript in React projects, from basic setup to advanced patterns. Why Type...typed
Mihai Olteanblog.mihaioltean.com·Nov 8, 2024Typescript stories - Generics vs Union typesThis will be a quick and more “back-to-basics” kind of article. While doing some small refactoring, I stumbled across a situation where I had to pass an object, but the shape of the object is completely different depending on the component using that...1 like·62 readsTypeScript
Sadra Yahyapourblog.imsadra.me·Nov 3, 2024FeaturedGeneric Typing in PythonSince Python introduced the ability to add generic types to functions, the language has become much more type-friendly and encourages you to follow this convention for more maintainable code. Obviously, this will lead to a better development experien...31 likes·980 readsPython Generics
DAMIAN ROBINSONwww.damianrobinson.online·Oct 20, 2024Generics In SwiftSupercharging Your Code Imagine you're writing a function or struct that works for any type, not just Int or String. That's where generics come into play. It's like giving your code superpowers to handle all sorts of types in a clean, reusable way, w...Programmingswift generics
linhbqforSRE Tribeblogs.sretribe.net·Sep 18, 2024Kubernetes Generic Device PluginThe generic-device-plugin enables allocating generic Linux devices, such as serial devices, the FUSE device, or video cameras, to Kubernetes Pods. This allows devices that don't require special drivers to be advertised to the cluster and scheduled, e...Kubernetes