Tech Dec 2022

Tech Dec 2022

Donny Donny
December 10, 2022
December 14, 2022
748
-

12月10日 土曜

 前は日記に置いてるが、やはりテックのものを別記事にまとめます。

Stable Diffusion

 Stable Diffusionを安定で高質の絵を出力させるには呪文が必要らしい。この文章を参考しました。最初はプロンプトだけを使ってるが、顔や体が歪んでしまいがち。ネガティブプロンプトがあることを思い出して、試しに入れてみたら歪みが大分治まった。

 現時点で一番いいプロンプト。

--prompt "${normal_prompt_content} \
with fantastic lighting fantastic composition \
in high production quality" \
--negative-prompt "twisted face twisted body closeup view"

 一部の出力。

  1. 銃を持つ学校制服を着てる少女
--prompt "a cute anime girl in school skirt uniform holding a gun \
with fantastic lighting fantastic composition \
in PlayStation5 octane render style" \
--negative-prompt "twisted face twisted body closeup view"

  1. 白いドレスの少女(3D)
--prompt "a cute anime girl in white dress \
with fantastic lighting fantastic composition \
in PlayStation5 octane render style" \
--negative-prompt "twisted face twisted body closeup view"

  1. 白いドレスの少女(2D、精確のプロンプトではない)
--prompt "a cute anime girl in white dress \
with fantastic lighting fantastic composition \
in high production quality" \
--negative-prompt "twisted face twisted body closeup view"

  1. 他1(絵柄は豊か)

  1. 他2

12月5日 月曜

マック録画時の音声出力

 マックに音声出力を記録するのはなかなか面倒で、なぜかシステムからはサッポートしていない。BlackholeというAudio loopback driverを通して可能になる。GitHub - ExistentialAudio/BlackHole

 Blackholeをインストールした後は以下の命令で機能させる。

# Restart CoreAudio with the terminal command
$ sudo launchctl kickstart -kp system/com.apple.audio.coreaudiod

11月30日 水曜

GPG Encryption

 GPGでデータを暗号化することができます。

  1. 暗号化キーを生成
$ gpg --full-generate-key
  1. データを暗号化する
$ gpg -e -r username -o output filename
# もしくは
$ gpg -e -r username@example.com -o output filename
  1. 暗号化したデータを復元
$ gpg -d -r username -o output filename
  1. データを解明する時、暗号化キーのパスワードは一時保存される。データ解明後は保存したパスワードをメモリから削除。
$ gpg-connect-agent reloadagent /bye
  1. プライベートキーのエクスポート
$ gpg -a --export-secret-key username > secret.pem
  1. キーのインポート
$ gpg --import secret.pem # インポート
$ gpg --list-key # 既存のキーを表示