The JSON format, this unknown

It has happened to me many times that issues discussed and re-discussed a million times, came back into vogue as doubts, perhaps trivial but always dangerous, being able to give rise to unknown outputs. I’m talking about the very useful JSON (JavaScript Object Notation) format, often useful in case of […]

Read More…

Angular good code with some advices

Angular good code

Sometimes it can be convenient to stop and think about how to improve the existing one and write Angular good code, rather than go ahead without thinking.Below I have collected some small rules that I try to constantly follow and which I hope will be useful to you too. 1) […]

Read More…

Smooth hover images

Smooth hover image

Today we will see how to provoke the smooth hover of images, that is when, going with the mouse on one image you see another one. This behavior is easy when talking about other types of objects such as div or text but it is a little more complicated in […]

Read More…

Angular client-side pagination vs server-side pagination

Data-rich applications present a challenge: displaying large datasets without overwhelming users. Pagination comes to the rescue, breaking down information into manageable chunks. Angular offers two primary approaches: client-side pagination and server-side pagination. This article delves into both methods, providing code examples and helping you choose the best fit for your […]

Read More…

Javascript object to query string

js object to querystring

It can often be useful to transform a javascript object into a query string dynamically, without necessarily knowing the properties of that object. Another good reason is to avoid concatenation for each individual parameter. This method can be used also in javascript/typescript frameworks like: Angular, React, Svelte, etc. This is […]

Read More…