- Notifications
You must be signed in to change notification settings - Fork434
This is the home of O'Reilly's Clojure Cookbook -http://clojure-cookbook.com
clojure-cookbook/clojure-cookbook
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Clojure Cookbook marks Clojure's entry into O'Reilly's prestigiousCookbook Series. The book details a large number of recipes – pairs of problems and solutions – for common topics in Clojure.
Clojure Cookbook doesn't just teach you Clojure, it also shows you how to use the language and many of its common libraries. The most difficult part of mastering any language is knowing how to apply it, in an idiomatic way, to tasks that real software developers encounter every day. This is especially true of Clojure.
With code recipes that teach you how to use the language in a variety of domains,Clojure Cookbook goes beyond simply teaching Clojure syntax and semantics. It contains annotated example code with detailed analysis and explanation for hundreds of real programming tasks. You can read the book straight through to gain insights about Clojure, or use it as a reference to solve particular problems.
If you're an Emacs-wielding Clojurist, you will probably want to read this book in Emacs, too. Here is a function that "turns the page" from one recipe to the next (find and open the next recipe, close the buffer with the previous recipe).
(defunincrement-clojure-cookbook ()"When reading the Clojure cookbook, find the next section, andclose the buffer. If the next section is a sub-directory or inthe next chapter, open Dired so you can find it manually." (interactive) (let* ((cur (buffer-name)) (split-cur (split-string cur"[-_]")) (chap (car split-cur)) (rec (car (cdr split-cur))) (rec-num (string-to-number rec)) (next-rec-num (1+ rec-num)) (next-rec-s (number-to-string next-rec-num)) (next-rec (if (< next-rec-num10) (concat"0" next-rec-s) next-rec-s)) (target (file-name-completion (concat chap"-" next-rec)""))) (progn (if (equal targetnil) (dired (file-name-directory (buffer-file-name)))(find-file target)) (kill-buffer cur))))
If you wish, you can then bind the function to a key:
(define-key adoc-mode-map (kbd"M-+")'increment-clojure-cookbook)
Of course, this binding assumes you're using adoc-mode for reading .asciidoc files. We suggest CIDER for evaluating code interactively. Adding the following hook to your config will enable cider-mode every time you enter an AsciiDoc file. Once active, you can start a REPL and evaluate code like you would do in any regular Clojure file.
(add-hook'adoc-mode-hook'cider-mode)
As of Jan. 10, 2014 we are preparing the book for print. SeeCONTRIBUTING.md for more info.
You can build a PDF/MOBI/EPUB/HTML version of the book with theasciidoc
command-line utility. (You must also have thesource-highlight
applicationinstalled and properly configured.)
You must have theasciidoc
andsource-highlight
command-line utilitiesinstalled and configured before attempting to build the book.
To install and configure the tools on OS X or Linux,run the includedbootstrap.sh
script:
$ ./script/asciidoc/bootstrap.sh
With installation and configuration complete, all that is left is to run theasciidoc
command.
To render a single document:
$ asciidoc -b html5 conventions.asciidoc# ... outputs conventions.html
To render the entire book:
$ asciidoc -b html5 book.asciidoc# ... outputs book.html
NOTE: Rendered output issimilar to the final book, but does not include O'Reilly style sheets.
To verify asciidoc files are without error/warning, run the following:
$ ./script/asciidoc/check.sh
The only output should be the file detail.
The only acceptable warning is related to structure of the book sections. It'sOK to ignore this one:
asciidoc: WARNING: conventions.asciidoc: line 1: section title out of sequence: expected level 1, got level 2
Please correct all others or ask for guidance if the error message is unclear.A common one is related to callouts like "<1>" at the end of a line of code.
asciidoc: WARNING: formatting-strings.asciidoc: line 57: no callouts refer to list item 1
To prevent this warning, the callout must be commented using the languageappropriate comment character(s). This also keeps the code runnable in the REPLwhen pasted.
Clojure Example:
(defnfoo []"bar" ) <1>
requires a semicolon before the callout reference
(defnfoo []"bar" ); <1>
Console Example:
Username:<1>
should be
Username:#<1>
We are Luke Vanderhart (@levand) and Ryan Neufeld (@rkneufeld), developers, authors, conference speakers and (at the moment), teachers. For this book-building adventure we will be your guides; we'll be collecting and editing your contributions, interfacing with the publisher (O'Reilly) and writing a solid chunk of the book ourselves.
This draft of Clojure Cookbook is licensed under aCreative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
Please see thecontribution guide for how this works for accepting pull requests.
Also, please note that because this is aNo Derivatives license, you maynot use this repository as a basis for creating your own book based on this one. Technically speaking, this book is open source in the "free as in beer" sense, rather than "free as in speech."
About
This is the home of O'Reilly's Clojure Cookbook -http://clojure-cookbook.com
Resources
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.