Optionals in Streams for Java

Optionals are the Java’s way to make sure something comes out of streams, even in those cases where there may not be a result.The reason for their existence, their “raison d’ĂȘtre” is that, when a return value is defined in a method, that method must necessarily return something. Use Optionals […]

Read More…

OTP form inputs

Today we will see the OTP form inputs.On some occasions it may be useful to have a particular “PIN” type field, divided into several single character fields. This make it easier for the user to type potentially random characters (and therefore difficult to line up and memorize). The ingredients in […]

Read More…

Install Nuxt applications with Typescript

Vue Nuxt installation.

The Vue.js framework together with Nuxt is making its way among FE technologies for its compactness and ease of development. Today we’ll look at the basic recipe for building a Nuxt application with Typescript.Typescript is nothing more than Javascript’s big brother, which has more decisive ideas on data types and […]

Read More…

Create a WordPress plugin

Wordpress - create a plugin

It is not uncommon to look for the perfect plugin/functionality for your blog/site in WordPress but not find it because you have too precise an idea of what you would like. It is in these cases that the possibility of infinitely extending WordPress comes to our rescue. We can add […]

Read More…

Add and modify a primary menu with WordPress

wordpress menus

The primary menu plays a crucial role in your WordPress website’s navigation, guiding users to different sections and content. Whether you’re building a new site or revamping an existing one, knowing how to add and modify your primary menu is essential. This article walks you through the process, providing clear […]

Read More…