-
Python Whois client example
In this article, we will show you how to create a simple Whois client both in Python 2 and Python 3.
Date: 2019-08-17 View: 1821
-
Java Check if key exists in HashMap
In Java, you can use Map.containsKey() to check if a key exists in a Map.
Date: 2019-08-17 View: 1928
-
Python How to loop a dictionary
In this tutorial, we will show you how to loop a dictionary in Python.
Date: 2019-08-17 View: 2110
-
Python How to delay few seconds
In Python, you can use time.sleep(seconds) to make the current executing Python program to sleep or delay a few seconds.
Date: 2019-08-17 View: 1820
-
Java How to delay few seconds
In Java, we can use TimeUnit.SECONDS.sleep() or Thread.sleep() to delay few seconds.
Date: 2019-08-17 View: 1636
-
Java How to split a string
To split a string, uses String.split(regex). Review the following examples :
Date: 2019-08-17 View: 1766
-
MongoDB : Sort exceeded memory limit of 104857600 bytes
Performs a large sort operation (Aggregation) in a collection, and hits the following error message :
Date: 2019-08-17 View: 3660
-
Spring 4 MVC Ajax Hello World Example
In this tutorial, we will show you how to create a Spring MVC web project and submit a form via Ajax.
Date: 2019-08-17 View: 3046
-
Jackson 2 Convert Java Object to / from JSON
In this tutorial, we will show you how to use Jackson 2.x to convert Java objects to / from a JSON.
Date: 2019-08-17 View: 2956
-
Java How to display all Environment variable
In Java, you can use System.getenv() to return a Map with all the environment variables.
Date: 2019-08-17 View: 2122
-
Java 8 Stream Read a file line by line
In Java 8, you can use Files.lines to read file as Stream.
Date: 2019-08-17 View: 3211
-
How to Install Apache Tomcat 8 On Debian
In this tutorial, we will show you how to install Apache Tomcat 8 On Debian, manually.
Date: 2019-08-17 View: 2198
-
How to Install Oracle JDK 8 On Debian
In this tutorial, we will show you how to install Oracle JDK 8 On Debian, manually.
Date: 2019-08-17 View: 3321
-
Spring Inject value into static variables
Spring doesn’t allow to inject value into static variables, for example:
Date: 2019-08-17 View: 1951
-
Spring MVC Refactoring a jQuery Ajax Post example
Reviewing a jQuery Ajax form POST and Spring MVC example, find out the following patterns :
Date: 2019-08-17 View: 2190


