「当たった、すごい!」質問に答えるだけで出身地当てる「方言チャート EXTRA」が再び話題 - ITmedia NEWS
https://www.itmedia.co.jp/news/articles/2606/23/news087.html
??????><;
色の変遷と目標表示おもしろい><><
Trump acknowledges ‘real problems’ at reflecting pool after $14m makeover, blaming ‘vandalism’ | Washington DC | The Guardian
https://www.theguardian.com/us-news/2026/jun/20/trump-reflecting-pool-renovation-vandalism
引数版><
# 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)