Skip to content

Instantly share code, notes, and snippets.

View tuanle96's full-sized avatar
♥️
Focusing

Lê Anh Tuấn tuanle96

♥️
Focusing
View GitHub Profile
@tuanle96
tuanle96 / SingletonModuleScopedInstance.js
Created March 25, 2021 08:57 — forked from dmnsgn/SingletonModuleScopedInstance.js
ES6 singleton pattern: constructor return an instance scoped to the module
// http://amanvirk.me/singleton-classes-in-es6/
let instance = null;
class SingletonModuleScopedInstance {
constructor() {
if (!instance) {
instance = this;
}
this._type = 'SingletonModuleScopedInstance';
@tuanle96
tuanle96 / settings.py
Created September 11, 2019 15:08
Django basic settings.py with sqlite3 database
# Django settings for myproject project.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
MANAGERS = ADMINS
### Keybase proof
I hereby claim:
* I am leanhtuan1996 on github.
* I am justinle (https://keybase.io/justinle) on keybase.
* I have a public key ASCgiyDiQj1nPYCrcv-gAdZGl3diKs-DqJKQ8GY_WK3htgo
To claim this, I am signing this object:
@tuanle96
tuanle96 / nginx.conf
Created April 26, 2018 03:36 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048