MySQL: CDC

MySQL: CDC(Change Data Capture) AWS Database Migration Service による Change Data Capture: 前編 AWS Database Migration Service による Change Data Capture: 後編 AWS DatabaseMigrationService での DB 移行構築ハンズオン RDS MySQL AWS DMS のソースとして AWS が管理する MySQL 互換データベースの使用 バイナリログ(binlog_format == ROW) binlog_row_image == Full binlog_checksum == NONE DMS AWS Database Migration Service DMS で AWS RDS へ継続的に移行してみた DMS Endpoint Connection Test Failed with Secret Manager Manage your AWS DMS endpoint credentials with AWS Secrets Manager How to connect to AWS Secrets Manager service within a Virtual Private Cloud AWS Database Migration Service (AWS DMS) の CDC レプリケーションを使ってみた サーバーレス: ...

2023年12月28日 · 2 分

PyCaret

PyCaret: AutoML https://pycaret.org/ PyCaret 入門 Python で機械学習を自動化しよう!【AutoML】 【AutoML】PyCaret で超ラクに機械学習!!

2023年12月25日 · 1 分

Python プロファイリング

cProfile Python プログラムが遅い原因を調べる方法 1 2 python -m cProfile -o /tmp/epm.prof manage.py reports build 7646 snakeviz /tmp/epm.prof 名前 意味 ncalls 呼び出し回数 tottime 関数の処理時間の合計 (呼び出した関数の処理時間は除外) percall ( tottime の隣) tottime を ncalls で割った値。一回の実行にかかる平均時間 cumtime 関数の処理時間の合計 (呼び出した関数の処理時間も含める) percall (sumtime の隣) cumtime を ncalls で割った値。一回の実行にかかる平均時間 filename:lineno(function) ファイル名、行番号、関数名

2023年12月24日 · 1 分

「この接続ではプライバシーが保護されません」

「この接続ではプライバシーが保護されません」 【18 の方法】「この接続ではプライバシーが保護されません」エラーを解決するには SSL TEST https://www.ssllabs.com/ssltest/index.html DNS CAA DNS CAA (Certification Authority Authorization)利用が標準化 Route 53 が CAA レコードに対応しました!

2023年12月13日 · 1 分

devel を削除したたが devel/0 を作れない

git update-ref -d これだけだと devel/2023-12-14 を pull できない git branch -d devel error: cannot lock ref 'refs/remotes/origin/devel/2023-12-14': 'refs/remotes/origin/devel' exists; cannot create 'refs/remotes/origin/devel/2023-12-14' From github.com:spin-dd/taihei-epm-server ! [new branch] devel/2023-12-14 -> origin/devel/2023-12-14 (unable to update local ref) error: some local refs could not be updated; try running 'git remote prune origin' to remove any old, conflicting branches update-ref でクリアされる git update-ref -d refs/remotes/origin/devel

2023年12月13日 · 1 分

半角カタカナ

半角カタカナ 全角・半角カタカナのバリデーションルール設定方法(正規表現)

2023年12月12日 · 1 分

EC2 自動再起動

EC2 自動再起動 EC2 インスタンスのステータスチェックが 1/2 の場合でも AutoRecovery したい! AWSSupport-ExecuteEC2Rescue 到達不可能なインスタンスでの EC2Rescue ツールの実行

2023年12月7日 · 1 分

会計

会計 一般管理費 販売費及び一般管理費を英語で?【海外で役に立つ会計英語をカンタン解説】 SGA: 販売:Selling 一般:General 管理:Administrative

2023年11月23日 · 1 分

Bash スクリプト

bash スクリプト bash シェルスクリプトで引数とオプションを解析する シェル変数のデフォルト値を設定する compdef 1 2 3 4 5 6 7 8 9 eval "$(uv generate-shell-completion zsh)" _uv_run_mod() { if [[ "$words[2]" == "run" && "$words[CURRENT]" != -* ]]; then _arguments '*:filename:_files' else _uv "$@" fi } 1 compdef _uv_run_mod uv uv というコマンドに対して、_uv_run_mod という補完関数を関連付けています。 uv の後に Tab キーを押すと、_uv_run_mod 関数で定義された補完候補が表示されます。

2023年11月20日 · 1 分

Python with文

With 【Python】with 文の構造を理解する

2023年11月9日 · 1 分