Skip to content

Instantly share code, notes, and snippets.

View jillesvangurp's full-sized avatar

Jilles van Gurp jillesvangurp

View GitHub Profile
@jillesvangurp
jillesvangurp / docker-compose.yml
Created August 14, 2018 11:11
postgres with ssl cerficiates workaround for initdb and non empty data dir
# generate certificate and key with openssl and then mount them
version: '2.3'
postgres:
image: postgres:alpine
# specify location to the keys explicitly
command: -c ssl=on -c ssl_cert_file=/var/lib/postgresql/server.crt -c ssl_key_file=/var/lib/postgresql/server.key
environment:
POSTGRES_DB: mydb
POSTGRES_USER: user
POSTGRES_PASSWORD: secret
Uncaught exception com.google.gwt.event.shared.UmbrellaException: Exception caught: undefined
at Unknown.Ub(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Tb(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.ac(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Iyd(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Myd(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Txd(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Dp(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Np(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
at Unknown.Ync(https://console.aws.amazon.com/cloudfront/home?region=eu-west-1 line 9 > scriptElement)
@jillesvangurp
jillesvangurp / berlin.geojson
Last active May 20, 2021 09:44
Polygon for berlin covered by geohashes
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jillesvangurp
jillesvangurp / build.gradle.kts
Last active August 25, 2020 03:01
Release 3.1.4 for geogeometry logs
plugins {
kotlin("multiplatform") version "1.3.72"
id("com.github.ben-manes.versions") version "0.28.0" // gradle dependencyUpdates -Drevision=release
id("org.jmailen.kotlinter") version "2.4.1"
`maven-publish`
}
repositories {
mavenCentral()
maven(url = "https://jitpack.io")