R言語のデータ型とデータ構造
データ型 (typeof)
integer
整数型
double
実数(浮動小数点数)型
complex
複素数型
character
文字型
logical
論理型
raw
バイト型
typeof(x)
mode(x)
storage.mode(x)
続きを読む
R言語のデータ型とデータ構造
整数型
実数(浮動小数点数)型
複素数型
文字型
論理型
バイト型
typeof(x)
mode(x)
storage.mode(x)
続きを読む
利用可能なlocaleが足りない。
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$ locale locale: Cannot set LC_CTYPE to default locale: No such file or directory locale: Cannot set LC_MESSAGES to default locale: No such file or directory locale: Cannot set LC_ALL to default locale: No such file or directory LANG=ja_JP.UTF-8 LC_CTYPE="ja_JP.UTF-8" LC_NUMERIC="ja_JP.UTF-8" LC_TIME="ja_JP.UTF-8" LC_COLLATE="ja_JP.UTF-8" LC_MONETARY="ja_JP.UTF-8" LC_MESSAGES="ja_JP.UTF-8" LC_PAPER="ja_JP.UTF-8" LC_NAME="ja_JP.UTF-8" LC_ADDRESS="ja_JP.UTF-8" LC_TELEPHONE="ja_JP.UTF-8" LC_MEASUREMENT="ja_JP.UTF-8" LC_IDENTIFICATION="ja_JP.UTF-8" LC_ALL= |
パネル (Problems, Output, Debug Console, Terminal, …) の開閉方法
CTRL+@
デフォルト設定では "Terminal" ⇒ "New Terminal" (Ctrl+Shift+@) で PowerShell が開く。

Visual Studio Code 1.82.1
c:\Windows\system32\certutil.exe
|
1 |
certutil -hashfile <ファイル名> <アルゴリズム名> |
|
1 2 3 4 |
C:> certutil -hashfile image.bin SHA1 SHA1 ハッシュ (対象 image.bin): 653f96b31559592b21a2694d3e46283a50c510db CertUtil: -hashfile コマンドは正常に完了しました。 |

PowerPointにおいて『オプション』 ⇒ 『保存』 ⇒ 『ファイルにフォントを埋め込む(E)』を指定してファイルを保存すると「
プレゼンテーション内に保存できないフォントがあります。」とポップアップが表示して失敗する。
git は defalt 設定において 大文字と小文字の違いを無視する。
大文字と小文字を区別しない。
違いが無視される名前 : ファイル名、フォルダ名、ref名(ブランチ名, タグ名)
README.TXT と Readme.txt を同一ファイルとみなす。
|
1 |
$ git config --local core.ignoreCase true |
README.TXT と Readme.txt を異なるファイルとみなす。
|
1 |
$ git config --local core.ignoreCase false |
Visual Studio Code において、比較(compare)を開いて、差分(diff)にジャンプする方法。
compare …
gitでリモートリポジトリにアクセスする(pullやpushをする)と次のようなワーニングメッセージが表示される。
|
1 2 3 4 5 6 7 |
warning: git-credential-manager-core was renamed to git-credential-manager warning: see https://aka.ms/gcm/rename for more information warning: git-credential-manager-core was renamed to git-credential-manager warning: see https://aka.ms/gcm/rename for more information From https://example.com/example.git * branch master -> FETCH_HEAD Already up to date. |
Language Server Protocol