How to remove the nofollow attribute from WordPress comments for self-links?
If you’re a WordPress site owner, you might have noticed that all the links in the comments section of your website have the nofollow attribute. This is a default behavior of WordPress to prevent spam...
View ArticleHow to add WordPress Comment Form validation using jQuery?
Comments are an essential feature of any blog or website that allows user engagement and interaction. They provide an opportunity for readers to express their opinions, ask questions, and share their...
View ArticleJava Asynchronous HttpClient Overview and Tutorial – sendAsync()
Java is very powerful. Every release brings so many new APIs and functionalities to core Java SDK. In this tutorial we will go over Java Asynchronous HttpClient Example and details. Here is a tutorial...
View ArticleIn Java How to print Sum of First 500 Prime numbers (or First N Prime numbers)
What is a Prime Number? A number which is greater than 1 and which has no positive divisors other than 1 and itself. Sometime back I’ve written a tutorial which shows clearly if provided number is...
View Article3 Simplest and Fastest Way to Copy Files in Java?
There are multiple ways to copy a file in Java, but the fastest way would depend on several factors such as the size of the file, the available system resources, and the desired level of concurrency....
View ArticleIn Java How to Find Maximum Occurrence of Words from Text File?
In this Java tutorial, you will learn How to Find Maximum Occurrence of Words from given Text File? Here is a logic for getting top element: Create a class CrunchifyComparable that can store the...
View ArticleHow to Implement Bubble Sort Algorithm in Java – Ascending and Descending...
Bubble sort, sometimes incorrectly referred to as sinking sort, is a simple sorting algorithm that works by repeatedly stepping through the list to be sorted, comparing each pair of adjacent items and...
View ArticleWhat is an Abstract Class and Abstract Method in Java? When Should I use it?...
Couple of days back I wrote an article on basic Java Fundamental on What is an Interface in Java and How it’s used? This tutorial is also related to basic Java fundamental “Abstract Class and Abstract...
View ArticleIntroducing WP Sharing: Fastest Social Sharing WordPress Plugin
We are pleased to announce our brand new super fast WordPress plugin WP Sharing. WP Sharing is created with performance in mind. Without making any query to Database, External API endpoint, WP Sharing...
View ArticleIntroducing WP Customizer – Simplest WordPress Optimizer & Customizer Plugin
We are pleased to announce our new WordPress plugin WP Customizer. Visit plugin home page: https://wpcustomizer.co. WP Customizer provides simplest, light weight, most powerful All-in-One 50+...
View ArticleHow to Increase Eclipse Memory Size to avoid OutOfMemory (OOM) on Startup –...
Are you running heavy Java projects in Eclipse? Is garbage collection happening too fast? Eclipse is consuming lots of CPU or Memory resource? In my case, while running Eclipse project, I recently got...
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 ArticleJava Primitive Data Types details
Java is a widely used programming language that is known for its simplicity and versatility. One of the fundamental concepts in Java is the data type, which defines the type of data that can be stored...
View ArticleIn Java how to break a loop from outside? Multiple ways
In Java, it is possible to break out of a loop from outside the loop’s function by using a labeled break statement. This can be useful when you need to stop the loop based on a condition outside of...
View ArticleJava: Create a Timer Object for Future Execution in a Background Thread –...
java.util.Timer provides facility for threads to schedule tasks for future execution in a background thread. Tasks may be scheduled for one-time execution, or for repeated execution at regular...
View ArticleList of top 50 WordPress Admin Hooks
Have you every wondered how Admin hooks works? WordPress is a powerful content management system (CMS) that allows users to easily create, manage and publish content online. One of the key features of...
View ArticleTop 5 WooCommerce Helpful Shortcodes
WooCommerce is one of the most popular e-commerce platforms available today. It is a plugin for WordPress that allows you to easily set up an online store and sell products. One of the most useful...
View ArticleSimple Scroll to Top Button in WordPress Footer without any JavaScript...
Scroll to Top / Back to Top button at the bottom of page is sometime very essential mainly if you have long posts. Here on Crunchify, we do have most of Java tutorials and Blogging tips and those are...
View ArticleHow to Create a Simple In Memory Cache in Java (Best Lightweight Java Cache)
High performance scalable web applications often use a distributed in-memory data cache in front of or in place of robust persistent storage for some tasks. In Java Applications it is very common to...
View ArticleIn Java How to get list of files and search files from given folder?...
In this tutorial we will go over FilenameFilter interface to search a file and list of files with given file extension (i.e. .png, .jpg, .jpeg, .txt, .pdf). lifeFiles returns an array of abstract...
View Article