Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
Created by Christopher Manning
Nodes are linked to nodes in neighboring cells. The cell's color is a function of its area.
The white lines are the Delaunay triangulation and the purple cells are the Voronoi diagram.
ServerSignature Off | |
ServerTokens Prod | |
<VirtualHost *:80> | |
ServerName plex.website.com | |
# This VirtualHost redirects everything to HTTPS on port 443. | |
RewriteEngine On | |
RewriteCond %{HTTPS} off | |
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} | |
</VirtualHost> |
#!/bin/bash | |
if [[ $# -lt 2 ]] | |
then | |
echo "Usage: port-forward HOST REMOTE_PORT [LOCAL_PORT]"; | |
else | |
HOST=$1 | |
REMOTE_PORT=$2 | |
LOCAL_PORT=${3:-${REMOTE_PORT}} |