AUCTeX 11.92

Annnnd we’re back. Occasionally a package update is broken and aborts the Emacs boot process. Normally I just disable the offending package for a day and keep on trucking. However, when use-package breaks, you’re pretty much restricted to an Emacs -q environment. At least you are if, like me, use-package controls the loading of all your other packages. It’s not all that hard to clone the use-package repository and check out a working version but in this case I opted to just wait for MELPA because I knew the problem had already been fixed. It takes a long time to do a MELPA build, though, so I had to wait.

Today’s post is about AUCTeX. A new version has just been released.

It’s not yet in ELPA but will probably appear shortly.

I generally use Org mode to generate my \(\LaTeX\) but sometimes you need fine control and for those cases it’s often easier to just use AUCTeX. If you’re doing heavy duty technical writing, you should probably be using AUCTeX. Besides, they have a new version out.

Update [2017-12-05 Tue 10:55]: ACUTeX → AUCTeX.

Posted in General | Tagged | 2 Comments

Emacs Problems: Can’t Post

My Emacs is temporarily broken because of a Melpa/use-package problem. It looks like the problem will be resolved when the current Melpa build cycle completes and if so, I will deliver today’s wisdom then.

Posted in Administrivia | 10 Comments

Almost Ready

Good news from Eli Zaretskii: Emacs 26 is almost ready. In the last paragraph of this message on the Emacs Development list, Zaretskii says,

Emacs 26 is nearing its release; the stream of serious bugs (or any bugs, actually) seems to have died out. So hopefully one more pretest, and we will be ready to go.

This is one more piece of evidence that Emacs is under active and continuing development and puts the lie to the, sadly, often heard claim that Emacs is moribund old technology that is dying. John, Eli, and the others are working hard to make sure the claim remains nonsense.

Posted in General | Tagged | Leave a comment

Zamansky’s Advent of Code #1

I don’t have anything else interesting to say today so let’s take a look at Mike Zamansky’s post on the Advent of Code 2017 Day 1 problem. Zamansky has a nice discussion of solving this with Python and the steps you might go through to arrive at a clean solution. You should read his post to see the problem statement. When I saw the problem, the first thing I thought of was using one of the Lisp mapping functions to step through the digits. Here’s my solution in Emacs Lisp:

(defun cksum (captcha)
  (interactive)                         ;for interactive testing
  (let ((checksum 0) (digits (mapcar (lambda (a) (- a 48)) captcha)))
    (cl-mapc (lambda (a b) (when (= a b) (cl-incf checksum a)))
             digits (-rotate -1 digits))
    checksum))

(cksum "234445662") → 16

The first thing you notice is that it’s really a Common Lisp solution because it makes use of cl-mapc and cl-incf. You could do without the cl-incf but the Elisp mapc operates on only one sequence. You’ll also need Magnar Sveen’s Dash library but if you have any packages at all installed, it’s probably already been pulled in; otherwise you’ll need a (require dash).

We need two sequences because the logic depends on seq1[i+1] = seq2[i]. Notice that this handles the “wraparound case” as well. The second half of the problem is the same except the two lists should be the first and second half of the digits. One nice thing about the Emacs mapping functions is that they operate on any sequence, not just lists. That’s convenient in this problem.

Posted in General | Tagged , | Leave a comment

Ivy 0.10.0

Abo-abo has released Ivy 0.10.0. It’s the result of 8 months work and has several new features. One that I like, is that you can force acceptance of your input when you’re on the first candidate by scrolling up to the input with Ctrl+p. That’s much nicer than having to use Ctrl+Meta+j (which is still available). You have to enable this feature with

(setq ivy-use-selectable-prompt t)

presumably because it will interfere with the ivy-wrap functionality if you have it enabled.

Another nice feature is being able to use Ctrl+d to delete entries in an occur list. Abo-abo gives an example use case for it in his post.

Finally, there are a bunch of new counsel commands. Most of them are specialized to rare situations (at least for me) but you may find that one or two of them are useful in your work flow.

