Linuxでapache2.4.10をインストールする方法
1.apr,apr-utilとhttpdのダウンロード
$ sudo wget -c
$ sudo wget -c
$ sudo wget -c
2.解凍
$ sudo tar -xzvf ap ...
SUSE LINUXでCouchDB1.5.0をコンパイルして、インストールする
1.必要なライブラリ
SpiderMonkey 1.7.0
icu4c 4.2.1
libcurl 7.36.0
ncurses 5.9
openssl 1.0.1g
erlang R1 ...
Pythonで時間処理のフォーマット
So, Mo, … ...
Ubuntuでlocaleを追加する
1.日本語ロケールがサポートされてるかを確認
# grep ja/usr/share/i18n/SUPPORTED
ja_JP.EUC-JP EUC-JP
ja_JP.UTF-8 UTF-8
2.l ...
MiniTool Drive Wipe 5.0 ダウンロード
ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
概要
MiniTool Drive Wipeはハードディスクのデータを完全に消去して、プライバシーを保護することがで ...
WinLogOnView 1.05 ダウンロード
ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
更新内容
Added ‘Logon Type’ column.概要
「Java8」Comparator.naturalOrder()でリストをアルファベット順でソートする
説明
static <T extends Comparable<? super T>> Comparator<T> naturalOrder()
型パラメータ:
T R ...
JavascriptでブラウザがIEであるかどうかを判断
javascriptコード
<script language=”JavaScript” type=”text/javascript”>
if ((navi ...
「spring mvcの勉強」-pom.xmlの設定内容
サンプルコード:
<project xmlns=” xmlns:xsi=”
xsi:schemaLocation=”
<modelVersion>4.0.0 ...
ubuntuでminicomをインストール
コマンド
apt-get install minicom
USB Image Tool 1.70 ダウンロード
ダウンロード
提供元サイトからダウンロード
majorgeeksサイトからダウンロード
特徴
create image files of USB flash drives
restore ...
McAfee Stinger 12.1.0.1185 ダウンロード
ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
概要
Stinger is not a substitute for full anti-virus pro ...
Calibre 2.9.0 ダウンロード
ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
N ...
「Ruby入門」ハッシュ(Hash)のサンプル
使用例
cft = {:A001 => "11", :B002 => "22", :C003=> "33"}p cftcft = {A001: "121", B002: "212", D004: "323"}p ...「Oracle」トリガー(trigger)を作成する方法
書式
1.CREATE OR REPLACE TRIGGER トリガー名 操作xxx
2.DECLARE 変数名 テーブル.項目%TYPE
3.BEGIN xxx END
使用例
VueScan 9.4.53ダウンロード
ダウンロード
提供元サイトからダウンロード
Softpediaサイトからダウンロード
特徴
scans documents, photos and film
creates PDF, JPEG, ...
MySQL 8.0.27でユーザーに権限を付与する方法
環境
Windows10 64bit
MySQL 8.0.27
Windowsコマンドプロンプト
操作方法
1.ユーザ「infouser」を作成します
「Python」union()メソッドで和集合を求めるサンプル
構文
集合A|集合B
サンプルコード