To join the developers mailing list, send an email to listserv@listserv.llnl.gov with the following in the body:
subscribe esgf-devel
(For the users mailing list, see the mailing list page.)
Other Mailing lists for developer Working Groups
The ESGF community has Slack and a workspace in Atlassian Confluence. Please contact us if you need access.
For those of us special enough to use emacs, here is the .emacs entry to enforce space standards:
(setq c-basic-offset 4)
(setq tab-width 4)
(setq indent-tabs-mode nil)
(setq-default c-basic-offset 4)
(setq-default indent-tabs-mode nil)
(defun my-java-mode-hook ()
(setq c-basic-offset 4)
(setq indent-tabs-mode nil))
(add-hook 'java-mode-hook 'my-java-mode-hook)
Described here the inspiring principles according to which ESGF software modules should be developed: