Tag Archives: Emacs

Some of my Emacs defaults (in .emacs)

(defvar my-dir-root (expand-file-name “~/elisp”)) (set-default-font “-apple-consolas-medium-r-normal–13-0-72-72-m-0-iso10646-1″) ; appending to the elisp load path for our stuff (setq load-path (cons my-dir-root load-path)) ; stop that splash screen (setq inhibit-splash-screen t) ; set the fill column (setq-default fill-column 79) ; set the … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , | Comments Off

Emacs links for September 19th, 2009

Chmouel Blog: Emacs transparency with mouse wheel – works great. worg: Org-babel (wow I gotta experiment with this)

Posted in Coding, Software Engineering, Programming | Tagged , | Comments Off

Emacs weblogger.el

weblogger.el.

Posted in Coding, Software Engineering, Programming | Tagged | Comments Off

Reading about Graphviz

While gearing up on a content management project, a few developers were wrangling with how to share solution diagrams between Visio and OmniGraffle. While there is a level of compatibility between the two, its not ideal. While researching, I went … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , , , , , , , , | Comments Off

Getting Lisp

At work props go to Michael Bevilacqua-Linn and his great brown bag on Clojure. I think it helped a few of us not only get exposed to Clojure, but Lisp as well. Here are some great starting points for the … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , , , | Comments Off

Very quick start with Scala on OS X

1. Download and extract directory 2. Move scala install directory under to /usr/local/. 3. Add SCALA_HOME variable to your .bashrc export SCALA_HOME=/usr/local/[SCALA INSTALL DIRECTORY] 4. Add $SCALA_HOME/bin to your path in .bashrc, example: export PATH=$PATH:/usr/local/bin:/usr/local/sbin:$SCALA_HOME/bin 5. Get Emacs set up, … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , , | Comments Off

Some Emacs org-mode screencasts and links

Carsten Dominik (the originator of org-mode): Google TechTalk at YouTube Scott Jaderholm: Screencast Worg: David O’Toole Org tutorial Charles Cave: Orgnode – reading org-mode in Python (nice start here for Python hackers)

Posted in Coding, Software Engineering, Programming | Tagged , , | Comments Off

Emacs links for Sunday March 15th, 2008

I used Emacs org-mode to compose my first college report. These first two links delve into some of the techniques I used. Marios Braindump: Using Emacs Org-mode to Draft Papers emacs-orgmode: [Orgmode] Example of thesis in org-mode and LaTeX Xah’s … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , | 1 Comment

Emacs links for today

Emacs Screencast (Ruby developer shows why he likes Emacs) Xah’s Emacs Lisp Tutorial – I’m following this myself. Some great bits in there for the Lisp/Emacs newbie. Publiushing Org-mode files to HTML – nice setup to publish a directory of … Continue reading

Posted in Coding, Software Engineering, Programming | Tagged , , , , , | Comments Off

Nice tutorial on writing an Emacs Lisp function

Steve Yegge: My Save Excursion

Posted in Coding, Software Engineering, Programming | Tagged , | Comments Off