Don't run mode hooks during org exports

binchen has a nice post about how to disable org mode hook execution during exports. It can be a surprise when you run in batch mode and your export breaks because of dependency failures. Oh yea, the major mode hooks run during export even though you personally are not opening a buffer, Emacs is doing so!
Here is his solution:

(defun is-buffer-file-temp ()
  (interactive)
  "If (buffer-file-name) is nil or a temp file or HTML file converted from org file"
  (let ((f (buffer-file-name))
        (rlt t))
    (if f
        (if (and (not (string-match temporary-file-directory f))
                 (not (file-exists-p (replace-regexp-in-string "\.html$" ".org" f))))
          (setq rlt nil)))
    rlt))

Interesting.

Org-Mode Details To Accompany Questions

The details that are likely to help questions to be answered on the org mailing list.

(print emacs-version)
(print org-version)
(print (pp-to-string org-babel-default-header-args))
(print (pp-to-string org-babel-default-header-args:R))

=

Eg:

"24.3.1"
"8.2.10"
"((:eval . \"always\")
 (:padline . \"yes\")
 (:noweb . \"no-export\")
 (:exports . \"both\")
 (:results . \"output replace\")
 (:comments . \"noweb\")
 (:session . \"none\")
 (:cache . \"no\")
 (:hlines . \"no\")
 (:tangle . \"no\"))
"
"((:session . \"*R*\"))
"

To Revisit

To Revisit

The Cochrane Collaboration

Who we are
Cochrane is a global independent network of health practitioners, researchers, patient advocates and others, responding to the challenge of making the vast amounts of evidence generated through research useful for informing decisions about health. We are a not-for-profit organisation with collaborators from over 120 countries working together to produce credible, accessible health information that is free from commercial sponsorship and other conflicts of interest.
Our vision
Our vision is a world of improved health where decisions about health and health care are informed by high-quality, relevant and up-to-date synthesised research evidence.
Our mission
Our mission is to promote evidence-informed health decision-making by producing high-quality, relevant, accessible systematic reviews and other synthesised research evidence.
Our work is internationally recognised as the benchmark for high quality information about the effectiveness of health care.

ProjectTemplate for R

ProjectTemplate is a system for automating the thoughtless parts of a data analysis project

Just read the overview. If you are not already doing these things, by any means, then see what this package has to offer immediately. It will make your life better.
If you are not convinced yet, then read the sections listed on the left. They do so, so much.
One nice example is the great flexibility provided in its configuration. For example, automatically converting loaded data.frame to data.table is just one flag, very nice.

Milwaukee Data Science: Making Sense of Data Science via a Metromap & Lightning Talks

This could be the start of something valuable community; can’t wait to see wherever it leads!