Source

1.説明
post(Runnable runnable)  スレッドを起動
removeCallbacks(Runnable runnable)  スレッドをキャンセル
postDelayed(Runnable ...

Source

<?php
$data = array(‘foo’=>‘bar’,
‘baz’=>‘boom’,

Source

1.FTPサーバーのインストール
sudo apt-get install vsftpd

2.匿名アクセス
Anonymous_enable=NO
Local_enable=YES
3.サー ...

Source

1.説明
class SimpleXMLElement
{
string addChild(name,value,ns)
}
2.xmlファイル
<?xml version= ...

Source

1.画像の関連DimensionとTypeを計算
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBou ...

Source

説明:
filter_input(input_type, variable, filter, options)

サンプルコード:

Source

サンプルコード:

<?php
$interest = “arts”;
$homepage = “
$query = “homepage=R ...

Source

1.configure: error: xml2-config not found. Please check your libxml2 installation.

yum install libxml2-devel.x86_6 ...

Source

サンプルコード:

ファイル名:alertsend.sh

#!/usr/bin/python
# -*- coding: utf8 -*-
#zabbix remote command
i ...

Source

エラーメッセージ:
packet to client mac reached max retries removing the client

説明:

Explanation   This error m ...

Source

方法1
ルートを追加
route add -net 192.168.0.0/24 gw 192.168.0.1
route add -host 192.168.1.1 dev 192.168.0.1 ...

Source

メソッド下記:

boolean register( x, y, maxFps, maxPps, FrameAnimatorListenerlistener)void unregister()boolean isRegistere ...

Source

1.サンプルコード:
iptables -t nat -A PREROUTING -s ホスト -p tcp –dport 80 -j DNAT –to :22
iptables -t nat ...

Source

サンプルコード:

<?php
class Pipe
{
public $fifoPath;
private $w_pipe;
private $r_pipe;

/* ...

Source

1.MySQLデータベースサーバーとデータベースMYSQLキャラクタセットを確認

mysql> show variables like ‘%char%’;  
+——& ...

Source

サンプルコード:

public function loop(){
$loop = 0;
$charnum = 65;

for(; $loop < 150; $loop++){
$q ...

Source

1.rpmパッケージでMySQLがインストールされた
service mysqld restart

2.ソースパッケージからMySQLのインストール
//linux MySQLをシャットダウン
$m ...