8 Apps to Enable Tabs in File Explorer on Windows 10
8 Apps to Enable Tabs in File Explorer on Windows 10
Source: 8 Apps to Enable Tabs in File Explorer on Windows 10
Use of Enums in Angular 8+ HTML template
in the TS
import { SomeEnum } from 'path-to-file';
public get SomeEnum() {
return SomeEnum;
}
in the HTML use
*ngIf="SomeEnum.someValue === 'abc'"
EDIT: Time goes by and we learn more as a developer, the approach I’m using right now doesn’t use the get
method. Both solutions work, just choose the one you like the most.
in the TS
import { SomeEnum } from 'path-to-file';
export class ClassName {
readonly SomeEnum = SomeEnum;
}
in the HTML use
*ngIf="SomeEnum.someValue === 'abc'"
From: Use of Enums in Angular 8 HTML template for *ngIf – Stack Overflow
Find out which process is locking a file or folder in Windows
You can use the Resource Monitor for this which comes built-in with Windows 7, 8, 10 and 11! Open Resource Monitor, which can be found By searching for Resource Monitor or resmon.exe in the start menu, or As a button on the Performance tab in your Task Manager Go to the CPU tab Use the search field in the Associated Handles section See blue arrow in screen shot below When you’ve found the handle, you can identify the process by looking at the Image and/or PID column. You can then try to close the application as you normally would, or, if that’s not possible, just right-click the handle and kill the process directly from there. Easy peasy!
Source: filesystems – Find out which process is locking a file or folder in Windows – Super User
Top Misconceptions About Dependency Injection in ASP.NET Core
Which can even lead to bugs
Source: Top Misconceptions About Dependency Injection in ASP.NET Core | by Sasha Mathews | Level Up Coding
Inside look at modern web browser (part 1) – Chrome Developers
developer.chrome.com/blog/inside-browser-part1/
Oracle Tutorial – Learn Oracle Database from Scratch | OracleTutorial.com
Try the new System.Text.Json source generator – .NET Blog
In .NET 6.0, we are shipping a new C# source generator to help improve the performance of applications that use System.Text.Json. In this post, I’ll go over why we built it, how it works, and what benefits you can experience in your application.
Source: Try the new System.Text.Json source generator – .NET Blog
Docker explained to a 5 year old
Log info with tracepoints – Visual Studio (Windows) | Microsoft Docs
Tracepoints allow you to log information to the Output window under configurable conditions without modifying or stopping your code. This feature is supported for both managed languages (C#, Visual Basic, F#) and native code as well as languages such as JavaScript and Python.
Source: Log info with tracepoints – Visual Studio (Windows) | Microsoft Docs