If you are working on net core application and doing the kubernetes deployment, there is an important consideration one must consider which will be explained below Every net...
BREACH is one of the commonly seen vulnerabilities in all types of web servers In the Ngnix server there are multiple fixes available but choosing the appropriate mitigation...
Application Data and Battery usage by mobile applications is an important factor for Mobile users In the era of using mobile apps that support push notifications and data...
Nginx is a web server which is commonly used as a reverse proxy and load balancer to manage incoming traffic IPv6 provides a much larger address pool (128-bit address) than...
Following is a C# code snippet to delete a path (file or directory) First we have to determine whether the path is a file or a folder and then call appropriate Delete methods In...
Here is the C# code to soft reset a Windows Mobile device (using P/Invoke) [DllImport("coredlldll", SetLastError = true)] static extern int SetSystemPowerState(string...
Control + Alt + Delete is a powerful key combination to terminate a running program/task or restart a computer/Windows device Blocking this key combination becomes...
Specify the namespace for doing P/Invoke stuff ie calling Win32 API functions from managed code using SystemRuntimeInteropServices; GetWindowThreadProcessId Win32...