Monday, June 27, 2016

.NET Authorization note to self

Authorize only 1 person(s) and deny all others and anonymous.



<authorization>    
           <allow users="you@email.com" />
            <deny users="*" />
            <deny users="?"/>
          </authorization>

Python Logging Best Practices

Python Logging Best Practices Introduction to Python Logging Importance of Logging in Business Applications Logging is an essential ...