I hereby claim:
- I am jzavisek on github.
- I am jzavisek (https://keybase.io/jzavisek) on keybase.
- I have a public key ASDI3x-Rt3qrfgCLchrrBL8iXdhC0R15GzPpVT4WAu9Y4go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
https://marketplace.visualstudio.com/items?itemName=chenzhe.split-line https://marketplace.visualstudio.com/items?itemName=Matsuyanagi.split-join-text
https://marketplace.visualstudio.com/items?itemName=maximus136.change-string-case
https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker
| { | |
| "Object.getPrototypeOf": { | |
| "prefix": "op", | |
| "body": "Object.getPrototypeOf(${0})" | |
| }, | |
| "Object.getOwnPropertyNames": { | |
| "prefix": "opn", | |
| "body": "Object.getOwnPropertyNames(${0})" | |
| }, | |
| "setTimeout": { |
| -- List all existing indexes and include some useful info about them (incl. the index's definition) | |
| SELECT | |
| schemaname AS schemaname, | |
| t.relname AS tablename, | |
| ix.relname AS indexname, | |
| regexp_replace(pg_get_indexdef(i.indexrelid), '^[^\(]*\((.*)\)$', '\1') AS columns, | |
| regexp_replace(pg_get_indexdef(i.indexrelid), '.* USING ([^ ]*) \(.*', '\1') AS algorithm, | |
| indisunique AS UNIQUE, | |
| indisprimary AS PRIMARY, indisvalid AS valid, |