infer in TypeScript
infer in TypeScript β itβs one of the most powerful(but sometimes confusing) features. π What is infer? The infer keyword…
ReturnType – Built-in utility types in Typescript
Example Expression in TypeScript : This is the built-in ReturnType type, redefined in its raw form. It extracts the return…
Built-in utility types in Typescript
Comprehensive list of built-in utility types in TypeScript with a brief descriptio and examples for each: TypeScript’s Built-in Utility Types…
Keyboard shortcuts
Fn + T, Wired mode Fn + A, win mode Fn + P, Wireless mode Fn + S, Mac Mode…
Hola mundo :)
soy el nuevo editor
Structs in C# .Net (dotnet)
Definition In C#, a struct (short for structure) is a value type used to encapsulate related data and behavior into…
Nice tools for linux otel and monitoring
Monitoring PostgreSQL services with Prometheus and Grafana involves using a PostgreSQL Exporter to expose metrics, configuring Prometheus to scrape these…
Access modifiers official documentation links
Virtual: https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/virtual static https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/static
Delegates: Func and Action in C# .Net Dotnet
Func and Action in C# Func and Action are generic delegates provided by .NET to simplify delegate usage. They save…
Events in C# .Net
Events in C# are a powerful mechanism for implementing the observer pattern, enabling a class (publisher) to notify other classes…