This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-03-08
Channels
- # announcements (6)
- # atom-editor (1)
- # babashka (21)
- # beginners (70)
- # clerk (4)
- # clj-kondo (71)
- # clj-yaml (1)
- # clojure (54)
- # clojure-art (1)
- # clojure-denmark (1)
- # clojure-dev (1)
- # clojure-doc (1)
- # clojure-europe (31)
- # clojure-nl (1)
- # clojure-norway (41)
- # clojure-uk (15)
- # clojurescript (36)
- # conjure (1)
- # cursive (2)
- # datomic (14)
- # duct (10)
- # emacs (12)
- # etaoin (176)
- # gratitude (25)
- # hyperfiddle (17)
- # jobs (1)
- # juxt (5)
- # london-clojurians (1)
- # malli (3)
- # nbb (21)
- # off-topic (29)
- # reitit (12)
- # releases (2)
- # remote-jobs (7)
- # shadow-cljs (9)
- # testing (9)
Rust has a pretty good culture around documentation, guides and tutorials and cookbooks. Since you're also learning new PLs regularly you might be aware of these, but I wanted to link them here for reference and inspiration: • official tutorial: https://doc.rust-lang.org/stable/book/ • official guides, by example / use-cases, std lib specific: https://doc.rust-lang.org/stable/rust-by-example/ • a cookbook that includes common programming tasks with third party libs: https://rust-lang-nursery.github.io/rust-cookbook/ • async book: https://rust-lang.github.io/async-book/ • book around "unsafe" code, subtle internals: https://doc.rust-lang.org/nomicon/ • an esoteric one that is about how to implement all sorts of lists in rust (which is specifically tricky in the language): https://rust-unofficial.github.io/too-many-lists/