5 Totally Unnecessary MacOS Settings You Should Disable now
macOS is no double the best Operating system out there. I’ve been using Macbook Pro since last 13 years and there is no going back. What is macOS? macOS, Apple’s operating system for Mac computers,...
View ArticleHow to add Resources Folder, Properties at Runtime into IntelliJ classpath?...
Getting NullPointerException while reading Resource .properties file in Intellij IDE? Do you have an issue loading resources files into your Intellij IDE? Having below errors? Error: Could not find or...
View ArticleJava: Producer Consumer Example – Handle Concurrent Read/Write
The producer-consumer problem (also known as the bounded-buffer problem) is a classic Java Example of a multi-process synchronization problem. The problem describes two processes, the producer and the...
View ArticleHow to Create WordPress Custom Post Type (CPT) and Taxonomy – Hello World...
Awesome. Let’s talk on Custom Post Type (CPT). This will also help you if have below questions: How to Create Custom Post Types in WordPress?Generate WordPress Post TypeCreate your first WordPress...
View ArticleHow to download Java via wget Linux command? Where is Java installed on my...
Some times if you are a new macOS user or even pro, it takes some time to find out which Java version I’m running with? What if you want to use Java 1.7 with Eclipse IDE? While running Eclipse with...
View ArticleHow to Validate WordPress Sitelinks Search Box JSON-LD Schema? Modify Search...
Google by default supports Sitelinks search box. But we need to make sure that it’s setup correct way on WordPress site. What is Sitelinks search box? As you see below, Sitelink search box is a search...
View ArticleJava URL example: How to send HTTP request GET/POST in Java?...
How to send HTTP request GET/POST in Java? How to use java.net.URLConnection to fire and handle HTTP? Below is a simple example to get Response from URL in Java Program. The URLConnection class...
View ArticleHow to setup and beautify Jetpack subscription form on blog?
WordPress is one of the best blogging platform out there and it’s likely that its popularity has continued to grow since then. Several key factors contribute to WordPress’s widespread adoption and...
View ArticleMemcached Java Client Tutorial using whalin.Memcached-Java-Client and...
This is continued tutorial on Memcached which is distributed memory object caching server. Here are previous two tutorials before you go over this one. How to Install and Configure Memcached Memcached...
View ArticleHave you noticed Race Condition in Java Multi-threading Concurrency Example?...
Sometime back I’ve written an article on Producer Consumer Example and how to handle read/write operation better way in Java. On the similar note, in this tutorial we will discuss something on Race...
View ArticleIn Java How to Create your own Logging Level using Log4j (Configuring Log4j 2)
If you need to add your own logging level in Log4j, then you can do it as follows. You will have to create your own class which will extend from Level, Custom Log Levels with Apache Log4j 2. Log4j is...
View ArticleEfficiently Analyzing Text Files: Counting Characters, Words, and Lines in Java
Master the art of efficient text file analysis in Java with our insightful guide. Learn how to count characters, words, and lines using built-in features. Optimize your file processing techniques and...
View ArticleBinary to Decimal Conversion and Vice Versa: Exploring Number Representations...
Learn how to effortlessly convert between binary and decimal number representations using Java code. Dive into a comprehensive tutorial that demonstrates the conversion process step by step,...
View ArticleReversing a Singly Linked List in Java: A Tutorial with Code Example
Learn how to efficiently reverse a singly LinkedList in Java using the CrunchifyReverseLinkedList program from Crunchify.com. This Java program demonstrates a straightforward approach to reversing the...
View ArticleMastering Number Reversal in Java: Exploring Techniques and Implementations
Explore a Java program showcasing two methods for reversing numbers: using a while loop and recursion. Learn how each technique works and see examples of reversing random numbers. A practical...
View ArticleBattle of the Thread-Safe Maps: Performance Showdown between Hashtable,...
Learn about ConcurrentHashMap vs. SynchronizedMap in Java concurrency. Code example & performance analysis. Boost your Java programming skills with Crunchify! HashMap is a very powerful data...
View ArticleCreating a RESTful Java Client with Jersey: A Step-by-Step Guide to Getting...
Learn how to build a RESTful Java client using Jersey, making HTTP requests, handling JSON and XML responses. Step-by-step tutorial. This tutorial show you how to use Jersey client APIs to create a...
View ArticleJava Program to Check if a File is Hidden
In Java how to check if a file is hidden? Explore a Java program that checks whether a file is hidden or not, using logging to track its status. Learn how to set up logging configurations, handle file...
View ArticleExploring the Java Collections Framework: A Comprehensive Guide for Beginners
What is Java Collections Framework? Benefits of Collections Framework? Java Collections are used in every programming language and initial java release contained few classes for collections: Vector,...
View ArticleMastering Multithreading: Demystifying Daemon Threads in Java
Learn Java daemon vs. non-daemon threads: termination impact & usage. Optimize concurrency efficiently. Difference between Daemon and Non Daemon thread in Java : Termination Behavior: Daemon...
View Article