OpenSource

ダウンロード:

Source Code:

Macintosh Installer (Universal):

Windows Installer:

Windows x64 Installe ...

OpenSource

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

Improvement – Consider Adding a Mechanism to Support Mandatory Per Message
R ...

Windows10

ダウンロード
提供元サイトからダウンロード
更新履歴

異なる都道府県で同一名の郡が存在する郡を入力した際にアプリケーションが終了する場合がありました。

Windows10

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

更新履歴

Fixed rare BSOD on Windows 8.x
Fixed bug in editi ...

Windows10

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

更新履歴

Added a new method which allows you to configure a c ...

Windows10

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

更新履歴

機能改善Defaults to opening final album in external web ...

Windows10

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

更新履歴

If Presentation Mode is turned on in Windows, Gmail ...

Windows10

ダウンロード
提供元サイトからダウンロード
softpediaサイトからダウンロード
対応OS
Windows XP/Vista/7/8/8.1

更新履歴

Added full sup ...

Windows10

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

更新履歴

Enhanced Detections:
Generic.so
Generic.sq ...

Node.js

書式
コレクション名.find({項目: {条件式}}).toArray((error, result)=>{処理コード}
使用例

var MongoClient = require("mongodb"). ...

Ruby

書式
配列名.push(値)
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-cftArr=, ] cftArr.push()puts "result1\n"p cftArrp ...

VBScript

使用例

Dim cftcft = Array("A001", "B002", "C003","D004")cft(2) = "kkkk"WScript.Echo cft(0)WScript.Echo cft(1) WScript ...

Python

構文
文字列A + 文字列B
サンプルコード

# coding: utf-8resA = 'A001' + 'B002' + 'C003'print(resA)strA = 'T001'strB = 'T002' ...

Windows10

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

更新履歴:

QuickTime 7.7.6 ではセキュリティが改善されます。
これは、Windows で ...

Excel VBA

書式
InStr( start, string1, string2)
引数start:検索開始位置
使用例

Sub testfunc() Dim target As String target = "TE ...

MySQL

環境
Windows10 64bit
MySQL Workbench 8.0.27

書式
ABS(値)

操作例1

SELECT ABS(- 6) A1, ABS(- 7.123) ...

Perl

構文
if(条件式){
last;}
サンプルコード

#!/usr/bin/perluse strict;use warnings;for (my $n = 0; $n < 10; $n++) { ...

Python

書式
lambda 変数名:変数名+式
使用例

# coding: utf-8res = lambda x : x + " 123"print(res("log"))

実行結果
>python ...