Posts

Showing posts with the label httparchive

WebAssembly #HttpArchive #Almanac

Image
💭 It is interesting to learn 🤔 how humans have been using technologies !! The Team of HttpArchive use to release such reports on interesting technology topics such as CSS, WebAssembly, ChatBot, Javascript, PWA Progressive Web Application and many other technologies. The Web Almanac is a comprehensive report on the state of the web, backed by real data and trusted web experts. The 2025 edition is comprised of 15 chapters spanning aspects of page content, user experience, publishing, and distribution. I got opportunity to work with the team of excellence of HttpArchive on Web Assembly Report 2025. Here are couple of analysis on various language adoption, to ready more visit here WebAssembly can be developed using various languages, including C++, C#, and Ruby. With the introduction of Wasm 3.0, the range of supported languages has extended to include examples such as Java, Scala, Kotlin, and Dart. In this section, we provide an overview of the languages used to devel...

Exceptions should be hardly used in exception : Inner Voice #Microsoft #Core #Pipeline

Image
Exceptions are fully asynchronous and nested but extremely expensive, even more expensive than usual when they are in the ASP.Net Core Pipelines. Microsoft Performance Team had raised this concern for high scale services long back, To improve performances sharing couple of key points when developing with .net core Async Void Methods: Using async void in ASP.NET Core is considered a bad practice because unhandled exceptions thrown from these methods will crash the entire process. It is recommended to use Task-returning methods instead. HttpContext Usage: Accessing HttpContext from multiple threads in parallel, storing it in a field, or using it after the request is complete can lead to NullReferenceException or other issues because it is not thread-safe and is disposed after the request pipeline ends. Exception Handling Middleware: The built-in UseExceptionHandler middleware is designed to catch exceptions early in the pipeline. It cannot handle exceptions if the respons...

Popular posts from this blog

Ohh It is digital transformation, .. Really ?

Respect is not earned, It is given ⚘ 🙏

Exceptions should be hardly used in exception : Inner Voice #Microsoft #Core #Pipeline

Need > Want