Skip to content

Instantly share code, notes, and snippets.

@Jayme-T
Jayme-T / httpsExpressApp.js
Created July 14, 2016 15:27 — forked from ryanhanwu/httpsExpressApp.js
Express JS HTTP + HTTPs server (including auto redirect)
var express = require('express'),
routes = require('./routes'),
upload = require('./routes/upload'),
http = require('http'),
https = require('https'),
fs = require('fs'),
path = require('path'),
httpApp = express(),
app = express(),
certPath = "cert";
@Jayme-T
Jayme-T / index.html
Created May 11, 2016 10:44 — forked from JordanMajd/index.html
Where Is Waldo?
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Where is Waldo?</title>
<style>
#wenda {
display: none;
}
</style>