2021年5月28日金曜日

2021年5月27日木曜日

小林正樹監督「怪談」

 オムニバスということもあって黒澤明の「夢」を思い出した。「夢」の方が全然、後だけれど。
 いい映画だった。

 わりとBGMなしのシーンがあり、最近はあまり見かけないなぁ、こういう演出。
 そういえば、「2001年 宇宙の旅」を映画館で観たとき(ロードショーではない)、冒頭で真っ暗で無音のシーンがつづくのだけど、いきなり観客のひとりが「フィルム、かかってねーぞっ」と怒号を上げた。

1 黒髪

 三國連太郎が若く。

2 雪女

 仲代達矢の甘えたはにかんだ笑みに、あれ、こういう役者だっけ、と驚いた。どうも黒澤映画で、三船敏郎とからむ役のイメージがあったかららしい。なるほどねぇ、「野獣死すべし」で伊達邦彦をやったわけだ。未見だけど。なんとなく勝手に納得した。

3 耳無芳一の話

 有名な話なのに、どうして芳一のところに、武者がやってくるのか、全然、思い出せなかった。
 真崎守がこの話をベースにしたマンガを描いているのだけど 1、それが頭の中を回ってしかたなかった。あと、諸星大二郎の「あんとく様!」

4 茶碗の中

 小松左京がこんなタイトルの作品を書いてなかったっけ?

Footnotes:

1

切られるのは耳ではない。

2021年5月26日水曜日

ウォルター・ヒル監督「48時間 PART2 帰って来たふたり」

 エディ・マーフィがちょっと太っていることにも驚いたけれど、ブライオン・ジェームズがでていることにも驚いた。「ブレードランナー」に冒頭からでていた役者である。前作の「48時間」にもでていたし、そもそも「ブレードランナー」と「48時間」は同じ年の作品だった。
 すごいな。ヒットした「48時間」と、公開当時、こけたけれど、名作と名高い「ブレードランナー」の両方に出演していたなんて。 1999年に亡くなっていることを知ってちょっと絶句した。

 というか、PART2のわりに、1990年に作成されているじゃないか。8年後。
 そりゃ、太るわ、エディ・マーフィ。

2021年5月25日火曜日

ナビ

 iPhoneをSIMフリーしたとき、気づいた。
 あれ、テザリングが使えるじゃん——それまでのキャリアとの契約だと、テザリングは別料金を払わなくてはいけなかったのだ。よくよく考えたらおかしな話で、通信料はすでに契約してデータ通信の部分をどう使おうとユーザの勝手のはずなのだが、金を払え、というのだ。それもあってテザリングは使っていなかった。
 車にiPadを持ちこんで大きな画面でナビにできるというのに。
 iPhoneで我慢していた。
 なんの不便もなかったのだけど。
 使えるのなら。

 元々、車載のミュージックプレイヤーがわりに iPad miniを持ちこんでいたので、それが iPad Proがなったというわけ。スピーカ的にはiPad Proの方がいいし、画面の大きいし、手持ちの全曲が入っているし。ちょっと視界的には邪魔だが。
 心配なのは運転中にiPadのホルダーが外れて落下することぐらいか。

2021年5月24日月曜日

2021年5月20日木曜日

w32-shell-execute(2)

 Windowsを使っていると、RDPでコピー&ペーストしたいことがある。
 Emacs引きこもり生活をしているとこれがちょっと、こまる。Emacsのcopy-fileだと、バッファにファイルがコピーされるわけではないからだ。本当にただのcopy-file。テキストのコピー&ペーストをできるのだけれど。
 なんとなくw32-shell-executeのドキュメントをながめてみたらいつの間にか、できるようになっていた。

(w32-shell-execute  "copy" ファイル名)
w32-shell-execute is a built-in function in ‘C source code’.

(w32-shell-execute OPERATION DOCUMENT &optional PARAMETERS SHOW-FLAG)

