CUPS “Filter failed” – /usr/bin/tocnpwg: error while loading shared libraries: libxml2.so.2: cannot open shared object file: No such file or directory.

directory, indica que el controlador de tu impresora (o algún componente de CUPS) no puede encontrar la biblioteca libxml2.so.2. Esto es un problema común en Arch Linux cuando la versión de libxml2 se actualiza, ya que puede romper la compatibilidad con programas o controladores que esperan una versión específica. Aquí Read more…

Playwrite + Lighthouse

if the answer to all the above questions is Yes! then, Today, We will understand how we can make use of Google lighthouse to test the performance benchmark of the webpage and steps on how we can integrate with the current playwright tests. Git Original link: https://vinayksharma.medium.com/lighthouse-integration-with-playwright-d2b58386f77

GORM FindInBatches

FindInBatches allows querying and processing records in batches. This is especially useful for handling large datasets efficiently, reducing memory usage and improving performance. With FindInBatches, GORM processes records in specified batch sizes. Inside the batch processing function, you can apply operations to each batch of records. // Processing records in Read more…