This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-05-27
Channels
- # bangalore-clj (1)
- # beginners (50)
- # boot (23)
- # cider (19)
- # clara (28)
- # cljsrn (4)
- # clojure (93)
- # clojure-greece (67)
- # clojure-spec (14)
- # clojure-uk (11)
- # clojurebridge (1)
- # clojurescript (151)
- # community-development (1)
- # core-async (19)
- # core-matrix (1)
- # cursive (3)
- # emacs (1)
- # klipse (5)
- # leiningen (5)
- # luminus (3)
- # lumo (22)
- # nyc (1)
- # off-topic (17)
- # om (12)
- # onyx (16)
- # pedestal (5)
- # re-frame (20)
- # reagent (5)
- # spacemacs (10)
- # uncomplicate (2)
- # unrepl (11)
- # untangled (8)
- # vim (1)
Yes, but by forcing everyone to communicate through Skype, it eliminates the priviledged of native English speakers and levels the field.
Hi community !
I'm pushing to shift my company's new backend to Clojure + Graphql. The argument that comes against this is, that it's impossible to find Clojure devs. Has anybody here have faced an issue with the same ?
How hard it's to find Clojure developers ?
@shivekkhurana look at the JUXT’s Clojure In series on their site, and see what those people are saying about recruiting new devs
@shivekkhurana (disclaimer: I work for JUXT). https://juxt.pro/blog/posts/clojure-in-baresquare.html comes to mind regarding hiring in clojure-in.
A colleague of mine got productive with my reagent/re-frame app in 2 days when he only know react/redux
thesis: there are 2 models of computation: classic computation (turing machine, lambds calc, and equiv.) and cocomputation (csp, pi calc, interactionist, etc. - no generally accepted terminology.) real-world programming always involves both. example: web apps involve a functional part that returns values for input, but they also involve a co-functional part responsible for observing input (requests), applying the functional bit to the input, taking the value returned, and exhibiting (sending) it. conceptually they are entirely distinct.
to me this seems a very useful distinction, but i've never seen it explicitly articulated in the programming world. e.g. OOP is pretty clearly a case of co-functional (black-boxy) programming.
clojure does both right out of the box, and it keeps them distinct without saying so explicitly.