Embracing the Gutenberg Revolution: Why It’s Time to Bid Adieu to Classic...
Say Goodbye to the Past: 5 Reasons Block Editing Should be Your New Best Friend. Embracing the Future: Why It’s Time to Ditch the WordPress Classic Editor and Embrace Block Editing. In the...
View ArticleFinding the 3rd Smallest Number in Java: A Complete Guide
Have you ever wondered how to efficiently find the third smallest number in an array, list, or stream of integers? In this blog post, we’ll dive into the world of Java programming and explore...
View ArticleJava Stream API: Merging Arrays with Explanation and Example
In Java programming, working with arrays is a common task. However, there are situations where you need to merge or concatenate arrays to create a single, larger array. The Java Stream API provides a...
View ArticleFeatured Images in Admin Panel – Free WordPress Plugin
Enhance Your WordPress Admin Panel with Custom Columns for Featured Images. Introducing Featured Images in Admin Panel – Free WordPress Plugin. WordPress has established itself as the go-to platform...
View ArticleHow to Parse XML Document using XPath in Java? Java XML XPath Parser Utility
Sometime back I’ve written a tutorial on How to Write XML DOM into File using Java? It’s very simple tutorial with actual real use-case. Last week while working on similar XML and Java issue – I’ve...
View ArticleHow to Implement Selection Sort Algorithm in Java – Detailed Explanation
Are you a Computer Science Graduate? Are you preparing for an Interview? Want to become a master in Data Structure? Well, Sorting algorithms are the most frequently asked questions in Java interview...
View ArticleHow to stop/kill long running Java Thread at runtime? timed-out -> cancelled...
Have you ever wondered how to kill long running Java thread? Do you have any of below questions? Kill/Stop a thread after certain period of time Killing thread after some specified time limit in Java...
View ArticleHow to Add/Change Custom Sidebar for Custom Post Type (CPT) in WordPress
This is a continuous tips and tricks post related to Custom Post Type. We will go over steps which we need to perform in order to have different Sidebar only for Custom Post Type (CPT). Also this...
View ArticleHow to add Google reCAPTCHA to WordPress Comment form without any Plugin?
On Crunchify, we are using reCAPTCHA v2 on WordPress comment form. There are multiple plugins available out there to achieve the same. In this tutorial we will go over steps on how to add Google...
View ArticleWhen Should I use CopyOnWriteArrayList Vs. ArrayList in Java? Avoid...
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 list...
View ArticleHow to check if a file exists or not in Java? File.exists() and File.isFile()...
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 exception...
View ArticleEfficiently Fetching and Processing Web (HTTP) Data in Java: A Comprehensive...
How to Send HTTP Request and Capture Response in Java? – url.openStream() There are more than 8 ways you could send request to any URL using HTTP GET or HTTP POST call in Java. With the latest Java...
View ArticleWhat is Affiliate Cloaking and How to Cloak your Affiliate Link without...
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 recently...
View ArticleJava14 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 place....
View ArticleMailerLite – 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 with...
View ArticleJava NIO (Non-blocking I/O) with Server-Client Example – java.nio.ByteBuffer...
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...
View ArticleMinsta MailerLite king I/O) w– Unlocking Success with New MailerLit
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...
View ArticleIn Java How to Set and Get Thread Priority? Get Thread ID, Count, Class,...
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...
View ArticleFinding the Middle Element of a Linked List in Java (Two Pointers and Size of...
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...
View ArticleHow to implement Bucket Sort Algorithm in Java? Detailed Explanation
Bucket sort is a sorting algorithm used to sort a collection of floating-point numbers into increasing order. The algorithm works by dividing the range of the input numbers into n buckets, where n is...
View Article