Windows10

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

概要:

CoinDesk BPIは実際には価格指数ですので、この価格で売り買いができるわけではありませんが、おおよそ主要取引所の平均的な値になってますので、参 ...

Mac OS X

ダウンロード
提供元サイトからダウンロード
特徴:
Lets you tidy your menu bar apps how you want.
See your menu bar apps when ...

JSTL

構文
<c:set var=”xx” value=”xxx”/>
var 変数名を指定する
value 変数にセットする値を指定する
使用例1 ...

Java

構文
x|y
xまたはyにマッチします。
Javaコード

package com.arkgame.study;import java.util.regex.Matcher;import java.util ...

Python

1.ファイル名test.txt
111 222
aaa bbb

2.ファイルを読み込む
f = open(“test.txt”, “r”) ...

Go言語

書式
変数名 := 文字列A + 文字列B
使用例

package main import "fmt" func main() { strA := "Study" strA += " " strA += "ski ...

VB.net

書式
Public Shared ReadOnly Property Now As DateTime
現在の現地日時を値として保持するオブジェクト。

使用例

Imports System.Text.R ...

Windows10

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

Java

構文
インターフェース名 オブジェクト名=new インターフェース名{
public void メソット名(){
//some code
}
}
1.インターフェース定義

pack ...

Windows10

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

更新内容:

Updated some of the radio routines to better commun ...

Linux

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

インストールコマンド:

echo "deb  trusty main" | sudo tee /etc/apt/sources.list.d/mate-deskto ...

Source

linuxにユーザーを作成時下記メッセージが出る
passwd: User not known to the underlying authentication

対策:
1–> $sudo ...

Source

コマンド下記:
#echo 1 >/proc/sys/net/ipv4/ip_forward
#iptables -t nat -I PREROUTING -p tcp –dport 8081 -j ...

Development

1.JVMのモード
(1).-server==>最適化モード。
(2).-client ==>GUIアプリケーション場合このモードを使う。
(3).-Xint ==>インタプリタパターン ...

Development

サンプルコード:

$fp = fopen($file, “r”);
$num = 10;
$chunk = 4096;
$fs = sprintf(“%uR ...

Development

方法1:
function tail($fp,$n,$base=5)
{
assert($n>0);
$pos = $n+1;
$lines = array();
while(co ...

Development

方法1:tailコマンド

tail -n 10 access.log

方法2:php関数

file = ‘access.log’;
$file = escapeshe ...

Development

方法1
if($(“#id”).length>0){
存在
}else{
}

方法2
if($(“#id”)){
} e ...