Category

Category: Coding & Programming

Decoding the Webpack “Critical Dependency” Warning with sass.dart.js

Coding & Programming Jun 02, 2025

Decoding the Webpack “Critical Dependency” Warning with sass.dart.js

Ever encountered a strange sass.dart.js warning while compiling with Webpack? You're not alone. In this post, Ankush Shandilya from Behind Methods Co breaks down what this warning really means, how to fix or safely ignore it, and why these build-time quirks are great opportunities for technical collaboration—not just frustration.

Read article
You have divergent branches

Coding & Programming May 25, 2024

You have divergent branches

Introduction When working with Git, you might encounter a situation where your local branch has diverged from its remote counterpart. This means that both branches have commits that are not in the other and this is called divergent branches. To reconcile these differences, you have a few options for how you want Git to handle […]

Read article
Merge made by the ‘ort’ strategy

Coding & Programming May 12, 2024

Merge made by the ‘ort’ strategy

Introduction Git, the popular version control system, constantly evolves to improve performance and efficiency for developers. One such evolution is the introduction of the ORT (Ostensibly Recursive’s Twin) merge strategy in Git 2.33. In this blog post, we’ll delve into what ORT is, its benefits, and the considerations developers should keep in mind when using […]

Read article
PHP 8 Named Arguments

Coding & Programming Mar 28, 2024

PHP 8 Named Arguments

PHP 8 introduced named parameters, which allow you to pass arguments to a function by specifying the parameter name followed by the corresponding value, instead of relying solely on the order of parameters in the function definition. Here’s an example of how named parameters work in PHP 8: In this example, we’re calling the greet() […]

Read article
Business Enterprise & Open Source

Backend Development Feb 03, 2018

Business Enterprise & Open Source

Open source technologies have gain a great recognition over a period of time and many enterprises have adopted these Open Source Technologies in running their businesses. However, there are still many enterprises who hesitate to adopt open source. This is probably they don’t want to switch to some other technology when existing technology is working […]

Read article