C# equivalent for strip_tags() in PHP
There’s a rather pretty way to use something like PHP strip_tags() function in C# just using regular expresion
using System.Text.RegularExpressions;
#....
Regex regHtml = new System.Text.RegularExpressions.Regex("<[^>]*>");
string s = regHtml.Replace(InputString,"");

PostgreSQL in Docker: when DBeaver lies (and psql saves the day)
SharePoint onPrem: Create ContentType with the specific ID
Send props from Child class component to Parent state component in React App