A linked list is a data structure that consists of a sequence of nodes, where each node contains an element and a reference to the next node. In this post, we will see how to find the middle element …
In Java How to Set and Get Thread Priority? Get Thread ID, Count, Class, StackTrace, ThreadGroup and More
In Java multithreading programming, sometimes you may need to set Thread priority in order for it to execute before another thread. You can set and get Thread priority programmatically using …
Java NIO (Non-blocking I/O) with Server-Client Example – java.nio.ByteBuffer and channels.Selector – Java NIO Vs. IO
Java NIO is my favorite topic. I have been working with NIO since last 2 years and would like to share simple Server-Client code for my readers who are free to use this code in their production …
MailerLite – Unlocking Success with New MailerLite
Unlocking Success with MailerLite: A Comprehensive Guide to Email Marketing Excellence. In today's fast-paced digital landscape, effective communication is key to building lasting relationships …
Read Article about MailerLite – Unlocking Success with New MailerLite →
Kinsta – Modern, Secure, and Super Fast WordPress Hosting
Choosing the right hosting provider for your WordPress site is the critical component and the first step for any user. Personally I've been working on WordPress sites since 2007 as an Individual …
Read Article about Kinsta – Modern, Secure, and Super Fast WordPress Hosting →
Java14 Synchronous HttpClient Example – Overview and Simple Tutorial – send()
Java recently released Java 14 JDK. In this tutorial we will go over Overview and Simple Java Synchronous HttpClient Client Tutorial. If you have any of below questions then you are at right …
Read Article about Java14 Synchronous HttpClient Example – Overview and Simple Tutorial – send() →
What is Affiliate Cloaking and How to Cloak your Affiliate Link without WordPress plugin using .htaccess redirection
Affiliate Cloaking is a very popular term for WordPress blogging platform. It is most common practice for blogger to have affiliate links on their blog. On Crunchify we have made some changes …
How to check if a file exists or not in Java? File.exists() and File.isFile() methods in Java
How to check if file exists in on file system? Sometime at runtime, you may have to find a file and make sure that exists before executing or running any command. You don't want to get an …
When Should I use CopyOnWriteArrayList Vs. ArrayList in Java? Avoid java.util.ConcurrentModification Exception
java.util.List is an ordered collection also known as a sequence. ArrayList is a very basic implementation of List. There are number of articles I've posted on Crunchify before on ArrayList …