あなたは Rust の学習を支援するメンターです。 ユーザーは Rust 初学者です。 構文だけでなく、 「なぜそのように書くのか」 「Rust がどんな考え方をするのか」 まで理解することを目指します。
| name | cognitive-rhythm-writing |
|---|---|
| description | 説明的な文章に緩急を設計するための規範。緩急を装飾ではなく認知モードの切替(観察→逡巡→断定→再観察)と未回収の緊張の管理として扱い、文の拍、段落の密度波形、節の入り方、緩みと駄文の判別、執筆後の機械的な点検手順を定める。読み物として読ませたい章・記事・解説文を生成するとき、または「密度はあるが平坦でおもしろくない」文章を診断・修正するときに使用する。 |
密度の高い文章が退屈になるのは、情報が多いからではなく、全文が同じ認知モードで書かれているからである。 この規範は、読者の認知モード(観察する、迷う、確信する、確かめ直す)を意図的に切り替え、常に「続きを読む理由」を維持することで、読み進める推進力を作る。
I have corrected the original extension CSS To Tailwind to make it work again, but how long it will continue to work remains to be seen.
To install the modified extension, please follow these steps:
- Download the .zip file css-to-tailwind-2.0.0.0-fixed.zip from this Gist.
- Unzip the file and save it somewhere on your computer.
- Remove the existing "official" version of the extension, which is not working anyway.
- Open Google Chrome and go to the "Extensions" page. You can access the Extensions page by entering
chrome://extensionsin the address bar. - Enable "Developer mode" by toggling the switch in the top right corner of the page.
- Click on the "Load Unpacked" button that appears in left area.
普段はLinux(Arch Linux + i3)を使っているsheeplaが、Windowsでいい感じの環境を作るためにもがいた記録です。 「キーボード操作ですべてを完結させたい」「お気に入りのフォント・キーバインドを設定して生活したい」といったこだわりを捨てられない人におすすめです。 逆に、「安定した環境を使いたい」「Windowsのデフォルトの設定を壊したくない」「細々としたカスタマイズに時間を掛けたくない」人や商用のリッチなソフトウェアを多用する人にはあまり役に立たないかもしれません。
Do you want to do remote development on your WSL2 container in Visual Studio Code? Read this.
- On the host set up OpenSSH for Windows
- Run
wsl --updateto make sure you are running the latest WSL - Open WSL and install another SSH server inside WSL with
sudo apt-get install openssh-server - Now run
sudo systemctl enable --now sshto automatically start ssh when WSL starts.
The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the
| ! NEC Portable Internetwork Core Operating System Software | |
| ! IX Series IX2105 (magellan-sec) Software, Version 10.1.14, RELEASE SOFTWARE | |
| ! Compiled Mar 06-Wed-2019 14:03:05 JST #2 | |
| ! Current time Mar 26-Tue-2019 04:29:21 JST | |
| ! | |
| timezone +09 00 | |
| ! | |
| logging buffered 204800 | |
| ! | |
| ntp server 133.243.238.163 |
| #!/usr/bin/env sh | |
| if [ $# -ne 1 ]; then | |
| echo "need epub file!" 1>&2 | |
| echo "example:" 1>&2 | |
| echo " $ $0 ebook.epub" 1>&2 | |
| exit 1 | |
| fi | |
| FILE=`basename "$1" .epub` |
いつもいつもいつもRe:VIEWの記法に悩んでぐぐってしまう皆さんへ送るチートシートです。
| 名称 | ルール | 概要・備考 |
|---|---|---|
| 段落 | 1行以上の空行をはさむと別の段落になる | HTMLでいうP |
| 見出し | =ではじまる行 | =の個数で、章・節・項・段という感じで増えます。HTMLで言うH1, H2, H3, H4, H5 |