How to install PyTorch (with GPU) in Windows
PyTorch is a well-established development framework for Machine Learning, especially at the academic level. In this article we will see how to install PyTorch in Windows and prepare an environment to develop our neural networks. As the framework supports the use of GPUs, we will also see how to configure it to
Python: How to create a simple WebApp with Flask
Today let's briefly see how to create a simple WebApp using Flask the Python library that responds to GET and POST requests. Flask is a web micro-framework written in Python, based on the Werkzeug WSGI tool and with the Jinja2 template engine. It is a micro-framework since it does not require
Selenium – How to disable “Chome is controlled by automated test software” notification
"Chome is controlled by automated test software", who has faced this kind of notification knows how boring is to have such a banner on the top of Chromium browser while we are trying to automate stuff using Selenium. How to disable it? On the Internet we can find a lot of answers
How to install Python packets on Windows using PIP
Have you ever had to install a Python packet on Linux? Nothing simpler thanks to pip, the Python packet manager easy to use. But what about Windows, is it really the same? I don't know your opinion but personally everytime I had to struggle a little bit, for this reason in this short
How to install a virtual network adapter in Windows
If you need to add a new network adapter in Windows, the loopback adapter is what you are searching for. Let's have a look on how to install it. Localhost and Loopback When we say localhost, we normally mean the loopback adapter that is a virtual network interface. Conventionally localhost is always resolved with the
How to Authenticate Windows Users in C#
When we develope a new application, it may happen that we need to understand if the current user is the real owner of the used account. The only way to do that is to ask for the access credentials and check their validity via OS. In this article we are going to see