Skip to content

Instantly share code, notes, and snippets.

View Arun8295's full-sized avatar

Arun Kumar Arun8295

  • Coimbatore, Tamil Nadu
View GitHub Profile
@Arun8295
Arun8295 / index.html
Created September 28, 2019 11:36 — forked from chalin/index.html
portmanteaux_simple
<!DOCTYPE html>
<!--
Copyright (c) 2012, the Dart project authors.
Please see the AUTHORS file for details.
All rights reserved. Use of this source code
is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
@Arun8295
Arun8295 / index.html
Last active September 30, 2019 18:08 — forked from chalin/index.html
portmanteaux
<!DOCTYPE html>
<!--
Copyright (c) 2012, the Dart project authors.
Please see the AUTHORS file for details.
All rights reserved. Use of this source code
is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/
# generate server.xml with the following command:
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes
# run as follows:
# python simple-https-server.py
# then in your browser, visit:
# https://localhost:4443
import BaseHTTPServer, SimpleHTTPServer
import ssl