business

Business uses of Clojure.
2018-10-04T00:45:17.000100Z

@lady3janepl, that is a good idea, one k hadn't considered.

alexlynham 2018-10-04T07:09:25.000100Z

what @lady3janepl said - SLAs and SLOs are super important use things like micro APIs and functions as a service to control your billing, keep track of invocations etc

alexlynham 2018-10-04T07:09:58.000100Z

use IaaS if you're people-limited, use infrastructure you run yourself if you're liquid cash limited

alexlynham 2018-10-04T07:10:26.000100Z

get your deployments in a zero-downtime state ASAP, even if it's costly to do

alexlynham 2018-10-04T07:10:38.000100Z

make sure you can always release the tip of master

alexlynham 2018-10-04T07:10:49.000100Z

if you can't, halt work elsewhere and fix that

alexlynham 2018-10-04T07:11:00.000100Z

a dollar spend on good CI/CD will come back to you twice over

alexlynham 2018-10-04T07:11:42.000200Z

aaaand finally, my friend who's an amazing product manager and has run businesses before says that with anything 'execution is everything'

alexlynham 2018-10-04T07:12:16.000100Z

so yeah the idea, the tech, everything doesn't matter if it's not packaged right - which includes the sell, the audience, the marketing, and the story you tell about the product & how it makes users feel

3Jane 2018-10-04T09:26:34.000100Z

And a bit of explanation for the above... Speaking as a consumer of APIs, SLA/SLO is the first thing I think about (even before docs). Nothing pisses me off more than company being shifty about their downtimes, because this makes me look incompetent in the eyes of my customers. “Sorry guys, I couldn’t tell you we’d be having downtime because my provider doesn’t warn us.” “THEN SORT YOUR PROVIDER YOU IDIOT”

👍 4
💯 1
3Jane 2018-10-04T09:28:24.000100Z

Service downtimes work exactly like cars braking down on the motorway. There’s a delay in reaction and the car speed loss increases non linearly with the amount of cars participating in the traffic jam.

3Jane 2018-10-04T09:29:52.000100Z

So when you’re writing software for end users you’re relatively safe, but when you’re writing something B2B (like an API gateway, grrr) you can have significant impact on a chain of companies.

2018-10-04T09:30:52.000100Z

exactly.