Author: Andreas Plahn
C# .NET – Generate error message when “async void” is used in code
The mentioned AsyncFixer extension and Nuget Package are super useful when dealing with async code. They both package a Roslyn analyzer that detects many async issues and provides an automatic fix for them as well in most cases. Using the .editorconfig in Visual Studio you can configure specific warnings as errors:
[*.cs] # AsyncFixer03: Fire-and-forget async-void methods or delegates dotnet_diagnostic.AsyncFixer03.severity = error
And you can set that straight from the Solution Explorer in case you’ve a
Source: c# – Generate error message when “async void” is used in code – Stack Overflow
MindMup – free mind map tool
Create and share mind maps
Capture ideas at the speed of thought – using a mind map maker designed to help you focus on your ideas and remove all the distractions while mindmapping. Create unlimited mind maps for free, and store them in the cloud.
Source: MindMup
Angular component testing – run only a certain browser and spec file command
To run component tests only for a certain browser and spec file use this command:
ng test --browsers=Chrome --include=**/detail.component.spec.ts
New Angular v17 feature: deferred loading – DEV Community
Angular 17 will be released in the beginning of November, and it has an exciting new feature called deferred loading (RFC).
www.angularaddicts.com/p/angular-17-feature-deferred-loading-with-signals
Apache Solr Search Engine: What you need to know
Apache Solr Search Engine: What you need to know
If you answered yes, most probably your first trial was to conduct a text-based search using the database query. However, it might work, but the database’s ability to provide relevancy is either non-existent or a bolted-on afterthought, and the relevancy ranking of results coming out of a database won’t be satisfactory.
Additionally, if we added the performance to the equation when you have large volumes of text data, RDBMS will be quite slow and provide poor user experience.
andela.com/blog-posts/apache-solr-search-engine-what-you-need-to-know
ChatGPT Cheat Sheet for Beginners | Superhuman
Build 2023: What Are New Dev Home, Dev Drive and Dev Box? — Visual Studio Magazine
visualstudiomagazine.com/articles/2023/05/25/build-23-devs.aspx?oly_enc_id=5912A0582689D0Y&m=1
Angular Follow Selector – Visual Studio Code Marketplace
Enables clicking on Angular selectors in your HTML files and being redirected to their component definition, as well as the other way around by clicking on templateUrl and styleUrls in your component.