Verify what Postgres extension belongs to what schema
SELECT
e.extname AS "Name",
e.extversion AS "Version",
n.nspname AS "Schema",
c.description AS "Description"
FROM pg_catalog.pg_extension e
LEFT JOIN pg_catalog.pg_namespace n
Verify what Postgres extension belongs to what schema
SELECT
e.extname AS "Name",
e.extversion AS "Version",
n.nspname AS "Schema",
c.description AS "Description"
FROM pg_catalog.pg_extension e
LEFT JOIN pg_catalog.pg_namespace n
describe('transformArrayToDictionary', () => { | |
type myType = { id: string; data1: boolean; data2: boolean }; | |
let array: myType[]; | |
let expectedDic: { [key: string]: myType }; | |
beforeEach(() => { | |
array = [ | |
{ | |
id: '1', | |
data1: true, |
To see the commit differences between develop and master
git checkout master && git pull && git checkout develop && git pull && git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative master..develop
Useful to know what is going to be deployed
Name | Link | Description |
---|---|---|
Angular 8 Snippets - TypeScript, Html, Angular Material, ngRx, RxJS & Flex Layout | [![L |
const logPrefix = ' --- '; | |
const colors = { | |
reset: '\x1b[0m', | |
bright: '\x1b[1m', | |
dim: '\x1b[2m', | |
underscore: '\x1b[4m', | |
blink: '\x1b[5m', | |
reverse: '\x1b[7m', | |
hidden: '\x1b[8m', |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
Open your web console and execute the snippet and wait to be executed then inspect the element
var timeToBeExecuted = 1000;
setTimeout(() => {
debugger;
}, timeToBeExecuted);