Faenza 1.3.1のダウンロード
ダウンロード:
提供元サイトからダウンロード
sudo add-apt-repository ppa:tiheum/equinox
sudo apt-get update && sudo ...
「TypeScript」keyof演算子のサンプル
書式
type クラス名 = {
メンバー変数名1:データの型;
メンバー変数名2:データの型;
};
type 変数名 = keyof クラス名
型コンテキストで keyof演算子 を ...
PostgreSQL 13にロールの名前を変更する
環境
Windows10 64 bit
PostgreSQL 13.2
書式
ALTER ROLE ロール名 RENAME TO 新しいロール名
使用例
1.「test00」ロー ...
「jQUery入門」location.reload()の使い方
jQuery
$(‘#iframeid_cft’).contentDocument.location.reload(true);
Javascript
document.getEle ...
QuartzDesk 1.1.1 のダウンロード
ダウンロード:
提供元サイトからダウンロード
QuartzDesk is a multiplatform self-hosted Java/J2EE web-application for the manageme ...
Windows11にモビリティ センターから画面の明るさを変更する
環境
Windows 11
操作方法
1.「スタート」を右クリックします。
2.画面の「モビリティ センター」をクリックします。
3.「Windowsモビリティ センター」の画面が表 ...
「Swift5」ジェネリクスクラスを使うサンプル
環境
Swift version 5.2.3 (swift-5.2.3-RELEASE)
Target: x86_64-unknown-linux-gnu
書式
class クラス名<T> ...「Java入門」java.time.LocalDate.plusとjava.time.LocalDate.minusのサンプル
サンプルコード:
package procft;
import java.time.LocalDate;
import java.time.Period;
public class LocalDat ...
twcbackup 1.0.1 のダウンロード
ダウンロード:
提供元サイトからダウンロード
twcbackup is usually run automatically (from cron) every night to generate a backup ...
Ubuntu 21.10にBleachbitをインストールする
環境
# cat/etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=21.10
DISTRIB_CODENAME=impish
DISTRIB_ ...
Vrapper 0.34.0 のダウンロード
ダウンロード:
提供元サイトからダウンロード
Vrapper is an eclipse plugin which acts as a wrapper for eclipse text editors to pro ...
「Java」PatternとMatcherで半角英小文字を判断する
構文
1.public static Pattern compile(String regex)
指定された正規表現をパターンにコンパイルします。
2.public Matcher matcher(CharSe ...
MariaDBで現在使っているDB名を取得する
環境
windows 10 64 bit
MariaDB 10.6.4
書式
SELECT database();
使用例
MariaDB > use testdb;Databa ...「C#」String.Formatで数値を指定桁数でゼロを埋める
書式
int 変数名 =値
String.Format(“{0:指定桁数ゼロ”, 変数名);
「{0:00000}」のような書式は、書式指定項目と呼ばれます。
指定した桁数よりも ...
MariaDBで乱数を生成する方法
環境
windows 10 64 bit
MariaDB 10.6.4
書式
RAND( )
使用例
1.1~10までの乱数を取得します
「Go言語」switch文変数定義のサンプル
書式
switch 変数名:=処理式;変数名 {
case 値1:
処理コード1
case 値2:
処理コード2
default:
処理コード
}
使用例 ...
Linuxでgrepコマンドで文字列を抽出するサンプル
1.'’の文字列
grep ‘\’ userinfo.csv
2.'’が2回続く文字列
grep -E ‘(\){2}’ userin ...
「jQuery」Datepickerでカレンダーを表示する
環境
以下のライブラリを利用します
・jquery.min.js
・jquery-ui.min.js
・jquery-ui.css
・jquery.ui.datepicker-ja.min.js ...