Java

説明
Stream<T> filter(Predicate<? super T> predicate)
このストリームの要素のうち、指定された述語に一致するものから構成されるストリームを返します ...

Spring Boot

書式
@RestController
public class クラス名

使用例

@RestControllerpublic class MainController { @GetMapping("/ ...

CSS

書式
スタイル !important;
使用例

<style>#cft{ background-color:SkyBlue !important;}</style><div id=" ...

Java

説明
naturalOrder()
自然な順序
reverseOrder()
自然順序付けの逆
Javaコード

package com.arkgame.study.mvc;import j ...

VB.net

書式
1.フォームを最大化
フォーム名.WindowState = FormWindowState.Maximized

2.フォームを最小化
フォーム名.WindowState = FormWind ...

jQuery Mobile

構文
$(document).on(“scrollstart”,function(){
処理コード
});
スクロールを開始したときに発生するイベントです。
JavaSc ...

AlmaLinux

1.python3.9をインストールする
# dnf module -y install python39

2.複数バージョンの Python3を切り替える

# alternatives --config p ...

CSS

書式
min-width: 数値px;
min-width: 数値em;
min-width: パーセント値
min-width: 40ch;
min-width は CSS のプロパティで、要 ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
更新内容:
improvements and adjustments for the Windows 8.1 an ...

Oracle 19c

エラーメッセージ
$ sqlplus/as sysdba
bash: sqlplus: コマンドが見つかりませんでした..

対策
$ vi ~/.bash_profile
下記の内容を追記 ...

Linux

ダウンロード:
提供元サイトからダウンロード

JavaScript

書式
親ノード.removeChild(子ノード);
使用例

<div id="showA"> <div id="showB"> <p>this is a test demo& ...

Oracle 19c

操作方法
1.DEFAULTプロファイルのパスワードを無期限とする

SQL> ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

2.ユーザ「cf ...

JavaScript

書式
Node.removeChild() メソッドは、 DOM から子ノードを取り除きます。取り除いたノードを返します。
var oldChild = node.removeChild(child);
引数 ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード

 

更新内容:

New option to show a list of all shor ...

JavaScript

書式
1.HTMLElement.innerText
innerText は HTMLElement のプロパティで、ノードとその子孫の「レンダリングされた」テキスト内容を示します。
const rendere ...

JavaScript

書式
bind(thisArg)
thisArg
バインドされた関数が呼び出される際、 this 引数としてターゲット関数 func に渡される値です。
bind(thisArg, arg1, R ...

JavaScript

書式
1.const 変数名 = document.createElement(“input”);
inputで指定された HTML 要素を生成し、  input が認識できない場合は HTML ...