PHP

書式
1.glob(string $pattern, int $flags = 0): array|false
glob() 関数は libc の glob() 関数で使われるルールに基づいて pattern にマッチ ...

Swift

書式
構造体オブジェクト名.map({プロパティを取り出す条件})
使用例

// 構造体の定義struct Employee { var addr: String var age: Int}// 初期化let c ...

Server

 

1.IISのポート80を8080へ変更
2.apacheのhttpd.confを修正
#LoadModule proxy_module modules/mod_proxy.so
#Lo ...

Server

1.cat/proc/cpuinfo | grep flags
flags : fpu de tsc msr pae cx8 sep cmov pat clflush mmx fxsr sse sse2 ss ht sysca ...

Server

タイムゾーンファイルを上書きコピー
cp -p/usr/share/zoneinfo/Asia/Tokyo/etc/localtime

Linux

$ ps -ef
root 723 1 0 Feb20 ? 00:00:04/sbin/dhclient -1 -q -lf/var/li
root 774 1 0 Feb20 ? 00:00:04/sbin/rsys ...

Python

書式
リスト名 =
リスト名.index(数字)
index()を使用して、配列に指定要素の位置を検索します。
使用例

#リスト名cftLstの宣言cftLst = print("配列cftLs ...

Swift

サンプルコード

let cftA = 33let cftB = 44print(cftA == cftB)print(cftA < cftB)print(cftA > cftB)print(cftA != cftB) ...

Python

説明
math.floor(x)
x の「床」 (x 以下の最大の整数) を返します。 x が浮動小数点数でなければ、内部的に x.__floor__() が実行され、 Integral 値が返されます。

...

Windows10

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

概要:
Tableau Online は Tableau Server のホスト型バージョンです。企業全体、顧客、バートナーとダッシュボードを
数分で共 ...

VBScript

サンプルコード
Dim fso
Dim gt

Set fso = WScript.CreateObject(“Scripting.FileSystemObject”)
Set ...

VBScript

サンプルコード
Dim fso
Dim gf

Set fso = WScript.CreateObject(“Scripting.FileSystemObject”)
Set ...

Windows10

ダウンロード:
提供元サイトからダウンロード
概要:
Tableau Desktopは内容を確認しながれ変更を加えることができる直感的なドラッグアンドドロップツールです。
データから目を離さずに思考の流 ...

Browser

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

概要:
Select and Speakは文章を読み上げてくれるChromeのアドオンです。英語のみならず日本語やスペイン語、中国語まで
数十言語に対応 ...

Swift

サンプルコード

func maxF<T: Comparable> (cftA: T, cftB: T) -> T { return cftA > cftB ? cftA : cftB}//Int数字の比較 ...

Swift

サンプルコード

var cftA = 21cftA += 5 cftA -= 6 cftA *= 7 cftA/= 8 cftA %= 9

 

Kotlin

説明
ハンドラはプロパティに割り当てるたびに呼び出されます。3つのパラメータがあり、割り当てられているプロパティ、古い値、そして新しい値です

使用例

import kotlin.properties.Dele ...

C#

書式

delegate 戻り値の型 delegate名称(引数);public 戻り値の型 メソッド名(delegate名称 変数名,引数) { 変数名(引数); }

使用例

using System;//デリゲートを ...