MCMXXXIX X: The Little Princess

The Little Princess. Walter Lang, William A. Seiter. 1939.

So this is the tenth week of 1939… so we’re into March?

And this movie is in colour!

Oh, they’re using the Boer War (turn of the century? the previous one?) as a proxy for the war that’s currently brewing in Europe?

This movie is quite amusing… But… it doesn’t have that zing you (that is, I) expect? Every scene is like… “yes, this is good… but…” There’s just something that’s lacking here. It needs to be funnier, or more dramatic, or something.

Even the dance scenes are so lacklustre! It’s like they haven’t even rehearsed the moves — nothing is synchronised.

It’s so weird: This had to be a pretty expensive movie, and it’s just kinda amateurish?

The set designs are awesome, though.

This blog post is part of the 1939
series
.

MCMXXXIX IX: The Oklahoma Kid

Oklahoma Kid. Lloyd Bacon. 1939.

But… but… that’s… that’s…

It is! It’s Bogart!

What’s he doing in this cheapie western? Was this before he became famous?

Ah, right, he was doing all these things in the 30s until his big break in 1941, I guess.

Because this is a Cagney vehicle.

This isn’t a very good movie? I mean, I’m having a hard time paying attention, because the plot is just very… I don’t even know what the plot is.

But Cagney can play the guitar? That’s something.

And sing Rock-a-bye Baby in Spanish.

What’s with the hairdos?

OK, I have to admit to tidying up the kitchen while this movie was droning on, because I’ve totally lost interest. It’s just such a … nothing of a movie. There’s nothing really wrong with it: The performances are standard, the cinematography is workmanlike, the lines they deliver are totally… fine?

There’s just nothing here that’s interesting. I mean, except Cagney’s twitchy, whimsical performance, but that only goes so far.

This blog post is part of the 1939
series
.

December Music

Music I’ve bought in December.

I rediscovered LTM Recordings this month, and placed such a large order that they thought I was running some kind of scam.

LTM specialises in re-releasing music originally released by Factory Benelux, Les Disques du Crépuscule and related labels in the early 80s. So it’s totally in my wheelhouse, and I used to buy tons of stuff from them… but then I forgot? For a decade? So I have some catching up to do.

And the rest is… well, the usual mixture of stuff.

New Gadget!

It’s been so long since I got a new gadget. So when I saw this e-ink frame the other week, I bought one immediately.

And it arrived today:

What’s appealing about this e-ink thing is that it’s freestanding: It’s got a battery (supposed to last a year), and communicates via wifi. So you can put it basically anywhere: No wires on me.

The manual didn’t specify what the image format is — it just mentioned an on-line image converter, but that’s no fun. So I sent a query to the guy who makes these and asked what the format was… but meanwhile I had a look at one of the image.rawz files. It was obviously a zlib-compressed file, so I uncompressed it, and it was 495000 bytes large. I summoned all my haxor skillz and typed

(* 1200 825 0.5)
=> 495000.0

Eureka! It’s four bits per pixel (duh, it’s a 16-greyscale display), so it’s two pixels per byte.

Not a second after I figured that out, I got a mail back from the guy saying that he’s now documented the format. And so he had. Now that’s service. All my haxing for naught.

My first attempt (seen above) didn’t quite work, because I couldn’t get imagemagick to create files like this… so I just wrote some Emacs Lisp:

      (while (not (eobp))
	(insert (+ (char-after)
		   (* (char-after (1+ (point))) 16)))
	(delete-region (point) (+ (point) 2)))

Hm. Is that the right pixel order? Whatevs:

Success! But upside down! Because the button is on the bottom, so if you want to just have it on the desk, you have to put it upside down.

There. Flip the image.

It reloads images from wherever you point it to, but you can also hit the button to make force-reload it. When it reloads on its own schedule, it seems to never fail? But when you hit the button, it fails once in a while.

OK, but what am I going to use this for? I can display the temperature? Sure. And the cover of the album that’s playing? Hm…

Or perhaps a random image from a movie I’ve seen?

Working with upside-down images is surprisingly weird.

Like all e-ink displays, the white levels aren’t super impressive, but it’s fine.

Look! No wires!

Well, that was fun. A gadget that’s pretty painless to work with, and does what the web page said it does.

I’m impressed.

I’ve set it to update every five minutes, but I guess that’ll make the battery run down pretty fast? The specs say that it should run one year if you refresh once an hour, but we’ll see. Besides, since it’s e-ink, it makes that refresh flash when the image changes, so it’s a bit on the distracting side when it updates this often.

[Edit half an hour later: It now failed getting the wifi on one of the auto-updates, too. It’d be better if it just didn’t refresh the screen on failures than displaying the error message, in my opinion.]

6×10%

Look!

We cracked the 3K line!

I’ve been tricking myself into working by gamifying Emacs bug handling, but this 10%-er was kinda a slog. Even if it was just 311 bugs this time around. I’ve been doing mostly newer bugs, and they’re often more work than geriatric bugs — many of the older bugs are just kinda obscure, so nobody has bothered tried to handle them, but are easy enough to fix if you have a case to reproduce them.

Even if you’ve never seen the package in question the bug is in. Which is the case with most of them for anybody.

Emacs is vast. Emacs contains multitudes.

So this stretch took a bit more than two months, and the number of open bugs in the bug tracker didn’t really decrease that much: From 3113 to 2973, which is just a reduction of (where’s my slide rule!) 4.5%.

Anything particularly of note this cycle? Uhm… Don’t think so — just a lot of stuff. Quite a few new patch contributors, which is always nice to see.

But as exciting as fixing bugs is, I think I’m gonna take a break now for a few months. But you go ahead! `M-: (debbugs-gnu “”)’ and choose some field you’re interested in and have fun.