IT

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

Katello is here to help you take control of your software and your systems in a

IOS

操作方法
1.ビルド
control + b を押す

2.自動インデント
対象範囲を選択してから、control + i を押す

3.シミュレーターを起動する
command + ...

Java

Javaコード
class Demo {

public static void main(String[] a) {
//絶対パス
//ok
System.err.println(Demo. ...

Mac OS X

操作方法
1.Finderの上部メニュー「移動」->「AirDrop」をクリックします。

2.AirDrop画面が表示されます。

3.「AirDropで近くの人とすぐにデータを共有できます。」と表 ...

SQLite

環境
Windows 10 64bit
SQLite 3.36

書式
1.テーブルを作成します
sqlite> create table testA(tid integer, tnam ...

IT

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

Folgende Institutionen, die meisten davon (für Studenten und Schüler besonders prakt ...

Oracle 12c

環境
Oracle Database 12c Standard Edition Release 12.2.0.1.0 – 64bit Production

書式
SQRT(n) SQRTは、nの平方根を戻し ...

IOS

操作方法
1.ターミナルを起動します。

2.以下のコマンドでユーザー名を設定します。
git config —-global user.name “arkuser”

3.以下のコマンドでメールア ...

jQuery

サンプルコード
<p id=”cft”></p>
<script>
var xmlhttp = new XMLHttpRequest();
x ...

Linux

1.memcachedのインストール
# yum -y install memcached

2.設定ファイル
# vi/etc/sysconfig/memcached
PORT=”112 ...

jQuery

環境
jquery 3.6.0

書式
$(セレクタ名).children(タグ名);
.childrenを使用して指定した要素の子要素(直下のみ)を取得します。
使用例

<!DO ...

IT

例1
p:first-child i
{
background:yellow;
}

例2
li:first-child
{
background:yellow; ...

shellscript

1.基本形
while 条件文
do
命令1
命令2
命令3
done

 

2.サンプル
#!/bin/bash

i=1 ...

IT

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

ReSharper is available for download as a single package that includes all three edit ...

IT

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

Replicator
* Tolerate missing source and target fields in _replicator docs(COUCH ...

IT

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

 

Source (373.2MB)
Linux
Windows (340.3MB)
MacOSX (371.8MB)
and ...

C#

書式
Func<データの型> resA = () => {処理コード}
引数なし、戻り値あり
使用例

using System; class Program { static void ...

IT

書式
$(セレクタ名).nextAll().css(“属性”, “値”);
.nextAll()を使用して、指定した要素の次以降にある兄弟要素を全て取得します。 ...