Send Email in Linux from Command Line
Send Email in Linux from Command Line In this article, you will learn how to send emails in Linux using the popular mail commands. It’s equally important that you also…
Spring Boot MongoDB Guide
Welcome to Spring Boot MongoDB Example Spring Boot is the easiest way to spin a spring project quickly and MongoDB is the most popular NoSQL database. Let’s see how to…
Spring Boot Redis Cache Guide
Integrating Redis Cache with Spring Boot Application In this post, we will setup up a sample Spring boot application and integrate it with Redis Cache. While Redis is an Open…
Spring Boot Guide
Welcome to Spring Boot Tutorial Spring Boot is a completely new project from Pivotal Team(The Spring Team). It is a Framework developed on top of existing Spring Framework. It uses…
Sorting a Vector in C++
Sorting a Vector in C++ Content1 Introduction2 Sorting a Vector in C++ in Ascending Order3 Sorting a Vector in C++ in Descending Order4 Conclusion Introduction In this tutorial, we are…
A Guide to State Design Pattern in Java
A Guide to State Design Pattern in Java State design pattern is one of the behavioral design patterns. State design pattern is used when an Object changes its behavior based on its…
A Guide to static keyword in java
A Guide to Static Keyword in Java The static keyword in Java is used a lot in java programming. Java static keyword is used to create a Class level variable in java.…
String Concatenation in C++: A Complete Guide
String Concatenation in C++: A Complete Guide In this article, we will unveil the various ways of performing string concatenation in the C++ language. This method can be used for…
Thread Safety in Java: Best Practices
Thread Safety in Java: Best Practices Thread Safety in Java is a very important topic. Java provides multi-threaded environment support using Java Threads, we know that multiple threads created from…