JavaScript

書式
var 変数名
function 関数名(){ 変数名}
使用例

<!DOCTYPE html><html><body><div id="cft">& ...

Kotlin

書式
public static Path move(Path source,Path target,CopyOption… options)throws IOException
使用例

import ...

Kotlin

書式
public static Path copy(Path source,Path target,CopyOption… options) throws IOException
使用例

impor ...

Kotlin

書式
public static boolean exists(Path path,LinkOption… options)
public static boolean notExists(Path pat ...

Ubuntu

エラー現象
<unknown>:0: error: could not load the swift standard library

対策
# sudo apt-get install cla ...

PHP

説明
bool is_int ( mixed $var )
使用例

<!DOCTYPE html><html><body><?php//変数の型が整数かどうかを確認$x ...

Ubuntu

エラー現象
swift: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file o ...

Ubuntu

エラー現象
# swift –version
swift: error while loading shared libraries: libtinfo.so.5: cannot open shared o ...

Ubuntu

現象
$ su – root
Password:
su: Authentication failure

原因
Ubuntuのデフォルトでrootユーザのパスワードが設定されていな ...

Linux

書式
grep -v  正規表現 ファイル名|less
-v, –invert-match
一致しない行を選択する

使用例1
ファイルにで始まるコメント行は表示
# gr ...

Linux

書式
find ディレクトリ -type f -size サイズ -exec ls -l {} \;

使用例
1.サイズが110M以上のファイルを検索
# find/usr/local/src -t ...

Linux

書式
kill -9 プロセスID
kill -KILL プロセスID
kill -SIGKILL プロセスID
使用例
1.プロセスの状態を確認
# ps aux | grep htt ...

Linux

書式
renice オプション 優先度
オプション 
-g グループ名
-p プロセスID
-u ユーザー名
使用例
1.プロセスIDのnice値を確認
# top p ...

Linux

1.書式
cat ファイル名| sed/^/’>’/

2.使用例
# cat 200.txt
AA
BB
11
22

3.行頭に引用 ...

Linux

書式
grep 正規表現式  ファイル名 | cut -d: -f2
cutコマンドのオプション
-f, –fields=LIST select only these fields; also pr ...

Linux

書式
join オプション ファイルA ファイルB > ファイルC
オプション一覧

-j FIELD equivalent to '-1 FIELD -2 FIELD'-o FORMAT obey FORM ...

Rust

1.ダウンロード
2.「rustup-init.exe」を実行する
3.インストール画面

The Cargo home directory located at: C:\Users\USER\.carg

jQuery

書式
$(‘input:checkbox’).prop(‘checked’,true)
使用例

<input type="checkbox" name="cf ...