
In Java there are multiple ways to check ping and port check. You could use system default's ping command, Java's native method InetAddress utility, HttpURLConnection and some more. In production or your testing environment, if you want to perform …
by App 2
by App 1
by App 2
Sometimes you have to handle some type of array (JSONArray, int Array, etc) at client side, i.e. in JSP or html file. And you want to iterate this array in JavaScript. How is this possible? Iterating through a JSONArray in JavaScript is a process …
Read Article about How to Iterate through JSONArray in JavaScript →
How to Disable Block-Based Widget Editor? WordPress 5.8 introduces a new block-based widget editor 2 to the Widgets screen ( Appearance > Widgets ) and Customizer ( Appearance > Customize > Widgets ). This new editor allows users to …
Read Article about List of some uncommon WordPress Tips and Tricks →
by App 4
Knob.js: Javascript Library for Multitouch Virtual Knobs. Knob.js is a JavaScript library for creating knob-style input controls, typically used for setting values in graphical user interfaces. "Dynamic Knobs" might refer to the ability to …
Read Article about Dynamic Knobs Example Which Updates Value Every 3 Seconds (knob.js) →
java.util.Timer is a utility class that can be used to schedule a thread to be executed at certain time in future. Java Timer class can be used to schedule a task to be run one-time or to be run at regular intervals. java.util.TimerTask is …
Read Article about Java Timer, TimerTask, Reminder Class Tutorial with Example →
by App 10
Here's a simple tutorial on how to show/ hide a div using jQuery. The simple jQuery Show/Hide Example is a user interface component that allows users to toggle the visibility of a specific element on a webpage. It is …
Read Article about jQuery: Very Simple Show/Hide Panel on Mouse Click Event →
by App 46
In mathematics, the Fibonacci numbers or Fibonacci series or Fibonacci sequence are the numbers in the following integer sequence: By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum …
Read Article about Write Java Program to Print Fibonacci Series up-to N Number [4 different ways] →
by App 6
Thread States The following diagram illustrates the various states that a Java thread can be in at any point during its life and which method calls cause a transition to another state. This diagram is not a complete finite state diagram, but …
Read Article about Java Thread State Introduction with Example – Life Cycle of a Thread →