deepmerge
Merges the enumerable properties of two or more objects deeply.
github.com/TehShrike/deepmerge/blob/master/readme.md
Author: Andreas Plahn
10 Best CSS Frameworks for Front-End Developers
Angular – Stop mouse event propagation – Stack Overflow
If you want to be able to add this to any elements without having to copy/paste the same code over and over again, you can make a directive to do this. It is as simple as below:
import {Directive, HostListener} from “@angular/core”;
@Directive({
selector: “[click-stop-propagation]”
})
export class ClickStopPropagation
{
@HostListener(“click”, [“$event”])
public onClick(event: any): void
{
event.stopPropagation();
}
}
Then just add it to the element you want it on:
<div click-stop-propagation>Stop Propagation</div>
Source: angular – Stop mouse event propagation – Stack Overflow
Svelte is the most beautiful web framework I’ve ever seen – DEV Community
Microsoft’s new Windows Terminal now available to download for Windows 10 – The Verge
Ways to improve your CSS game – DEV Community
Microsoft’s new Windows Terminal now available to download for Windows 10
Microsoft’s new Windows Terminal now available to download for Windows 10
www.theverge.com/2019/6/22/18701365/microsoft-windows-terminal-10-download-store-features
Learn You The Node.js For Much Win!
Learn You The Node.js For Much Win!
An intro to Node.js via a set of self-guided workshops.
github.com/workshopper/learnyounode/blob/master/README.md
Publishing A Single EXE File In .NET Core 3.0 – .NET Core Tutorials
Windows Sysinternals – Windows Sysinternals | Microsoft Docs
The Sysinternals web site was created in 1996 by Mark Russinovich to host his advanced system utilities and technical information. Whether you’re an IT Pro or a developer, you’ll find Sysinternals utilities to help you manage, troubleshoot and diagnose your Windows systems and applications.
docs.microsoft.com/en-us/sysinternals/