React.js

説明
componentWillUnmount() は、コンポーネントがアンマウントされて破棄される直前に呼び出されます。
componentDidMount() で作成された購読の解除など、このメソッドで必要なクリー ...

React.js

書式
constructor(props) {
super(props);
this.state = {date: new Date()};
}
使用例

<!DOCTYPE html ...

React.js

説明
toLocaleTimeString() メソッドは、この Date オブジェクトの「時刻」部を表す言語に依存した文字列を返します。
使用例

<!DOCTYPE html><html> ...

React.js

ReactDOM.render()の説明
第2引数で指定した DOM 要素に対して、第1引数で指定したコンポーネントを割り当てます
使用例

<html><head><meta cha ...

React.js

書式
ReactDOM.render(
some code
);
使用例

<!DOCTYPE html><html><head><meta charset ...

C#

説明
public static DateTime Now { get; }
コンピューター上の現在の日時を現地時刻で表した DateTime オブジェクトを取得
使用例

using System;usi ...

Cmd

1.空のファイル「sample.txt」を生成
使用例
>type nul > sample.txt

2.ファイル「test01.txt」の内容をファイル「sample.txt」に追加

Cmd

1.ファイルの所有者を表示
使用例
>dir/Q
ドライブ C のボリューム ラベルは Windows です
ボリューム シリアル番号は 1850-7FEC です

C:\rubyles ...

Cmd

現象
>cd \\192.168.1.12\share\test
‘\\192.168.1.12\share\test
CMD では UNC パスは現在のディレクトリとしてサポートされません。 ...

Excel VBA

書式
if (条件式1) And (条件式2) Then
使用例

Sub ifandsample() Dim x, y As Integer x = 34 y = 56 If (x = 34) And (y = ...

Excel VBA

書式

If (条件) Then  some codeElseIf (条件) Then  some codeElse  some codeEnd If

使用例

Sub sampfunc() Dim cft As Inte ...

batch

使用例

@echo offset yyyy=%date:~0,4%set mm=%date:~5,2%set dd=%date:~8,2%set res=%yyyy%:%mm%:%dd%echo %res%

結果
2 ...

Bootstrap4

説明
.carousel-indicators インジケータを表示
.carousel-control-{prev|next}, .carousel-control-{prev|next}-icon
左右の矢印 ...

Windows10

インストール方法
1.「Windows10」VMware Workstation 16 Playerをインストールする方法
2.「次へ」をクリックします。
3. 「使用許諾契約書に同意します」チェックを入れます ...

Bootstrap4

使用例

<head> <title>Bootstrap 实例</title> <meta charset="utf-8"> <meta name="viewport" con ...

Bootstrap4

使用例

<div class="container"> <h2>折りたたみのサンプル</h2> <p>2hhhhh</p> <button type="butto ...

CentOS

操作方法
1.デバイスを確認
# nmcli device
DEVICE TYPE STATE CONNECTION
virbr0 bridge 接続済み virbr0
ens33 ethern ...

CentOS

操作方法
# cat/etc/redhat-release
CentOS Linux release 8.2.2004 (Core)

firewallを確認
# systemctl list-uni ...