Python Local Server
Ever felt the need to have a local server set up so that you can test your webpages or just outright share some stuff(on same wifi that is). This can be easily achieved by any computer that has python on it as it comes with its own server which can be accessed by the following command: python -m http.server 1234 Here 1234 is the port number which can be any open port of your choice. ...