@loarsaw
Software Engineer
ERPNext provides a powerful REST API that allows you to integrate external applications, automate workflows, and extend functionality. This guide will walk you through both consuming existing APIs and creating your own custom APIs in ERPNext. Underst...

C++ gives developers a lot of control over memory and performance. That control is also the reason many bugs in C++ are subtle, hard to detect, and sometimes disastrous.Most of these issues are not caused by advanced features, but by small, everyday ...

When a chess engine looks at a position, it does not rely on intuition or experience. Instead, it assumes two things: It will always try to play the best possible move Its opponent will also always try to play the best possible move The Minimax a...

Introduction In C++, managing memory manually using arrays can quickly become painful. Fixed sizes, manual resizing, and unsafe operations make traditional arrays error-prone.This is where std::vector comes in. A vector is a dynamic array provided by...
