- フォントは Web サイトの印象に直結するため、一概にこれが良いとは言えない。
- 特にこれと言った指定がされていない場合は
font-family: sans-serifのみで良い。- Windows 11/10 では 2025 年のアップデートにより Noto Sans JP が標準搭載された。色々と問題があった游ゴシックの呪縛から解放されたのは大きい。
- Android はメーカーにより削除されている可能性はあるが、そうでない場合は原則的に Noto Sans CJK JP が適用される。
- Mac/iOS はヒラギノ角ゴ ProN が適用される。
- アップデートによるフォントの変更の懸念はあるものの、ディスレクシアの方々は UD デジタル教科書体などの読みやすいフォントを設定している可能性があるため、アクセシビリティの観点では
font-family: sans-serifの指定を推奨する。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "progressbar_example/progress" | |
| "time" | |
| ) | |
| func main() { | |
| count := 10000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| fzf "github.com/junegunn/fzf/src" | |
| ) | |
| func main() { |
WezTermは、Rustで書かれたクロスプラットフォームのターミナルエミュレータ。GPUアクセラレーションによる軽量さ、Luaによる高いカスタマイズ性、ターミナルマルチプレクサとしても使える機能性などが特徴。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Test-Command { | |
| param( | |
| [Parameter(Position=1)] | |
| $Name | |
| ) | |
| $null -ne (Get-Command $Name -ErrorAction:"SilentlyContinue") | |
| } | |
| if ((Test-Command ghq) -and (Test-Command fzf)) { |
普段はLinux(Arch Linux + i3)を使っているsheeplaが、Windowsでいい感じの環境を作るためにもがいた記録です。 「キーボード操作ですべてを完結させたい」「お気に入りのフォント・キーバインドを設定して生活したい」といったこだわりを捨てられない人におすすめです。 逆に、「安定した環境を使いたい」「Windowsのデフォルトの設定を壊したくない」「細々としたカスタマイズに時間を掛けたくない」人や商用のリッチなソフトウェアを多用する人にはあまり役に立たないかもしれません。
By creating a restore point, you can restore the system files, registry, etc. to the state when the restore point was created.
Normally, to create a system restore point in the GUI, open System Properties (sysdm.cpl) and open the System Protection tab.
This time, use PowerShell to manage system restore points. Start Windows PowerShell with administrator privileges.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| amazon.jackson19 | |
| amazon.speech.sim | |
| android.amazon.perm | |
| com.amazon.aca | |
| com.amazon.accessorynotifier | |
| com.amazon.advertisingidsettings | |
| com.amazon.ags.app | |
| com.amazon.alexa.modeswitch | |
| com.amazon.alexa.multimodal.gemini | |
| com.amazon.alta.h2clientservice |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .DESCRIPTION | |
| Get available COM (Component Object Model) class name and CLSID | |
| .SYNOPSIS | |
| Get-ComClassNameAndClsid.ps1 [-ClassName] ClassName | |
| .EXAMPLE | |
| Get-ComClassNameAndClsid.ps1 internetexplorer | |
| # or... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .DESCRIPTION | |
| If current user has administrator privilege, returns true else returs false. | |
| .EXAMPLE | |
| Test-DoIHaveAdministratorPrivilege.ps1 | |
| True | |
| #> |
NewerOlder