Lazy Diary @ Hatena Blog

PowerShell / Java / miscellaneous things about software development, Tips & Gochas. CC BY-SA 4.0/Apache License 2.0

Entries from 2024-09-01 to 1 month

Get the MAC address of the connected Wi-Fi AP with PowerShell

Background I want to get where I am using my PC with PowerShell, without GPS information like Windows Geolocation Service. I can retrieve the MAC addresses of Wi-Fi APs at the places I often go to, so I tried to get the MAC address of the …

URLエスケープされる文字の範囲(ChromeとGoogle検索の挙動を例に)

URL中に含めてもよい文字(URLの表現上エスケープする必要のない文字)はRFC3986で定められている。 stackoverflow.com 一方、Webアプリケーションの処理中で実際にエスケープしなければいけない文字はそのアプリケーションの実装によって変わる。 ChromeとG…