OpenSource

ダウンロード
Download the free “Personal” edition (limited to 5 users):UCS_3.2-4-amd64.iso (1,931MB, MD5, p ...

OpenSource

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

更新内容

子タスク

– Make LuceneIndex implement AdvanceQueryIndex
– ...

Android

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

 

インスール手順
Make sure you have a bin/directory in your home directory an ...

Oracle

環境
Oracle 11.2.0.1.0
Windows10 64bit

構文
show autocommit
設定方法
set autocommit

操作例
1 ...

Groovy

書式
文字列A.concat(文字列B)
使用例

class SampleArk { static void main(String[] args) { String strA = "study skill"// ...

OpenSource

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

changelog

更新内容
リネーム機能が強化される
コードカラーリングが強化される
TODOコメントのサポート
outli ...

VB.net

構文
Dim リスト名 As New List(Of Double)
リスト名.Reverse()
List<T> 全体の要素の順序を反転させます。

使用例

Module Modu ...

jQuery

書式
$(this).next().focus();
使用例

$('input').keyup(function() {//最大文字数 var maxLen = $(this).attr('maxlength') ...

OpenSource

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

概要

Virtualmin can also create a Webmin user for each virtual server, who is res ...

VBScript

サンプルコード
Dim cft
Set cft = WScript.CreateObject(“WScript.Network”)
WScript.Echo “パソコン名:& ...

Apache

1.サーバの秘密鍵を作成
openssl genrsa -out server.key 1024

2.アプリケーションに署名を生成
openssl req -new -key server.key -out ...

IOS

サンプルコード:
-(NSString *) getJsonString
{
NSMutableString *json = ;
NSString *jsonString=nil;
SBJson ...

IOS

サンプルコード:
NSDictionary *dataDictionary= ;
NSDictionary *parmDictionary= ;
NSDictionary *jsonDictionary=; ...

IOS

1.ダウンロードURL

NSData * responseData = ;
NSString * strResponser = initWithData:responseData encoding:NS

Android

1.Manifest.xmlにAndroidの入り口プログラムの設定
代码

<?xml version=”1.0″ encoding=”UTF-8″?> ...

OpenSource

ダウンロード

robolinux64-gnome-v7.7.1.iso
robolinux64-xfce-v7.7.1.iso
robolinux32-xfce-v7.7.1.iso
robolinux32-g ...

Windows10

ダウンロード
提供元サイトからダウンロード
Softpedia サイトからダウンロード
概要
言語を自動で検出して翻訳してくれる
オプションでキーボード、マウスの設定ができる
入力ボック ...

Python

書式
lambda 引数 : 表現式
使用例

funcA = lambda n: n + 15print(funcA(5))

結果
20