- フォントは 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
| (__builtins__:="".__reduce_ex__(-~(()==()))[()<()].__getattribute__("\u005f_builtins__X"[:~(()<())]))["\U00000062reakpoint"]() |
了解しました!未踏ジュニアに『採択されるために役立つ』実践的な知見を重点的に調査します。
- 書類選考のコツ(提案書の具体的な書き方、採択された書類と落選した書類の違い)
- 面接対策(よく聞かれる質問、面接時の評価ポイント、受け答えのコツ)
- プロジェクトの作り込み(どの程度の完成度が求められるか、プロトタイプの重要性)
- 落選者と採択者の違い(過去の事例から、どんな応募が落とされやすいのか)
- 選考委員の発言分析(メンターや運営側が重視するポイント、選考基準)
- 過去の採択者の体験記・ブログ・インタビューから得られる実践的な知見
徹底的に調査し、実際に採択されるために役立つ実践的なレポートを作成します。しばらくお待ちください!
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
| const token = document.cookie.split("; ").map(c => c.startsWith("token=") ? c.split("=").pop() : null).filter(Boolean).shift() | |
| const alist = [ | |
| 'notes1', | |
| 'notes10', | |
| 'notes100', | |
| 'notes500', | |
| 'notes1000', | |
| 'notes5000', | |
| 'notes10000', |
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
| # 1. Bottle framework | |
| from bottle import route, run | |
| @route('/') | |
| def index(): | |
| return '<h1>Hello World!</h1>' | |
| run(host='localhost', port=8000, debug=True) | |
| # 2. Django framework | |
| # 2.1. Modify settings.py file |