Angular cascading recursive selects from tree nodes

Today we will see recursive selects from tree nodes.Nothing proves the saying “if you want something done right, do it yourself” better than recursion.Recursion is one of my favorite topics. When a function is recursive, it finds in itself the strength to solve a task. We can also see recursion […]

Read More…

WordPress – Custom thumbnails – properly sized images

wordpress custom sized thumbnails

Today we will see the WordPress custom thumbnails. The loading speed of a site is largely due to the correct size and optimization of the images. It is always advisable to publish images and thumbnails of adequate size to consume less traffic on the data network and reduce loading times. […]

Read More…

Multiple nested guards on one route

angular 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…