Christian Quest

Results 286 comments of Christian Quest

I've looked at how the OAuth2 plugin is storing its stuff in Discourse PG database. Everything seems to be in the user_associated_accounts table establishing a link between the local user...

First test on a subset of posts (100 most recent topics) is visible on https://community.cquest.org/ It is a DEV install of discourse, I'll switch to a docker based one to...

https://api.openstreetmap.org/api/0.6/user/details.json does not seem to return the user email even if logged-in. Is it possible to add it ? This will allow the email sync/update on the first login.

Looks like `read_email` scope, right ?

To workaround this until a fix is available: - add: `password_encryption = md5` in your postgresql.conf and restart PG - update the password for the required users: `alter role theuser...

I've implemented the test for location change, and it shows a 10x speedup in the node parsing step for nodes that did not move. In the diffs I've used for...

I'll do. It's only a few lines change. Be aware... I've not written much C++ in my life, it may hurt purists ;)

Just pushed the PR: https://github.com/openstreetmap/osm2pgsql/pull/1059

I've reindexed my planet database right after an initial import. The size benefit is clear, almost 1/3 of GIST index (except for planet_osm_point). The spped benefit is also there; started...

Here is a comparison, done on an idle server with a fresh planet import: I kept the best EXPLAIN ANALYZE time of 10 runs. ## GIST ``` osm=# create index...