This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-02-11
Channels
- # announcements (16)
- # aws (4)
- # babashka (30)
- # beginners (58)
- # bristol-clojurians (4)
- # cider (9)
- # clj-kondo (2)
- # clojure (229)
- # clojure-europe (25)
- # clojure-gamedev (1)
- # clojure-italy (4)
- # clojure-nl (13)
- # clojure-sanfrancisco (1)
- # clojure-uk (97)
- # clojured (7)
- # clojurescript (27)
- # code-reviews (2)
- # cursive (30)
- # data-science (39)
- # datomic (14)
- # emacs (12)
- # events (2)
- # fulcro (6)
- # graalvm (8)
- # graphql (14)
- # jackdaw (10)
- # jobs (2)
- # lambdaisland (5)
- # malli (4)
- # off-topic (28)
- # protorepl (13)
- # quil (7)
- # re-frame (2)
- # reagent (1)
- # reitit (3)
- # remote-jobs (5)
- # ring-swagger (1)
- # shadow-cljs (72)
- # sql (4)
- # tools-deps (182)
- # uncomplicate (4)
- # vim (9)
- # xtdb (19)
Hi, I wrote a little minesweeper clone in CLJS and Reagent in order to demonstrate the “Clojure mindset” and CLJS tooling to my colleagues. By Clojure mindset I mean simplicity, readability, easiness to reason about etc. The code is not optimised for speed, but for the aforementioned aspects. I would like to get some feedback and improvement ideas. Especially if there’s something that doesn’t seem idiomatic. I’m also weighting whether I want to write specs for the app or not. https://github.com/vharmain/minesweeper-cljs repo https://vharmain.github.io/minesweeper-cljs/ live app The most interesting files are probably these ones: https://github.com/vharmain/minesweeper-cljs/blob/master/src/app/core.cljs https://github.com/vharmain/minesweeper-cljs/blob/master/src/app/ui.cljs Thank you in advance!