I hereby claim:
- I am timwis on github.
- I am timwis (https://keybase.io/timwis) on keybase.
- I have a public key ASDZvrXjQGJWWeDkYoCfyTS1tZaempyiVUgGSj0wMRJkhwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import { mapActions, mapState } from 'vuex' | |
export default { | |
computed: mapState({ | |
services: (state) => state.services | |
}), | |
methods: mapActions([ | |
'getServices' | |
]), | |
async created () { |
<template> | |
<LMap id="map" :center="center" :zoom="zoom"> | |
<LTileLayer | |
:options="layerOptions" | |
:tile-layer-class="tileLayerClass" /> | |
</LMap> | |
</template> | |
<script> | |
import { LMap, LTileLayer } from 'vue2-leaflet' |
#!/usr/bin/env bash | |
import () { | |
csvjson "${3:-/dev/stdin}" \ | |
| jq --raw-output '.[] | @sh "echo orc add-entry '"$1"' user \(.'"$2"') \(tostring)"' \ | |
| xargs -0 bash -c | |
} | |
export_ () { | |
orc ls "$1" user | cut -f 4 | in2csv -f ndjson |
<template> | |
<b-autocomplete | |
v-bind="$attrs" | |
:data="features" | |
:loading="isLoading" | |
field="properties.name" | |
keep-first | |
@typing="search" | |
@select="option => selected = option" | |
> |
SELECT | |
con.oid as "constraint_oid", | |
conname as "constraint_name", | |
pg_catalog.pg_get_constraintdef(con.oid, true) as "constraint_definition", | |
conrelid as "constrained_table_oid", | |
col.attname as "constrained_column_name", | |
confrelid as "referenced_table_oid", | |
ref.attname as "referenced_column_name" | |
FROM pg_catalog.pg_constraint as con | |
CROSS JOIN UNNEST(conkey) WITH ORDINALITY as constrained_cols(col_num, col_index) |