Recent Posts

How to Install Jenkins Locally on a MacBook (Step-by-Step Guide)

Learn how to install Jenkins on your MacBook locally using Homebrew. Follow this step-by-step guide…

 Posted in CI/CD Tagged ,

How Safe Are UUIDs for User Identification in JavaScript?

If youโ€™re working with a JavaScript application and using UUIDs to assign unique identifiers to…

 Posted in javascript Tagged , , , ,

๐—ฆ๐˜๐—ผ๐—ฝ ๐—จ๐˜€๐—ถ๐—ป๐—ด c๐—ผ๐—ป๐˜€๐—ผ๐—น๐—ฒ.๐—น๐—ผ๐—ด() ๐—ณ๐—ผ๐—ฟ ๐——๐—ฒ๐—ฏ๐˜‚๐—ด๐—ด๐—ถ๐—ป๐—ด, instead use c๐—ผ๐—ป๐˜€๐—ผ๐—น๐—ฒ.table()

Untill now I was also using console.log() for debugging purposes, But here’s why you should switch to console.table()

 Posted in javascript Tagged , ,

M๐—ผ๐—ป๐—ผ๐—น๐—ถ๐˜๐—ต ๐˜๐—ผ ๐— ๐—ถ๐—ฐ๐—ฟ๐—ผ๐˜€๐—ฒ๐—ฟ๐˜ƒ๐—ถ๐—ฐ๐—ฒ๐˜€: ๐—” ๐—ฃ๐—ฎ๐˜๐—ต ๐˜๐—ผ ๐—ฆ๐—ฐ๐—ฎ๐—น๐—ฎ๐—ฏ๐—ถ๐—น๐—ถ๐˜๐˜†!

Most applications start as monoliths โ€” a single, unified structure where every component is tightly…

 Posted in Programming Tagged , ,

Sort Categories by Count in WPGraphQL

To sort WordPress categories by the count field (e.g., the number of posts in each…

 Posted in Wordpress Tagged ,

Object Property Access in Javascript

In JavaScript, you can access properties of an object in several ways. The method you choose depends on your use case, but each method has its own strengths and nuances.

 Posted in javascript Tagged , , , , , ,

Array iteration in Javascript

When iterating over arrays in JavaScript, you can use a traditional for loop or the modern .forEach() method. Both have their use cases, advantages, and trade-offs

 Posted in javascript Tagged ,

String Concatination in Javascript

String concatenation is a common operation in JavaScript, and the way it’s written can impact both readability and maintainability of the code

 Posted in javascript Tagged

Variable Declaration in Javascript

The difference between var and const in JavaScript lies in scoping, mutability, and hoisting, which directly impact how the variables behave and why const is often preferred.

 Posted in javascript Tagged , , ,

Nuxt3: [useAsyncData] Component is already mounted, why?

When working with Nuxt and needing to handle asynchronous data fetching, it’s important to understand…

 Posted in Nuxt.js Tagged , , , ,