Windows10

操作方法
1.Excel2013を起動します。

2.左上の「ファイル」をクリックします。

3.「最近使ったブック」を右クリックします。

4.「固定されていない項目をクリア(E)」をクリックし ...

JavaScript

書式
var intervalID = scope.setInterval(func, delay);
var intervalID = scope.setInterval(code, delay);
一定の遅 ...

Python

書式
iter(文字列)
使用例

cft = "arkgame"res = iter(cft)//要素を最初から順番に取り出すprint(next(res))print(next(res))print(next( ...

Windows10

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

更新内容:

Enhanced Detections:

GitLab

説明
git checkout:作業ブランチを切り替えます。

使用例
1.リモートブランチ「2020Dev01」からローカルブランチ「2020Dev01」を作成
$ git checkout -b ...

Windows10

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

更新内容:

Fix of possible deadlock when ...

CentOS

操作方法
# sudo yum install make
================================================================================ ...

OpenSource

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

更新内容:

*) Corrected docs/manual pages for new MergeTrailers directive and other ou ...

OpenSource

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
PSPad is a comprehensive text and code editor that provides n ...

Linux

設定内容:

#各IPのHTTP併発要求の最大値を設定

iptables -I INPUT -p tcp –dport 80 -m connlimit –connlimit-above 1 ...

Linux

firewallコード下記:
# 転送トルール
iptables -A FORWARD -d 192.168.1.34 -p tcp –dport 80 -j ACCEPT
iptables -A ...

Linux

firewallコード下記:

iptables -N httpd_in
iptables -A httpd_in -m time ! –weekdays Mon -m string –alg ...

Linux

# 192.168.1.69でfirewallを設定
iptables -A INPUT -p tcp –dport 80 -m time ! –weekdays Mon -m string ̵ ...

MySQL

1.システム要件:

1.1 Windows サーバー2台

1.2 MySQL5.5をインストール済み
mysql> select version();
+—— ...

Wordpress

1.エラーメッセージ:
Fatal error: Maximum function nesting level of…

2.解決対策:
vim php.ini
xdebug.r

Wordpress

PHPコード:
投稿数:
<?php $count_posts = wp_count_posts(); echo $published_posts =$count_posts->publish;?> ...

Wordpress

PHPコード下記:
<?php $posts = get_posts( “category=6&numberposts=5” ); ?>

<?php if( $po ...

Wordpress

方法1
<?php
$category_id = get_cat_ID( ‘Category名’);
$category_link = get_category_link( $ca ...