Skip to content

Instantly share code, notes, and snippets.

View sonlexqt's full-sized avatar

Son Le sonlexqt

View GitHub Profile
@sonlexqt
sonlexqt / iterm2-solarized.md
Created August 22, 2017 02:24 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Meslo powerline font + [Powerlevel9k] - (macOS)

Default

Default

Powerlevel9k

Powerlevel9k

@sonlexqt
sonlexqt / replaceAt
Created November 16, 2017 08:13 — forked from efenacigiray/replaceAt
Javascript replace char at index
function replaceAt(string, index, replace) {
return string.substring(0, index) + replace + string.substring(index + 1);
}
@sonlexqt
sonlexqt / multitenant.md
Created May 29, 2020 06:12 — forked from woloski/multitenant.md
Multi Tenant Apps in Auth0

Multitenancy refers to a principle in software architecture where a single instance of the software runs on a server, serving multiple client-organizations (tenants)

Let's start by enumerating some multi tenant applications and understand how they handle it.

Slack

Authentication: