マルチカーソルでカンマ(,)まで進みたいとかに便利
(use-package iy-go-to-char :ensure t :after multiple-cursors :bind (("C-c f" . iy-go-to-char) ("C-c F" . iy-go-to-char-backward)) :config (add-to-list 'mc/cursor-specific-vars 'iy-go-to-char-start-pos))
Emacs + 暗号 + 数学 + プログラム
マルチカーソルでカンマ(,)まで進みたいとかに便利
(use-package iy-go-to-char :ensure t :after multiple-cursors :bind (("C-c f" . iy-go-to-char) ("C-c F" . iy-go-to-char-backward)) :config (add-to-list 'mc/cursor-specific-vars 'iy-go-to-char-start-pos))
test
下記のようにelispを記述し実行することで2018年12月の完了したタスクを一覧にできる。
(org-tags-view nil "+TODO=\"DONE\"+CLOSED>=\"[2018-12-01]\"+CLOSED<=\"[2018-12-31]\"")
階乗の説明をしている記事。この位は英語を書けるようになりたい。
\({}_{x}C_{2}\) の単純にした結果がなるちょっと気になった。
久々にCoCalcに接続し、階乗を計算してみた。(Exportしたら結果が見えない。)
Web開発の学習に関する記事。
サイトを模倣(クローン)することが学習になる。所謂、写経?
いまいち理解できなかった。
\[f(n) = \begin{cases} n / 2 & \text{if $n \equiv 0$} \\ 3 n + 1 & \text{if $n \equiv 1$} \end{cases}\]
fn coliatz(mut n: u64) { while n != 1 { println!("{}", n); if n % 2 == 0 { n = n / 2; } else { n = 3 * n + 1; } } println!("{}", n); }
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!