“I feared that the committee would decide to go with their previous decision unless I credibly pulled a full tantrum.”
— dmr@alice.UUCPMore precisely, flash meter back, from the dead.
After I bought the little LitraPro LED light and started playing with it, I dug out my Minolta Flash Meter V (no actual digging was involved, but lots of box-shifting and rummaging over the course of about a week), only to discover that I left the battery inside last time I used it. Several years ago.
Vinegar and a q-tip cleaned out the visible corrosion in the battery compartment, but when I took the back off, I found more, and as soon as the vinegar started bubbling it off, the negative wire snapped off completely.
Fortunately we have a highly-skilled hardware team at the office, so I begged pretty-please, and Todd was willing to remove the old wire (the corrosion had wicked its way all the way to the main board) and solder on a new one.
Which is good, because the only real big-name company left in the flash-meter biz is Sekonic, and now I don’t have to spend ~$220 on a cool new one.
Oh, and as soon as I found the bad battery in the Minolta, I continued digging until I found my spot meter, and that one had been stored correctly without a battery. Whew.
Since switching to Pixiv as my primary 2D image source, I’ve been bookmarking every picture I blog. Last night, I hacked together another PixivPy script to figure out which artists I’ve blogged work from, sorted by number of images and whether or not I follow them. The core of the code looks more or less like this, for anyone who might want to play with PixivPy:
from pixivpy3 import *
aapi = AppPixivAPI()
aapi.auth(refresh_token = my_auth_token)
result = aapi.user_bookmarks_illust(aapi.user_id)
for i in result.illusts:
if i.user.id == 0:
break
if i.user.is_followed:
# do stuff
else:
# do other stuff
while result.next_url:
next_qs = aapi.parse_qs(result.next_url)
result = aapi.user_bookmarks_illust(**next_qs)
for i in result.illusts:
if i.user.id == 0:
break
if i.user.is_followed:
# do stuff
else:
# do other stuff
(the i.user.id == 0 check was discovered through old-school printf
debugging; it’s the only place in the API where I’ve needed something
like that so far)
The most-blogged artists list currently looks like this:
| Count | Artist |
|---|---|
| 12 | N.G. |
| 10 | ちた@1月からのお仕事募集中 |
| 9 | もねてぃ◎エロゲ3月発売 |
| 8 | 朱シオ |
| 7 | 方天戟(げっきー) |
| 7 | みづき |
| 6 | ましゅー |
| 6 | Salmon88 |
| 6 | 柊はじめ@C95月曜日カ46a |
| 6 | 森沢晴行 |
| 6 | mamuru日曜日東D46b |
| 5 | 風牙 |
| 5 | しろきつね:こみトレ_ア25a |
| 5 | はまけん。@2日目西れ43b |
| 5 | 立羽 @ 3日目 西れ-29a |
| 5 | 米白粕 |
| 5 | たけあしろ |
| 5 | whoisshe |
| 5 | 宮前りん |
| 5 | ヤッペン@5月以降仕事募集中 |
| 5 | GIn00 |
| 5 | 弾 |
| 5 | TanDo |
“Embrace the healing power of ‘and’”.
The latest in shutdown theater is expiring SSL certs for government web sites. Either they didn’t bother to order new certs for all the sites they knew were expiring soon, or they deliberately didn’t install them.
Reminder: today’s is the first paycheck that’s delayed for federal employees. Any work they’ve skipped the past few weeks has been by choice.