Tags ProgrammingVlang The Sum Type in V Programming Language admin July 2, 2023 A Sum data type in V language gives us a convenient way to hold objects of many distinct types (at
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
Tags C++Programming std::expected<> admin May 13, 2023 I had written about std::optional<> in an earlier article. C++23 introduces std::expected<> as an interesting extension to std::optional<>. Whereas std::optional<>
Tags ProgrammingVlang Defer Statement in V Language admin April 20, 2023 The defer statement in Vlang causes code to be executed when the enclosing function returns. This feature is inspired by
Tags ProgrammingVlang Building V Language DLL admin April 2, 2023 The relatively new V Programming Language (Vlang) boasts of some interesting features such as “fast compilation” and runtime performance “as
Tags OpenAIProgrammingXojo Building a Xojo App to Interact with OpenAI API admin March 16, 2023 A few weeks ago I registered with OpenAI to access its services through API and created a secret Key for
Tags JuliaProgramming Julia: Defining Functions Dynamically admin March 5, 2023 One of the widely discussed features of Julia is its support for metaprogramming. This feature makes it possible to generate
Tags JuliaLISPProgramming Calling External DLL Functions from Julia admin February 16, 2023 Julia supports calling external functions, especially those written in “C” language. As Julia documentation says, such calls do not involve
Tags Knowledge RepresentationProgramming Book Review: Adventures in Rule-Based Programming – A CLIPS Tutorial admin January 11, 2023 Title: Adventures in Rule-Based Programming – A CLIPS Tutorial Author: Gary Riley Publisher: Secret Society Software, LLC Year: 2022 In
Tags C++Programming Std::tie admin December 25, 2022 std::tuple is a widely used abstraction in C++ and has been around since C++11. It is a generalization of std::pair.