Get Windows to perform OPERATION on DOCUMENT.
This is a wrapper around the ShellExecute system function, which
invokes the application registered to handle OPERATION for DOCUMENT.

OPERATION is either nil or a sw32-shell-execute is a built-in function in ‘C source code’.

(w32-shell-execute OPERATION DOCUMENT &optional PARAMETERS SHOW-FLAG)

Get Windows to perform OPERATION on DOCUMENT.
This is a wrapper around the ShellExecute system function, which
invokes the application registered to handle OPERATION for DOCUMENT.

OPERATION is either nil or a string that names a supported operation.
What operations can be used depends on the particular DOCUMENT and its
handler application, but typically it is one of the following common
operations:

 "open"    - open DOCUMENT, which could be a file, a directory, or an
	       executable program (application).  If it is an application,
	       that application is launched in the current buffer’s default
	       directory.  Otherwise, the application associated with
	       DOCUMENT is launched in the buffer’s default directory.
 "opennew" - like "open", but instruct the application to open
	       DOCUMENT in a new window.
 "openas"  - open the "Open With" dialog for DOCUMENT.
 "print"   - print DOCUMENT, which must be a file.
 "printto" - print DOCUMENT, which must be a file, to a specified printer.
	       The printer should be provided in PARAMETERS, see below.
 "explore" - start the Windows Explorer on DOCUMENT.
 "edit"    - launch an editor and open DOCUMENT for editing; which
	       editor is launched depends on the association for the
	       specified DOCUMENT.
 "find"    - initiate search starting from DOCUMENT, which must specify
	       a directory.
 "delete"  - move DOCUMENT, a file or a directory, to Recycle Bin.
 "copy"    - copy DOCUMENT, which must be a file or a directory, into
	       the clipboard.
 "cut"     - move DOCUMENT, a file or a directory, into the clipboard.
 "paste"   - paste the file whose name is in the clipboard into DOCUMENT,
	       which must be a directory.
 "pastelink"
	   - create a shortcut in DOCUMENT (which must be a directory)
	       the file or directory whose name is in the clipboard.
 "runas"   - run DOCUMENT, which must be an excutable file, with
	       elevated privileges (a.k.a. "as Administrator").
 "properties"
	   - open the property sheet dialog for DOCUMENT.
 nil       - invoke the default OPERATION, or "open" if default is
	       not defined or unavailable.

DOCUMENT is typically the name of a document file or a URL, but can
also be an executable program to run, or a directory to open in the
Windows Explorer.  If it is a file or a directory, it must be a local
one; this function does not support remote file names.

