-
Nginx + PHP No input file specified
A common Nginx + PHP error message “No input file specified.”
Date: 2019-08-11 View: 1397
-
php-cgi.exe The application was unable to start correctly
Run php-cgi.exe and hits a pop up dialog showing the following error message :
Date: 2019-08-11 View: 1590
-
Nginx + PHP on Windows
This article shows you how to install and integrate Nginx and PHP on Windows.
Date: 2019-08-11 View: 1491
-
PHP + Windows Call to undefined function mysql_connect()
Install WordPress and hits the following error message :
Date: 2019-08-11 View: 1445
-
Nginx + WordPress ERR_TOO_MANY_REDIRECTS
Fresh installs a WordPress on Windows for development, and hits the ERR_TOO_MANY_REDIRECTS error message?
Date: 2019-08-11 View: 1832
-
ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)
Try to log into the MySQL server, but it prompts the following error message:
Date: 2019-08-11 View: 1479
-
Intellij IDEA default static void main shortcut
In IDEA, you can type psvm and press Tab to generate the public static void main(String[] args) automatically.
Date: 2019-08-11 View: 1279
-
Intellij IDEA System.out.println shortcut
In IDEA, you can type sout and press Tab to generate System.out.println automatically.
Date: 2019-08-11 View: 1581
-
Kotlin How to Loop a Map
In Kotlin, you can loop a Map via the following ways:
Date: 2019-08-11 View: 1250
-
Java Bubble sort example
Bubble sort is the simplest sorting algorithm, it compares the first two elements, if the first is greater than the second, swaps them, continues doing (compares and swaps) for the next pair of adjacent elements. It then starts again with the first two elements, compares, swaps until no more swaps are required.
Date: 2019-08-11 View: 1314
-
Java Selection sort example
Selection sort is an in-place comparison sort. It loops and find the first smallest value, swaps it with the first element; loop and find the second smallest value again, swaps it with the second element, repeats third, fourth, fifth smallest values and swaps it, until everything is in correct order.
Date: 2019-08-11 View: 1213
-
How to check MySQL version
In terminal, type mysql -V (uppercase V) to display the current MySQL version installed on the server.
Date: 2019-08-11 View: 1365
-
Python How to convert float to String
In Python, we can use str() to convert float to String.
Date: 2019-08-11 View: 1442
-
Java Count the number of items in a List
In Java, we can use List.size() to count the number of items in a List
Date: 2019-08-11 View: 1282
-
Python How to convert String to int
In Python, we can use int() to convert a String to int.
Date: 2019-08-11 View: 1291