「Windows10」Excel2013に最近使ったブックを削除する方法
操作方法
1.Excel2013を起動します。
2.左上の「ファイル」をクリックします。
3.「最近使ったブック」を右クリックします。
4.「固定されていない項目をクリア(E)」をクリックし ...
「JavaScript」setInterval()で遅延間隔を設定するサンプル
書式
var intervalID = scope.setInterval(func, delay);
var intervalID = scope.setInterval(code, delay);
一定の遅 ...
「Python」iter()とnext()で文字列の要素を取り出すサンプル
書式
iter(文字列)
使用例
Stinger 12.1.0.1073 のダウンロード
ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
majorgeeksサイトからダウンロード
更新内容:
Enhanced Detections:「Git入門」git checkoutコマンドの使い方
説明
git checkout:作業ブランチを切り替えます。
使用例
1.リモートブランチ「2020Dev01」からローカルブランチ「2020Dev01」を作成
$ git checkout -b ...
BullZip PDF Printer 10.8.0.2282 のダウンロード
ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード
更新内容:
Fix of possible deadlock when ...CentOS8.3にmake をインストールする方法
操作方法
# sudo yum install make
================================================================================ ...
Apache 2.2.29のダウンロード
ダウンロード:
提供元サイトからダウンロード
更新内容:
*) Corrected docs/manual pages for new MergeTrailers directive and other ou ...PSPad editor4.5.8のダウンロード
ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
PSPad is a comprehensive text and code editor that provides n ...
DOS攻撃を防御するためにiptablesのrecentモジュールを利用する
設定内容:
#各IPのHTTP併発要求の最大値を設定
iptables -I INPUT -p tcp –dport 80 -m connlimit –connlimit-above 1 ...
Linuxでファイアウォールのforwardサンプルコード
firewallコード下記:
# 転送トルール
iptables -A FORWARD -d 192.168.1.34 -p tcp –dport 80 -j ACCEPT
iptables -A ...
Linuxサーバーのファイアウォールの基本設定(http、ftp、ssh)
firewallコード下記:
iptables -N httpd_in
iptables -A httpd_in -m time ! –weekdays Mon -m string –alg ...
iptableを利用してファイアウォールルールを設定するサンプル
# 192.168.1.69でfirewallを設定
iptables -A INPUT -p tcp –dport 80 -m time ! –weekdays Mon -m string ̵ ...
Windows7でMySQL5.5 のmaster、slaveサーバを設定する
1.システム要件:
1.1 Windows サーバー2台
1.2 MySQL5.5をインストール済み
mysql> select version();
+—— ...
wordpressテーマを適用する時「Fatal error: Maximum function nesting level of…」の対策
1.エラーメッセージ:
Fatal error: Maximum function nesting level of…
2.解決対策:
vim php.ini
xdebug.r
「wordpress入門」ブログの情報(記事、コメント、Category、タグ数)を取得
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 ...