A few years back, before cloud solutions were really mature, engineers with too much time on their hands were all about scale. It was the problem (almost) nobody had, but (almost) everybody wanted. Scaling was sexy.

I wonder what the next “problem everybody wants” will be.


The rhyme-as-reason effect, or Eaton–Rosen phenomenon, is a cognitive bias whereupon a saying or aphorism is judged as more accurate or truthful when it is rewritten to rhyme.

https://en.wikipedia.org/wiki/Rhyme-as-reason_effect


For my John Pory project, I manually scanned a few hundred pages of microfiche. The scans are a bit wonky, and I wanted to tidy them up. An hour with a Well Known Chatbot™ and Kagi got me a quick and dirty Python script

It works by performing edge detection on the page, roughing it up a bit and looking for Hough lines. I know my images are almost straight, so I throw away any lines that are more than +/-5 degrees from the horizontal, average what’s left, and skew the image to fit. Uncomment the cv2.line() call to see the Hough lines. There’s still a bit of tilt to some of my images because “mean” is probably the wrong metric (I’m thinking longer lines should be given greater weight) but it’s good enough for my purposes.

I could have done it without the chatbot, but my Python’s rusty and my OpenCV is zilch so it would have taken most of a day. In fact I probably wouldn’t have bothered. It’s not coming for my job (yet), but it’s definitely a more effective lever. Hobbyist programming hasn’t been this much fun since the early 90s.