Date operations may be painful in most of the programming languages. You may spend most of your time to convert dates from one format to another one. In Groovy, date operations are very easy. Groovy has lots of functions extended from JDK Date API, this allows us to use date related operations in an easier … Continue reading Groovy Date Example
Groovy Array Example
In previous tutorials, we have mentioned about Groovy List and provided lots of examples. In this tutorial, I will show you how to use Groovy arrays. Even if array and list seems to be same, they have differences in common. For example, arrays have fixed size while lists have dynamic size that means you can … Continue reading Groovy Array Example
Build a Real-Time Chat Application With Modulus and Spring Boot
In this tutoral, we will use Spring Boot for the web development environment, Websockets for real-time communication, Tomcat for the Java application container, Gradle for building and managing the dependencies, Thymeleaf for template rendering, MongoDB for data storage, and finally there will be no XML for bean configurations. Just to make you inspired, at the … Continue reading Build a Real-Time Chat Application With Modulus and Spring Boot
Groovy Substring Example
Sometimes, the provided text may not be suitable for our needs. Because of this, we use string manipulation functions to convert it to desired format or extract specific part of it. You can hear this operation as substringoperation in software development world. In this tutorial, I will show you how to apply substring operations on … Continue reading Groovy Substring Example
Groovy Console Example
In this tutorial, I will show you how to use Groovy Console to run your Groovy scripts and also give you some details about Groovy Console itself. Actually, there are several ways to run Groovy scripts. You can run it on your favourite IDE, you can run it from command line, or you can use … Continue reading Groovy Console Example
Build a Real-Time Chat Application With Modulus and Python
In this tutorial, I will show you how to implement a real-time chat application with Python and Flask, and then we will deploy this application to Modulus together.
Build a Real-Time Chat Application With Modulus and Laravel 5
In this tutorial, I will show you how to implement a real-time chat application with Laravel 5, PostgreSQL, and Pusher. Then we will deploy this application to Modulus together.
Groovy List Example
List is generally used as stack in software development world in order to push items in it for future use and to be able to fetch back in a desired way. In this tutorial, I will show you how to use Groovy list like a senior developer. I assume, you have already set up Groovy … Continue reading Groovy List Example
Groovy Map Example
In this tutorial, I will show you how to evaluate the power of Groovy maps. You will provided codes for each case and I assume that you have a little bit back ground about groovy. Let’s have a look at map concepts in groovy step by step together. 1. Map Declaration Maps are generally used … Continue reading Groovy Map Example
Real-Time Chat With Modulus and Node.js
In this tutorial, I will show you how to implement a real-time chat application with Node.js, Socket.IO and MongoDB, and then we will deploy this application to Modulus together.