The post describes the most interesting new features but there’s also a complete changelog that you can browse if you’re interested in all the details. As I’ve said before, the Ivy/Swiper/Counsel suite is my most used and useful package. It’s extraordinary how much friction it removes from my workflow. If you aren’t already using it, I urge you to give it a try.

Posted in General | Tagged | Leave a comment

DRM and the Darknet

The folks over at Ars Technica UK were resting up after Thanksgiving and reran an article from 2012. The article discusses a paper (2002) by the Microsoft engineers who worked on Palladium, Microsoft’s Trusted Windows Project. The project failed partly due to a fierce backlash from the tech community that feared Microsoft was trying to lock down the PC. The paper was an attempt to allay those fears.

Meanwhile the paper, The Darknet and the Future of Content Distribution, made a series of predictions that have turned out to be largely true. The TL;DR is that DRM will always fail and never succeed in safeguarding Hollywood’s content.

The basic argument is that the DRM has to be perfect: strong enough to defeat even the most talented and motivated cracker not just the average user. I’m sure the Hollywood suits thought that if they just made the cracking hard enough to frustrate the average user, the few really talented crackers wouldn’t matter.

The paper argues that what would actually happen is that the crackers would release the decrypted content on the “Darknet” making it available to everyone. Back in 2002, “Darknet” didn’t have quite the same meaning as it does today but the concept is the same. The authors predicted that the content owners and law enforcement would target the most centralized parts of the darknet but that the darknet would respond by becoming more decentralized. That, of course, is exactly what happened.

It’s interesting to read about this 15 years on but it’s a little depressing to see that Hollywood still can’t bring itself to let get of the notion that maybe this time with this new DRM scheme we’ll succeed. Perhaps in another 15 years.

Posted in General | Tagged | Leave a comment

Working in Emacs

Some people will go to any lengths to do all their work in Emacs. I can sympathize.

Posted in General | Tagged | Leave a comment

Read Only

I just had one of those “Well Duh! Of course” moments. It came to me with this Emacs Command of the Day tweet:

I always think of Ctrl+x Ctrl+q as turning off read-only-mode in a grep or Dired buffer. See Mike Zamansky’s video on Dired for an example of the latter. But, of course, what it really does is toggle read-only-mode so if you want to put a buffer in view-mode to prevent inadvertent changes you can just use Ctrl+x Ctrl+q to turn it on.

Posted in General | Tagged | 1 Comment

Computer Languages as Weapons

For those of you who like such things, here’s a list of popular languages and the weapons they correspond to. My go to languages are Lisp and C so I guess I’m crazy and dangerous but toting an old—if reliable—weapon.

No matter your favored languages, your ox will almost certainly be gored.

Posted in General | Tagged , | Leave a comment

The pcre2el Package

In my post the other day on Mike Zamansky’s Dired video, I meant to mention one of the packages he talked about but I forgot. That package is pcre2el, a package to, among other things, convert Perl compatible regular expressions to Emacs-style regular expressions. Many people have trouble with Emacs’ regular expressions because of their syntax. They were originally optimized for working with Lisp so some of the escaping rules are just the opposite of Perl’s (and other) regular expression systems. For example, in most regex systems, parentheses are used for grouping and if you want a literal parenthesis, you have to escape it. Because parentheses are ubiquitous in Lisp, the rule is exactly the reverse for Emacs regexes. These days, of course, most people aren’t writing in Lisp so these rules don’t appear to make sense and are annoying.

For those who find this confusing or annoying, the pcre2el package offers a partial solution. The package is essentially a translator that parses Perl regexes and translates them into Emacs regexes. The two engines are different; Perl regexes have capabilities that Emacs regexes don’t so the Perl syntax supporting those features can’t be translated. Still, if you’d like to work with the Perl syntax instead of switching back and forth, this package may be just what you need. Take a look at Zamansky’s video to see an example of it in action.

Posted in General | Tagged | 3 Comments