Fork me on GitHub
#clojure-europe
<
2020-03-02
>
otfrom15:03:44

I'm just essaying my understanding on using cljplot here: https://github.com/MastodonC/witan.send.vis/pull/1

otfrom15:03:04

and realised that what I wanted to be able to do was add more and more series to a chart and it hit me that a transducing step function was what I was after (reduce wasn't quite enough b/c it doesn't have the [a] call at the end to do a tidy up.)

otfrom16:03:43

but I also need to parameterise the [a] step, so I need a function to return the function that does that https://en.wikipedia.org/wiki/Fundamental_theorem_of_software_engineering Wikipedia Fundamental theorem of software engineering The fundamental theorem of software engineering (FTSE) is a term originated by Andrew Koenig to describe a remark by Butler Lampson attributed to the late David J. Wheeler: "We can solve any problem by introducing an extra level of indirection." The theorem does not describe an actual theorem that can be proven; rather, it is a general principle for managing complexity through abstraction. The theorem is often expanded by the humorous clause "…except for the problem of too many levels of indirection," referring to the fact that too many abstractions may create intrinsic complexity issues of their own. For example, the use of protocol layering in computer networks, which today is ubiquitous, has… Show more "We can solve any problem by introducing an extra level of indirection." "…except for the problem of too many levels of indirection,"

👍 4