If DOCUMENT is an executable program, the optional third arg PARAMETERS
can be a string containing command line parameters, separated by blanks,
that will be passed to the program.  Some values of OPERATION also require
parameters (e.g., "printto" requires the printer address).  Otherwise,
PARAMETERS should be nil or unspecified.  Note that double quote characters
in PARAMETERS must each be enclosed in 2 additional quotes, as in """.

Optional fourth argument SHOW-FLAG can be used to control how the
application will be displayed when it is invoked.  If SHOW-FLAG is nil
or unspecified, the application is displayed as if SHOW-FLAG of 10 was
specified, otherwise it is an integer between 0 and 11 representing
a ShowWindow flag:

  0 - start hidden
  1 - start as normal-size window
  3 - start in a maximized window
  6 - start in a minimized window
 10 - start as the application itself specifies; this is the default.

tring that names a supported operation.
What operations can be used depends on the particular DOCUMENT and its
handler application, but typically it is one of the following common
operations:

 "open"    - open DOCUMENT, which could be a file, a directory, or an
	       executable program (application).  If it is an application,
	       that application is launched in the current buffer’s default
	       directory.  Otherwise, the application associated with
	       DOCUMENT is launched in the buffer’s default directory.
 "opennew" - like "open", but instruct the application to open
	       DOCUMENT in a new window.
 "openas"  - open the "Open With" dialog for DOCUMENT.
 "print"   - print DOCUMENT, which must be a file.
 "printto" - print DOCUMENT, which must be a file, to a specified printer.
	       The printer should be provided in PARAMETERS, see below.
 "explore" - start the Windows Explorer on DOCUMENT.
 "edit"    - launch an editor and open DOCUMENT for editing; which
	       editor is launched depends on the association for the
	       specified DOCUMENT.
 "find"    - initiate search starting from DOCUMENT, which must specify
	       a directory.
 "delete"  - move DOCUMENT, a file or a directory, to Recycle Bin.
 "copy"    - copy DOCUMENT, which must be a file or a directory, into
	       the clipboard.
 "cut"     - move DOCUMENT, a file or a directory, into the clipboard.
 "paste"   - paste the file whose name is in the clipboard into DOCUMENT,
	       which must be a directory.
 "pastelink"
	   - create a shortcut in DOCUMENT (which must be a directory)
	       the file or directory whose name is in the clipboard.
 "runas"   - run DOCUMENT, which must be an excutable file, with
	       elevated privileges (a.k.a. "as Administrator").
 "properties"
	   - open the property sheet dialog for DOCUMENT.
 nil       - invoke the default OPERATION, or "open" if default is
	       not defined or unavailable.

DOCUMENT is typically the name of a document file or a URL, but can
also be an executable program to run, or a directory to open in the
Windows Explorer.  If it is a file or a directory, it must be a local
one; this function does not support remote file names.

If DOCUMENT is an executable program, the optional third arg PARAMETERS
can be a string containing command line parameters, separated by blanks,
that will be passed to the program.  Some values of OPERATION also require
parameters (e.g., "printto" requires the printer address).  Otherwise,
PARAMETERS should be nil or unspecified.  Note that double quote characters
in PARAMETERS must each be enclosed in 2 additional quotes, as in """.

Optional fourth argument SHOW-FLAG can be used to control how the
application will be displayed when it is invoked.  If SHOW-FLAG is nil
or unspecified, the application is displayed as if SHOW-FLAG of 10 was
specified, otherwise it is an integer between 0 and 11 representing
a ShowWindow flag:

  0 - start hidden
  1 - start as normal-size window
  3 - start in a maximized window
  6 - start in a minimized window
 10 - start as the application itself specifies; this is the default.

  以前はできなかったのに。

2021年5月19日水曜日

スチーム

 そういうわけで、蒸し器を買ってみた。

 こんなやつ。

 一番小さいやつを買ったのだが、ちょっと大きかった。
 普段、使わない大き目の鍋を使うしかない。

 もやしを入れて塩胡椒。

 肉と野菜を入れて塩胡椒。

 蒸す。

 できあがり。

2021年5月18日火曜日

唐揚げをつくれないかな、と思ったのだ。

 だけれど、家で揚げ物はちょっとなぁ。
 調べてみると、フリーザーバッグで味付けしたりするようだった。
 おや? それならフリーザーバッグごと、レトルトカレーのように熱湯につけたらどうだろう?
 唐揚げではないかもしれないが。
 やってみたところ、ちょっと熱が足りなかったようなので、炒めたが、十分、いけた。

 

 ただ、フリーザーバッグで湯煎する、というのはどうなんだろう。
 何か身体に悪そうなものが溶け出しそうな気もする 1
 そういえば、茶碗蒸しというものがあるじゃないか。
 で、お湯を沸かす鍋に、味付けした鶏のモモ肉をいれた小鉢をいれて蒸した。お湯に小鉢をつけたけれど、これはむしろ、茶碗蒸しとはちがっている、と指摘を受けたが。

 

 油がすんげー出た。
 味付けにつかったマヨネーズのせいかもしれないが。

Footnotes:

1

ちょこちょこ調べてみたところ、だいじょうぶそうな感じだった。

2021年5月17日月曜日

2021年 第19週

 体重が落ちなくなった。
 やはり原因は弁当か?