off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
mauricio.szabo 2021-04-27T00:29:00.322400Z

Most of the time I use "foldable / collapsible trees" that Chlorine already have

mauricio.szabo 2021-04-27T00:29:27.322600Z

When the data is too complicated, I use reveal

mauricio.szabo 2021-04-27T00:30:35.322800Z

And when it's too big, too nested, and I probably care a lot about a subset of fields, I use a "custom command with a specific renderer" on Chlorine, that's a feature that I'm aware is poorly documented ๐Ÿ˜ข

Ben Sless 2021-04-27T06:30:02.323100Z

I've been using Cider's inspector to great effect recently https://docs.cider.mx/cider/debugging/inspector.html

๐Ÿ‘ 1
phronmophobic 2021-04-27T06:34:15.323300Z

wow, cider inspector is pretty great.

โ˜๏ธ 1
orestis 2021-04-27T13:34:05.328Z

I need to setup an EC2 instance with Postgres and letsencrypt. It will be accessible from the internet so security wise itโ€™s important to make it easy to apply new patches etc early and often. I would like to have some scripts or another declarative way of setting it up. In the past I was using ansible for this but perhaps I should look at Docker these days?

marciol 2021-04-27T13:50:45.329300Z

Seems that one of the Go core team members is enjoying the History of Clojure paper: https://twitter.com/_rsc/status/1386744954840567810?s=20

๐Ÿ‘ 4
๐Ÿ‘Œ 1
jcburley 2021-04-29T00:30:12.339400Z

๐Ÿ˜‰

๐Ÿ˜‚ 2
dharrigan 2021-04-27T14:26:33.329500Z

We use Terraform to do this - setup PostgreSQL on RDS and configure the security groups. In addition, it also be configured to use TLS which Amazon take care off.

orestis 2021-04-27T14:40:45.330800Z

I canโ€™t use RDS - I need a publicly accessible Postgres instance with a public CA authority. Itโ€™s a hassle, needed to setup BI access for some clients.

orestis 2021-04-27T14:41:07.331600Z

(Itโ€™s proxying to the underlying RDS instance via FDW)

dharrigan 2021-04-27T14:50:40.331800Z

our RDS instances are public

dharrigan 2021-04-27T14:50:44.332Z

and Amazon is a public CA

dharrigan 2021-04-27T14:51:48.332200Z

but I get you, that doesn't stop you from using terraform to spin up an EC2 instance, configure the security groups, the route53 data etc.., then use ansible (as a final stage action) to setup postgresql and configure the rest.

orestis 2021-04-27T16:45:56.333300Z

Donโ€™t you need to use the Amazon provided pem to validate the SSL certificate offered by RDS?

orestis 2021-04-27T16:47:17.333600Z

When you connect using SSL, your client can choose whether to verify the certificate chain. If your connection parameters specify sslmode=verify-ca or sslmode=verify-full, then your client requires the RDS CA certificates to be in their trust store or referenced in the connection URL. This requirement is to verify the certificate chain that signs your database certificate.

orestis 2021-04-27T16:48:08.335100Z

MS PowerBI tries to verify the certificate chain strictly but I canโ€™t upload the RDS CA in its trust chain so far.

dharrigan 2021-04-27T16:55:21.335300Z

Ah okay.

valtteri 2021-04-27T18:29:31.335600Z

Have you considered Lightsail? It can launch a server with preconfigured Postgres. It uses CloudFormation under the hood.

Dimitar Uzunov 2021-04-27T19:29:39.336Z

It is a great read

sova-soars-the-sora 2021-04-27T23:58:51.336300Z

Now if only the angular guys would read it