O’Reilly books and videos free to American K–12 students
blog.safaribooksonline.com1 pointsby rgoddard0 comments
(setq org-agenda-custom-commands
'(("w" "Agenda and Next todos"
((agenda "" ((org-agenda-ndays 1))) ;show anything scheduled for today including habits
(todo "NEXT|IN PROGRESS"
((org-agenda-overriding-header "Working On"))) ;things that I am currently working on
(todo "TODO"
((org-agenda-overriding-header "Check Todo's"))) ;Todo items to check on periodically
(todo "WAITING"
((org-agenda-overriding-header "Waiting On"))))))) ;things I am blocking on (defn do_stuff
[coll]
(filter #(> % 10) (map Math/sqrt coll)))
Vs (defn do_stuff
[coll]
(filter #(> % 10)
(map Math/sqrt coll)
)
)
Even though this is the same code, if you are coming from a c-style background the latter is probably easier to read.