This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-09-29
Channels
- # announcements (4)
- # babashka (66)
- # beginners (7)
- # cljs-dev (6)
- # clojure (12)
- # clojure-europe (28)
- # clojure-nl (1)
- # clojure-norway (75)
- # clojure-uk (16)
- # clojuredesign-podcast (1)
- # clojurescript (16)
- # datascript (6)
- # deps-new (2)
- # dev-tooling (40)
- # exercism (1)
- # fulcro (92)
- # hyperfiddle (25)
- # lsp (19)
- # malli (1)
- # meander (2)
- # nrepl (9)
- # off-topic (5)
- # pathom (1)
- # practicalli (1)
- # re-frame (20)
- # reitit (14)
- # releases (1)
- # sci (86)
- # shadow-cljs (216)
- # sql (13)
- # testing (4)
- # tools-deps (4)
- # vscode (3)
Are there talks on ClojureTV or else about designing complex business logic/representing sets of rules as data? I need insights. Any type of materials you can recommend are appreciated ☺️
Several rule engine related videos listed in this ticket https://github.com/practicalli/clojure/issues/380
Fogus gave one at the conj a while back: https://www.youtube.com/watch?v=1E2CoObAaPQ
Anyone knows how to bootstrap a martian for a remote openapi spec that’s protected by http basic auth?
Only the spec is protected by basic. The api itself is oauth then.
Ah, the old way as user:password@.. hmm totally forgot about that!
bootstrap-openapi
takes in a map with interceptors. it may be possible to construct your own interceptor that adds the necessary Authorization
header for basic authentication
Yeah, I should try that. I wanted to understand if those interceptors are also used during the bootstrap request, but bailed out on it.