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...DiscussJava
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...DiscussJava
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...Discusstyped
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...Discuss·1 like·45 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...Saeed Ramezani and 3 others are discussing this4 people are discussing thisDiscuss·31 likes·905 readsPython GenericsGreat article on generic typing, presented in a simple and user-friendly format. Thank you, Sadra, for preparing this! 11
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...Discussswift 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...DiscussKubernetes
abhishek kumaraksilearntocoder.hashnode.dev·Aug 26, 2024Learn C# with OOPS Concept(Static Constructor, ways to return values by a function/method)-Part-4Static Constructor First of all let's elaborate basics about static constructor that all programmers must have:- static constructor does not have arguments or parameters. static constructor does not have return type. Due to above points static con...Discussstatic constructor
Ganesh Rama Hegdedesignpatterns.hashnode.dev·Aug 24, 2024Open/Closed Principle (OCP)The definition of OCP that I had mentioned in this blog is this: Software entities (classes, functions, modules, or methods) should be open for extension but closed for modification. This allows you to add new functionality without changing existing ...Discuss·1 likeTypeScript
Callme-Miladitz-amethyst.hashnode.dev·Aug 17, 2024Optimizing Database Tables with Generics: Python and SQLAlchemy ApproachIt's not always shortened to types, but indeed we can use this method to optimize our tables. In this article, we'll follow the structure of benefiting from generics in models. Tech used in this article: Python FastAPI PostgreSQL SQLAlchemy Wit...DiscussFastAPI