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
| linters: linters_with_defaults( | |
| commented_code_linter = NULL, | |
| indentation_linter = NULL, | |
| line_length_linter(120), | |
| object_name_linter = NULL, | |
| trailing_blank_lines_linter = NULL, | |
| trailing_whitespace_linter = NULL, | |
| semicolon_linter(allow_compound = TRUE) | |
| ) |
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
| ## 某問題をしらみ潰し方式で解くためのプログラム | |
| n <- 200 | |
| doors <- integer(n) # 配列の準備(0でリセットされる) | |
| for (i in 1:100) { | |
| idx <- seq(i, n, i) # 200を超えないiの倍数を指定 | |
| doors[idx] = doors[idx] + 1 # そのドアの開閉の回数を+1(奇数なら開、偶数なら閉) | |
| } | |
| Open <- (doors %% 2 == 1) # 奇数であれば(ドアが開いている)TRUE、偶数ならFALSE |
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
| status key command | |
| Precomposition Hankaku/Zenkaku IMEOff | |
| Composition Hankaku/Zenkaku IMEOff | |
| Conversion Hankaku/Zenkaku IMEOff | |
| DirectInput Hankaku/Zenkaku IMEOn | |
| Composition Right MoveCursorRight | |
| Composition End MoveCursorToEnd | |
| Composition Down MoveCursorToEnd | |
| Composition Ctrl Right MoveCursorToEnd | |
| Composition Left MoveCursorLeft |
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
| diff -u -r fcitx-skk-0.1.4-orig/po/fcitx-skk.pot fcitx-skk-0.1.4/po/fcitx-skk.pot | |
| --- fcitx-skk-0.1.4-orig/po/fcitx-skk.pot 2020-03-18 09:44:41.258721725 +0900 | |
| +++ fcitx-skk-0.1.4/po/fcitx-skk.pot 2020-03-18 09:49:11.974711877 +0900 | |
| @@ -166,3 +166,8 @@ | |
| #: src/fcitx-skk.desc:61 | |
| msgid "Qwerty Center Row (a,s,d,...)" | |
| msgstr "" | |
| + | |
| +#: src/fcitx-skk.desc:62 (patched) | |
| +msgid "Qwerty Center Row2 (asdfjkl)" |
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
| (eval-when-compile (require 'yatex)) | |
| (autoload 'yatex-mode "yatex" "Yet Another LaTeX mode" t) | |
| (setq auto-mode-alist | |
| (append '(("\\.tex$" . yatex-mode) | |
| ("\\.ltx$" . yatex-mode) | |
| ("\\.cls$" . yatex-mode) | |
| ("\\.sty$" . yatex-mode) | |
| ("\\.clo$" . yatex-mode) | |
| ("\\.bbl$" . yatex-mode)) auto-mode-alist)) |
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
| ## install Vine 6.5 (desktop) | |
| ## => keyboard layout to jp106 | |
| ## setting wireless LAN | |
| # apt-get update | |
| # apt-get install FD -y | |
| ## restart with runlevel 3 | |
| LANG=C | |
| perl -pi -e "s/6.5/VineSeed/g" /etc/apt/sources.list.d/*.list |
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
| file=$FCITX_CONFIG_DIR/skk/user.dict,mode=readwrite,type=file | |
| file=/usr/share/skk/SKK-JISYO.L,mode=readonly,type=file | |
| file=/usr/share/skk/SKK-JISYO.JIS2,mode=readonly,type=file | |
| file=/usr/share/skk/SKK-JISYO.JIS3_4,mode=readonly,type=file | |
| file=/usr/share/skk/SKK-JISYO.zipcode,mode=readonly,type=file | |
| file=/usr/share/skk/SKK-JISYO.itaiji,mode=readonly,type=file | |
| file=/usr/share/skk/SKK-JISYO.itaiji.JIS3_4,mode=readonly,type=file |