Tags C++Programming Counting Sentences: An Implementation in C++20 admin March 22, 2026 Counting the number of sentences in a given paragraph appears rather simple on the surface – look for the common
Tags C++Programming Beyond Ownership: Understanding the Role of std::weak_ptr in Modern C++ admin May 4, 2025 Smart Pointers in C++ are elegant abstractions for managing dynamic memory safely, avoiding dangling pointers and preventing leaks. While std::unique_ptr
Tags C++LISP Interfaces Without Inheritance: Comparing C++ and Common Lisp admin April 24, 2025 Clean interface design is a crucial aspect of software engineering since it enables code flexibility, reuse, and maintainability. Developers who
Tags C++LISPProgrammingProlog Multiobjective Optimization (MOO) in Lisp and Prolog admin November 22, 2024 Recently I came across a nice article by Jose Crespo, where the author stresses that the future of programming revolves around
Tags AstrologyC++ KP Astrology REST Server: Part 2 admin June 8, 2024 In my earlier article, I had briefly described the REST server I wanted to build for Krishnamurti Padhdhati system of
Tags Book ReviewC++ Book Review: C++ Initialization Story admin November 6, 2023 Title: C++ Initialization Story – A Guide Through All Initialization Options and Related C++ Areas Author: Bartłomiej Filipek Publisher: Leanpub
Tags C++Programming C++20: “constinit” Specifier admin October 15, 2023 The constinit specifier, introduced in C++20, is applied to static variables (global and local static) and thread local variables, with
Tags C++Programming C++23: if consteval admin September 24, 2023 “If consteval” is useful in the context of calling a consteval function from within a constexpr function. A consteval function
Tags C++Programming std::is_scoped_enum<> admin August 13, 2023 The type trait “std::is_scoped_enum<T>::value” was introduced in C++23 to check whether the type “T” is a scoped enum type. Another
Tags C++Programming C++23: “stacktrace” Library admin June 6, 2023 The ability to enumerate stack frames at runtime is one of the interesting features introduced in C++23. This is made