planck

Planck ClojureScript REPL
borkdude 2018-05-23T16:05:37.000628Z

I wondered if I could do this script in Planck. Planck has an HTTP API. But how do I send e-mails with it? I could fall back to the command line of course. https://github.com/borkdude/balcony/blob/master/balcony.clj

mfikes 2018-05-23T16:07:47.000136Z

@borkdude Planck also has a socket namespace. I can't recall if it supports SSL

borkdude 2018-05-23T16:08:33.000100Z

It would be nicer if Planck had an API for this. Is this hard to build?

borkdude 2018-05-23T16:08:47.000290Z

Or maybe a lib I could use but I suspect there are none except maybe in the node world which is not usable in Planck?

borkdude 2018-05-23T16:14:06.000089Z

I’ll see how far I can get with socket

slipset 2018-05-23T16:30:31.000546Z

Have a look at postal, and see how hard it would be to port.

slipset 2018-05-23T16:31:37.000370Z

When I did the first implementation of the http stuff, I basically looked at cljs-http and added the missing infrastructure. Which was the hard bit.

slipset 2018-05-23T16:32:12.000689Z

I don’t know much (Objective-)C