May 1942: Private Buckaroo


















This is from that collection of cheap b movies and features the Andrews Sisters.

This also has the fabulous Mary Wickes. She can liven up a movie just by being in the general vicinity of it, and when she’s on the screen, she’s just everything. And Shemp Howard is a perfect foil for her.

This is barely a movie, though. It’s a series of songs with some screwball stuff happening in between the numbers.

Which is fine by me; the is very easy on the brain. The music’s nice and the screwball stuff is amusing throughout. And occasionally laugh-out-loud funny.

Everybody joins the army halfway through the film! This is very patriotic but structurally odd. It also means less Mary Wickes, which is never a good thing.

“I’ve sipped from many a cup, but never a mug like this.”

“That’s beautiful.”

Private Buckaroo. Edward F. Cline. 1942.

Popular movies in May 1942 according to IMDB:

PosterVotesRatingMovie
114377.8Yankee Doodle Dandy
30797.5In This Our Life
8807.2Prelude to War
26017.0Tarzan’s New York Adventure
3527.0Take a Letter, Darling
7306.9This Above All
17496.8The Spoilers
4356.7Let’s Get Tough!
5376.6Grand Central Murder
5896.5The Falcon Takes Over

This blog post is part of the Decade series.

April 1942: This Gun For Hire



















Yay! A real noir thriller!

Alan Ladd’s great as the taciturn assassin. I don’t think I’ve seen many movies with Veronica Lake, and she’s definitely of the “I’m standing here waiting until the other person finishes their line so that I can say my line” school of acting, but she’s fun. She’s certainly a better actor than some of the other characters in this movie.

The plot of the film is a literally literally in-credible series of koinkidinks, but hey, who cares. It’s kinda perfect anyway.

This Gun For Hire. Frank Tuttle. 1942.

Popular movies in April 1942 according to IMDB:

PosterVotesRatingMovie
63877.5This Gun for Hire
17637.4Larceny, Inc.
9287.2My Favorite Blonde
182637.2Saboteur
14257.1One of Our Aircraft Is Missing
5196.9Kid Glove Killer
9916.9Moontide
2956.7The Man Who Wouldn’t Die
9096.6Rio Rita
3106.6Alias Boston Blackie

This blog post is part of the Decade series.

Variable Pitch Tables

While using the Emacs WordPress interface on various screens here, it became clear that the sloppy way I was laying out various tables just didn’t really work. I was using the `variable-pitch’ font and sort of eyeballing how much space each column would take and then using `display ‘(space :align-to 100))’ to line stuff up.

But the size of fonts varies wildly from computer to computer, and what looked nice on my HiDPI laptop didn’t line up at all on my LoDPI screen.

So I switched to using fixed-width fonts:

And I just thought, *sigh*.

It just looks so oldz. I spend a lot of time in Emacs in eww which does nice fonts, so I’ve grown less used to the er starkness of tables like this.

Surely there has to be a way to do tables with proportional fonts, and of course there is: eww/shr lays stuff out without a problem, so I just had to take a similar approach here.

And behold:

The package is on Microsoft Github now.

This also allowed me to implement table headings that you can click on to sort the table on the different columns. And I wanted to keep the interface really simple, because I have to say that I hate working with the tabulated-list.el interface, which is a mess of buffer-local variables and magic always happening wherever you’re not looking in the code.

So the interface is one simple function that takes obvious parameters: A list of column names and max widths, and then a list of row contents:

(variable-pitch-table
 '((:name "First" :width 10)
   (:name "Second" :width 5))
 '(("A thing" "Yes")
   ("A wide thing that needs chopping" "And more")
   ("And the last one" "Foo")))

But you’d normally pass in strings that are made with something like

(propertize "At thing" 'face 'variable-pitch)

to get whatever proportional font you want on each element.