Java

Javaコード
public static boolean isNullStr(String target) {
if ( target == null)
return true;
if ( targe ...

Linux

1.supervisorのインストール
#wget

#tar zxf supervisor-3.3.1.tar.gz
#cd supervisor-3.3.1
#python setup.py in ...

PostgreSQL

形式
INSERT INTO M_STUDENT (SID,SNAME,SADDR) VALUES ( ? ,? ) RETURNING *
SQL構文例
INSERT INTO M_STUDENT(SID,S ...

PostgreSQL

形式
ALTER TABLE “シーケンス名” OWNER TO ownername;
testDB=# alter table d_sample_m_id_seq owner to yamad ...

PostgreSQL

SQL構文:
newsdb=# select setval(‘news_publish_num_seq‘,1001);
setval
——–

Python

サンプルコード
#!/usr/bin/python

str = u”this2009″;
print str.isnumeric();

str = u”234 ...

Linux

#vim/etc/yum.repos.d/mongodb-org-3.0.repo
追記
name=MongoDB Repository
baseurl=
gpgcheck=0
ena ...

Windows10

Cコード
#include <stdio.h>/* printf */
#include <math.h>/* isnan, sqrt */
int main()
{
p ...

Python

pythonコード
#!/usr/bin/python3

# ファイルのオープン
fo = open(“sample.txt”, “r+”)
prin ...

IT

CSSコード
<head>
<style type=’text/css’>
.shadwoFirst {
background-color:#c06; ...

Linux

1.yumのリポジトリにepelとremiを追加
$ sudo yum -y install epel-release

$ wget
$ sudo rpm -ivh ./remi-release-7.rpm ...

Python

pythonコード:
#!/usr/bin/python3

# ファイルのオープン
fo = open(“test.txt”, “r+”)
print ...

Linux

1.リポジトリを追加
/etc/yum.repos.d/MariaDB.repo
name = MariaDB
baseurl =
gpgkey=
gpgcheck=1

2 ...

Python

①ディレクトリの作成
import os
os.mkdir(‘./11’)

②ディレクトリの削除
import os
os.rmdir(‘./11/22& ...

Python

1.strip()–先頭および末尾から「空白」と「改行」を削除
tt = ” Hello World\n”.strip()
print tt
結果
‘He ...

Python

例1
#!/usr/bin/env python
# -*- coding=utf-8 -*-
import re
text = ‘pythontab’
m = re.m ...

Linux

1.リポジトリファイルの設定
# touch/etc/yum.repos.d/nginx.repo
# vim/etc/yum.repos.d/nginx.repo

設定内容
name=n

jQuery

サンプルコード:
var ccArea = { 31:”品川区”, 32:”目黒区”, 33:”渋谷区”, 34:”新宿区”, 3 ...