Explore >> Select a destination


You are here

piotr.is
| | michaelneuper.com
2.5 parsecs away

Travel
| | Generic description
| | ljwrites.blog
2.8 parsecs away

Travel
| | The true gift of Emacs may be the ability to make it your own in every sense.
| | zzamboni.org
3.6 parsecs away

Travel
| | Today I had to install AucTeX to use on my Win7/64 machine under EmacsW32. I found the basic instructions here: http://www.sturmnet.org/blog/2007/09/01/installing-auctex-in-emacsw32, but I had to modify them a bit (in particular, I am using tetex installed from cygwin instead of MiKTeX). Here are the commands I used: $mkdir -p /usr/local/share/texmf $ ./configure --prefix='c:/Program Files (x86)/Emacs/emacs' --with-texmf-dir='/usr/local/share/texmf' --with-lispdir='c:/Program Files (x86)/Emacs/emacs/site-lisp' $make $make install I then added the following lines to my C:\Program Files (x86)\Emacs\site-lisp\site-start.el file:
| | vxlabs.com
23.0 parsecs away

Travel
| You might have noticed the side-note in yesterday's blog post where I mentioned that exporting Orgmode notes with org-download attachment-style screenshots to blog posts using ox-hugo required one to convert [[attachment:...]]-style links to [[file:...][file:...]]-style links. Because the barrier from private note to possibly useful blog post should be as low as possible, I made the below function that will do the required conversion for the link under your cursor. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ...