Skip to content

Instantly share code, notes, and snippets.

@dennismoha
dennismoha / index.html
Created October 8, 2021 07:59 — forked from shiawuen/index.html
Sample to upload file by chunk
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>test upload by chunk</title>
</head>
<body>
<input type="file" id="f" />
<script src="script.js"></script>
@dennismoha
dennismoha / node_nginx_ssl.md
Created September 13, 2021 08:50 — forked from bradtraversy/node_nginx_ssl.md
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

@dennismoha
dennismoha / passport.js
Created June 24, 2020 20:15 — forked from manjeshpv/passport.js
Passport.js using MySQL for Authentication with Express https://shoppredigital.com/mean-stack-development-guide/
// config/passport.js
// load all the things we need
var LocalStrategy = require('passport-local').Strategy;
var mysql = require('mysql');
var connection = mysql.createConnection({
host : 'localhost',
user : 'root',