Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| #include <ESP8266WiFi.h> | |
| #include <ESP8266mDNS.h> | |
| #include <ArduinoOTA.h> | |
| #include <WiFiManager.h> | |
| void setup() { | |
| Serial.begin(115200); | |
| Serial.println("Booting"); | |
| WiFiManager wifiManager; | 
| # Description: Boxstarter Script | |
| # Author: Jess Frazelle <[email protected]> | |
| # Last Updated: 2017-09-11 | |
| # Customized by: Mike Donaghy | |
| # Last Modified: 12/19/2017 9:04:01 AM | |
| # | |
| # Install boxstarter: | |
| #Set Set-ExecutionPolicy RemoteSigned | |
| #. { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
| # | 
| #!/bin/bash | |
| ## **Updates to this file are now at https://github.com/giovtorres/virt-install-centos ** | |
| # Take one argument from the commandline: VM name | |
| if ! [ $# -eq 1 ]; then | |
| echo "Usage: $0 <node-name>" | |
| exit 1 | |
| fi |