Source: How to Deploy ASP.NET Core to IIS & How ASP.NET Core Hosting Works
Strip HTML using HtmlAgilityPack
Strip HTML using HtmlAgilityPack
public static string StripHtml(this string value) { HtmlDocument htmlDoc = new HtmlDocument(); htmlDoc.LoadHtml(value); if (htmlDoc == null) return value; return htmlDoc.DocumentNode.InnerText; }
Source: Strip HTML using HtmlAgilityPack
Dia – Free software for creating technical diagrams similar to Visio
Dia is roughly inspired by the commercial Windows program ‘Visio,’ though more geared towards informal diagrams for casual use. It can be used to draw many different kinds of diagrams. It currently has special objects to help draw entity relationship diagrams, UML diagrams, flowcharts, network diagrams, and many other diagrams.
wiki.gnome.org/Apps/Dia
Another free alternative to Visio is Openoffice draw. Read more here: https://chase-seibert.github.io/blog/2009/03/26/openoffice-draw-vs-visio.html#
Bulma: Free, open source, & modern CSS framework based on Flexbox
Bulma is a free, open source CSS framework based on Flexbox and used by more than 150,000 developers.
- responsive mobile first
- css only framework
- sass
- supports modern browsers
- partially supports ie10+
- easy to understand and readable css classes
Site: bulma.io
Getting started with bulma video: https://www.youtube.com/watch?v=MchBPICewgs
How To Put On Stunning Tech Talks
How To Put On Stunning Tech Talks. Hacks Included 🛠 dev.to/andrewbrown/how-to-put-on-f-cking-stunning-tech-talk-hacks-included-1poc
Progressive Web Apps | Web | Google Developers
Scan Your Network for Vulnerabilities With Nmap – DEV Community 👩💻👨💻
Angular – RadioControlValueAccessor
Using radio buttons with reactive form directives
The follow example shows how to use radio buttons in a reactive form. When using radio buttons in a reactive form, radio buttons in the same group should have the same formControlName
. Providing a name
attribute is optional.