-
Sunday photoblog
… Read the rest.
-
Pictures from Saturday walk
It’s this time of the year when the sun sets before 5 p.m. Every afternoon walk becomes a race, as we try to get back to the car before it turns dark.… Read the rest.
-
October snapshots
Last month, P and I hiked a lot across the many MOD managed areas surrounding our town. Here are some snapshots from our walks.… Read the rest.
-
ASUS ProArt Display: Intermittent resets
The ASUS ProArt Display monitors seem to suffer from intermittent resets, which turn the screen dark for a second or two.… Read the rest.
-
You win some, you lose some
These are the “you lose some” from a roll of Fomapan 200 exposed with a Nikon FM2. What happened here is that I opened the camera back without closing the window of the Shirley Wellard film cassette.… Read the rest.
-
Shirley Wellard film cassette in pictures
Here are some pictures of the Shirley Wellard metal film cassette.… Read the rest.
-
Farnborough International Airshow 2024 on film
This year’s Farnborough International Airshow pictures were shot on film with a Nikon FM2 and a Nikon FE2. The lens was a Nikon AF-S 300mm f/4.… Read the rest.
-
Shirley Wellard Universal film cassette
The Shirley Wellard Universal film cassette was too much of an attractive vintage photography equipment to pass on. I bought two off eBay and successfully used one today with my Nikon FM2.… Read the rest.
-
St. Andrew’s Garrison Church
… Read the rest.
-
ESP8266: How to register partitions
Starting with v3.0, the ESP8266 NONOS SDK requires that partitions be registered in function void user_pre_init(void), like this: #define SPI_FLASH_SIZE_MAP 2 void ICACHE_FLASH_ATTR user_pre_init(void) { bool rc; static const partition_item_t part_table[] = { {SYSTEM_PARTITION_RF_CAL, 0xfb000, 0x1000}, {SYSTEM_PARTITION_PHY_DATA, 0xfc000, 0x1000}, {SYSTEM_PARTITION_SYSTEM_PARAMETER, 0xfd000, 0x3000}, }; rc = system_partition_table_regist(part_table, sizeof(part_table)/sizeof(part_table[0]), SPI_FLASH_SIZE_MAP); if (rc) goto done; os_printf(“Error while registering…