These AI-powered guide dogs don’t just lead – they talk - Binghamton News https://www.binghamton.edu/news/story/6168/these-ai-powered-guide-dogs-dont-just-lead-they-talk
飼い主と会話ができる盲導犬ロボットが登場 | カラパイア https://karapaia.com/archives/604789.html
素晴らしいけど、この形状で音声が普通の成人女性風だとなんかGLaDOS風の悪役ロボットに感じてしまう><;
エルモっぽい声を想像してた><;
引数版><
# showrtf.ps1
Param (
[Parameter(Mandatory=$true)]
[string]$filepath
)
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
$form = New-Object System.Windows.Forms.Form
$form.Text = "Show rtf "+$filepath
$richTextBox = New-Object System.Windows.Forms.RichTextBox
$richTextBox.Dock = "Fill"
$richTextBox.LoadFile($filepath, [System.Windows.Forms.RichTextBoxStreamType]::RichText)
$form.Controls.Add($richTextBox)
[System.Windows.Forms.Application]::Run($form)
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
$form = New-Object System.Windows.Forms.Form
$form.Text = "PowerShell RTF 表示するやつ"
$richTextBox = New-Object System.Windows.Forms.RichTextBox
$richTextBox.Dock = "Fill"
$richTextBox.LoadFile("sdk_license.rtf", [System.Windows.Forms.RichTextBoxStreamType]::RichText)
$form.Controls.Add($richTextBox)
[System.Windows.Forms.Application]::Run($form)