Software

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

更新内容:

KMP Connect added
Added Win-Eyes TTS function (E ...

System

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

更新内容:

Change to exception handling
Fix to some of the ...

Java

構文
インターフェース名 オブジェクト名 = () -> {
//some code
return xxx
}

使用例
(1).インターフェースの定義

package c ...

Java

説明
java.util.Vector<String>
Vectorクラスは、オブジェクトの可変長配列を実装します。
Javaコード

package com.arkgame.study;imp ...

Linux

操作方法
# lspci
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX – 82443BX/ZX/DX Host bridge (rev 01)

Source

apt-get install python-software-propertiesapt-add-repository ppa:chris-lea/node.jsapt-get updatenode.jsのインストールapt-get in ...

Source

1.python3.4.1をダウンロード
URL:

2.以前インストールしたpython3、pyenv、pip、setuptoolsを徹底削除
sudo rm -rf/usr/bin python3* pi ...

Source

 

sudo apt-get purge nginx-*
sudo apt-get autoremove
削除した後下記コマンドで確認
nginx -v またはls/etc/nginx ま ...

Source

1.rvmのインストール
sudo apt-get install curl
curl -L | bash -s stable
source ~/.rvm/scripts/rvm
rvm -v ...

DataBase

1.mysqlで時間カラムをdaterimeへ変更
alter table tablename add pay_date datetime comment ‘秒まで精確時間’

2.SQL文で ...

VB.net

書式
1.数値.ToString(“x2”) 16進数文字列でアルファベットが小文字
2.数値.ToString(“X2”) 16進数文字列でアルファベットが大文字

PostgreSQL

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

Oracle ADF Tools
Oracle Cloud Tools
Oracle Coherence Tools
Oracle Database Tool ...

Linux

書式
a 全てのユーザ
x 実行権
r 読み取り
w 書き込み
u 所有者

使用例1
# chmod a+x test.txt
# ls -l test.txt ...

Security

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

更新内容:

Enhanced detections are those that have been mod ...

Python

構文
文字列
サンプルコード

# coding: utf-8#!/usr/bin/python3str = 'skillinarkgame5678'print("result1: ",str) print("re ...

Windows10

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

batch

書式
exit
使用例

@echo off rem メッセージを出力echo message is AAA rem 処理を中止exit rem 処理が到達しないecho message is BBB

&nbs ...

Java

構文
public interface インターフェース名 {
int 関数名(引数1,引数2,…)
}
インターフェース名 オブジェクト名 =(引数1,引数2…){
/ ...