パワーシェルでテキストファイルを読んで文字列を置換するLinux の SED

バッチファイルpowershell -command "(Get-Content .\hello.txt) | %%{ $_ -replace 'hello','konbanwa'} | set-c ...
PowerShell を使ってテキストファイルの先頭や末尾の行や途中の行を表示する方法Linux のHead Tail

バッチファイルpowershell -command "Get-Content output1.txt -Head 2 | Out-Host"powershell -command "Get-Content o ...
パワーシェルでテキストファイルを読んで指定した行数ごとにファイルを分割して 出力するLinux のsplit

バッチファイルpowershell -command "$i=1;$inputF ='output1.txt';$baseName = ::GetFileNameWithoutExtension($inputF); ...
パワーシェルでテキストファイルを読んで指定した行数ごとに横に並べて CSV 出力する

バッチファイルpowershell -command "Get-Content output1.txt -ReadCount 2 | %%{$_ -join ','} | Out-Host"aqbkcma ...
linux paste コマンドのようにパワーシェルPowerShell でテキストファイルを横方向に結合する

Windows パソコンでペーストコマンドと同じようなことをします
バッチファイルpowershell -command "Get-Content output1.txt , output2.txt | Group-O ...マウスカーソルを当てた場所の完全なxpathをコピーしてテキストファイルに自動的に書き出す。Copy_full_xpath

方法
Chrome 上で要素を右クリック、「検証」を選ぶ
デベロッパーツール上で要素を右クリック、「Copy→Copy_full_xpath」を選ぶ
画像を認識して手で行っている作業を自動化します
/html/ ...マイクに喋りかけて音声をwhisperでリアルタイムに文字起こしする

whisper-micインストールpip install whisper-micオプション: --model 使用するモデル --device 使用するデバイス --english 英語モデルを使用するかどうか --verbose 詳細 ...
音声をwhisperで文字起こしする

インストール
ffmpegのダウンロードと展開ffmpeg-master-latest-win64-gpl.zip
Releases · BtbN/FFmpeg-Builds (github.com)
̶ ...
HTTP File Server を使ってパソコンとデータをやり取りする

httpserver
Web ブラウザを使ってスマホからもアップロードや ダウンロードをすることができます
gohttpserverGitHub – codeskyblue/gohttpserver: The b ...
相手の条件と希望条件を入れてマッチングするプログラム

プログラムclass Person: def __init__(self, name, age, gender, hobbies, desired_age_range, desired_hobbies): self.name = name ...