カテゴリー: useful tools

  • 画像の生成AI種類

    • Midjourney:Discordでできる
    • Stable Diffusion:自分のPCでできる
      (Hugging Faceというコミュニティサイトあり)
    • Adobe:イラレでもフォトショでもできるらしい
    • DALLE3:OpenAI開発の画像生成AI
    • ERNIE-ViLG:中国版Stable Diffusionか?
  • You have not set or verified your email server configuration

    You have not set or verified your email server configuration, yet. Please head over to the “Basic settings” in order to set them. Afterwards, use the “Send email” button below the form to verify your settings. For more details see the documentation.

    公式ドキュメントの該当箇所を見ると・・・

    webから設定するほうが簡単そうなのでメールを設定する

  • Your installation has no default phone region set.

    Your installation has no default phone region set. This is required to validate phone numbers in the profile settings without a country code. To allow numbers without a country code, please add “default_phone_region” with the respective ISO 3166-1 code of the region to your config file. For more details see the documentation.
    電話番号の地域が設定されていないよというので、

    config/config.phpに下記を追加
    ‘default_phone_region’ => ‘JP’,

  • The database is used for transactional file locking.

    The database is used for transactional file locking. To enhance performance, please configure memcache, if available.

    データベースはトランザクショナルファイルロックに使用されています。パフォーマンスを向上させるために、利用可能な場合はメモリキャッシュを構成してください、とのこと。

    あちこちからDBへのアクセスが集中した場合、トランザクショナルファイルロックがかかり、変更が重複しないようにしてくれるんだけど、メモリキャッシュが足りないと・・・。

    言われた公式ドキュメントの該当箇所を見る

    config/config.phpに下記を追加

    ‘filelocking.enabled’ => true,
    ‘memcache.locking’ => ‘\OC\Memcache\Redis’,
    ‘redis’ =>
    array (
    ‘host’ => ‘localhost’,
    ‘port’ => 6379,
    ‘timeout’ => 1.0,
    ),

    $ sudo systemctl restart apache2
    $ sudo systemctl restart php8.2-fpm
  • pandoc

    md,mkd ファイルを変換してくれるソフト

    If you need to convert files from one markup format into another, pandoc is your swiss-army knife. Pandoc can convert between the following formats:

    Pandoc a universal document converter

    日本語訳

    macのHomebrewでインストール

    % brew update
    % brew install pandoc
    % pandoc --version

    無事pandoc 3.1.12.2をインストール終了。次にLatexもインストール

    % brew update
    % brew install --cask mactex

    mactexのpkgは結構重い→インストール完了しても消しきれない・・・

    % sudo rm -rf /usr/local/texlive
    % brew uninstall --cask macte

    本当に消せたのかな?ひとまず、時間のある時に再チャレンジ→pending…

  • Mac Automator

    ワークフロー(Workflow):

    ワークフローは、Automatorで作成される一連のタスクや手順の集まり。ワークフローは複数のアクションを組み合わせられる。ファイルの変換、画像のリサイズ、テキストの処理などのタスクを自動化できる。

    アプリケーション(Application):

    アプリケーションは、Automatorで作成されたワークフローを実行するための実行可能なファイルです。ワークフローをアプリケーションに変換すると、そのワークフローが独立した実行可能なアプリケーションとして動作し、ワークフローを実行するためにAutomatorを開く必要がなくなります。これにより、ワークフローを簡単に共有したり、外部から実行したりすることができます。

    フォルダアクション(Folder Action):

    フォルダアクションは、特定のフォルダに関連付けられたAutomatorワークフローです。フォルダ内のファイルやフォルダに変更が加えられると、そのフォルダアクションがトリガーされ、関連付けられたワークフローが自動的に実行されます。例えば、特定のフォルダにファイルが追加されたときにそのファイルを自動的に処理したり、特定のフォルダからファイルが削除されたときにそれを自動的にバックアップしたりするために使用されます。

  • NFCとNFD

    NFC:Normalization Form Canonical Composition
    Macでは主にNFCがデフォルトの正規化形式

    NFD:Normalization Form Canonical Decomposition
    Windowsでは主にNFDがデフォルト

    例えば、結合文字がNFCでは「ダ」(U+30C0)だが、NFDではタ」(U+30BF)+「゙」(U+3099)となる