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 ...

PHP

1.二分木について
二分木の中でも、全てのノードが「葉であるか、二つの子を持っている(次数が2であるという)」ものを、全二分木 (full binary tree) と呼ぶ。完全二分木 (perfect binary tree ...

Linux

1.注意事項:
Ubuntuのデフォルトrootのパスワードがランダムです、毎回PCが起動する時に新しいrootパスワード
を作成する

2.パスワードを取得する手順
startnews24_ubun ...

Linux

コマンド:
$sudo apt-get install openssh-server

Apache

1.xamppのインストール
tar xvfz xampp-linux-1.6.4.tar.gz -C/opt

xamppが起動
/opt/lampp/lampp start

xamppを停止 ...

Node.js

書式
変数名..collection(コレクション名).deleteMany(cond, function(err, obj)
使用例

var MongoClient = require('mongodb').M ...

Windows10

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

特徴:
Fast and efficient.
U ...

Windows10

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

更新内容:

Tree Expansion Icon. Now you c ...

VBScript

サンプルコード
Dim fso
Dim fdr

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

Windows10

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

更新内容:

Additional functions that can ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
cnetサイトからダウンロード
majorgeeksサイトからダウンロード
DVDStyler は、クロス ...

MySQL

環境
Windows10 64bit
MySQL 8.0.27
Windowsコマンドプロンプト

操作方法
1.MySQLサーバーに接続します

>mysql -uroot -pE ...

C#

書式
int 変数名A = (int)double型変数名B
使用例

using System;namespace TestDemo{ class Program { static void Main(strin ...