This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-07-17
Channels
- # aleph (7)
- # announcements (1)
- # aws (12)
- # beginners (118)
- # calva (15)
- # cider (17)
- # clj-kondo (1)
- # cljdoc (11)
- # cljsrn (1)
- # clojure (108)
- # clojure-dev (32)
- # clojure-europe (3)
- # clojure-italy (4)
- # clojure-kc (1)
- # clojure-nl (4)
- # clojure-portugal (1)
- # clojure-spec (29)
- # clojure-uk (69)
- # clojurescript (91)
- # cursive (14)
- # datomic (8)
- # emacs (13)
- # figwheel-main (12)
- # graphql (4)
- # jackdaw (1)
- # jobs (14)
- # lambdaisland (3)
- # luminus (3)
- # nyc (1)
- # off-topic (14)
- # onyx (23)
- # pedestal (8)
- # re-frame (4)
- # reitit (3)
- # shadow-cljs (6)
- # spacemacs (7)
- # specter (2)
- # tools-deps (3)
- # unrepl (4)
- # vim (7)
- # xtdb (10)
How well does Python play with Kafka as opposed to Clojure? Kafka seems like the right fit to solve a problem at work, and most of our people use python.
JVM langs have a superior kafka integration. the C wrappers are bound to have issues, those projects having a much more acute bus factor
If you shoiud motivate your team I would emphasize on this. A part also that the risk is that in python people endup to overload and create objects for nothing
Most of the time, I would argue people pickup python for just do the most hack in quick way as possible. So in long-term imho you have poor quality over speed etc. Imho is not really a tech question but rather a company culture etc

From experience, writing python code is extremely difficult. You have basically no constraints on the language. Writing clojure code with quality is less difficult because of the constraints
I guess it depends on what you will do with the data more than anything. python/clojure both have good (and probably similarly performant) clients to interact with kafka otherwise. python vs clojure (at large) is another debate

I find that because python is so flexible, writing it within the bounds of a set of (perhaps implicitly-defined) idioms, and doing so with discipline, is almost a similar experience to trying to speak eloquently in english. When I do a good job-- my code runs well and I've got a really consistent sort of colloquialism-- I'm always pretty proud of my work.
Yep agree. Although honestly I don't see any advantage with accessing data with python
I mean comparing the clojure way with destructoring etc. In python for read a file you wanna create some objects and do a parser
Then you have other objects, I mean to mee all this objects Tangled everywhere for just data is more a cognitive load
this was a fun re-read https://jkkramer.com/sudoku.html