Multiple nested guards on one route

We may need multiple guards on one route in some situations. It may happen that sometimes a shared guard is needed between several components which however require further and different verifications.A possible solution in those cases may be to insert “matryoshka” Guards, making the focus of the work on one […]

Read More…

Expose REST services with Drupal

Let’s create REST services with Drupal.You may need to export the power of Drupal to deliver content to multiple systems. This possibly even in multiple different technologies. In these cases it can be useful to use a more generic language to transmit this content, such as JSON.Drupal allows the delivery […]

Read More…

A comprehensive guide to optimizing WordPress

In today’s fast-paced online world, website speed is crucial for user engagement and SEO ranking. This article delves into optimizing your WordPress website for maximum speed, providing practical tips and code examples to put into action. Understanding the Importance of PageSpeed for optimizing WordPress: Analyzing Your Current PageSpeed: Before diving […]

Read More…

Easy way to show/hide a password field in Angular

angular show or hide a field

The most easy way to show/hide a password input field in Angular is to toggle a show/hide property. For both methods I will use the FontAwesome icon library but you are free to use the icons you prefer. You can choose between two simple recipes, one with click event and […]

Read More…