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 8000
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>MVVM</h1> |
/** | |
* Google Color Palette: http://www.google.com/design/spec/style/color.html | |
*/ | |
$materialize-red-lighten-5: #fdeaeb; | |
$materialize-red-lighten-4: #f8c1c3; | |
$materialize-red-lighten-3: #f3989b; | |
$materialize-red-lighten-2: #ee6e73; | |
$materialize-red-lighten-1: #ea454b; | |
$materialize-red-base: #e51c23; |
package main | |
import ( | |
"fmt" | |
"log" | |
"net" | |
"net/mail" | |
"net/smtp" | |
"crypto/tls" | |
) |
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 8000