Cups

Saw a log entry from 2004 (old memories) that said… Invoke Cups GUI with browser…http://localhost:631 I did and…it still does! Because of the price of ink the only thing I use my printer for these days is to scan.

Python PIL stopped working

Tried to run an old working program that displayed images. But got errors saying the img.show() type was none or nonetype. But obviously it wasn’t because the prints below worked. So googled and found the simplest 3 line example (I added the 2 prints)… from PIL import Imageim = Image.open(“/home/bill/Pictures/Computers/H11.png”)print(“Type is”,type(im))print(im.format, im.size, im.mode)im.show() So for …