MCMXXXIX XI: Midnight

Midnight. Mitchell Leisen. 1939.

Claudette Colbert! I like her.

This movie gets off to a really great start: Everything is explained in a couple of sentences and then we’re off. Colbert is a lot of fun to watch, too.

I’m all in.

This movie is a lot of fun. It’s got a great set-up: A grifterish, but still somehow sympathetic woman (just by being Claudette Colbert), trying to make her way through Paris. It could seem like a nightmarish situation, but the Don Ameche character works like a safety net — surely he’s a benign character? So it’s lessening the tension, making things more fun.

This is delicious! The plot is so contrived; I love it.

Oh! Billy Wilder is a co-writer on this! That explains the high concept, high fun thing going on here.

But I mean… this has got John Barrymore and Mary Astor and Hedda Hopper…

I don’t understand why I haven’t seen this before. It’s fabulous!

Oh, Barrymore died a couple years later.

OK, the movie gets a bit bogged down in the plot in the last third — it has to go through all the bits you think it has to go through for it to resolve into the ending you know it going to happen — but every scene is plenty amusing.

It could have had a bit more zing in the pacing.

Monty Woolley!

This blog post is part of the 1939
series
.

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.]