Tags Fade In Analysing Screenplay with Mathematica admin January 1, 2018 I have a close relative who is an aspiring movie screenplay writer. During one of our recent meetings, he shared
Tags C++17 C++17: constexpr if admin December 17, 2017 constexpr if is another nice little feature in C++17, which significantly simplifies the way we code, especially in the context
Tags C++17 C++17: std::any admin December 3, 2017 In the previous two posts, I talked about std::variant<> and std::optional<>. Today, I want to take up std::any for discussion.
Tags C++17 C++17: std::optional<> admin November 21, 2017 Suppose we want to write a function that returns a value, but with the possibility that the computation might fail.
Tags C++17 C++17: std::variant<> admin November 5, 2017 C++17 introduces a new type-safe union in the form of std::variant. At any time, it can store a single value
Tags C++17 C++17: Initialization in Selection Statements admin October 21, 2017 C++17 enhances if and switch statements with the ability to define variables whose life-time is limited to the corresponding scope.
Tags iLangGen Using Function Calls in the Grammar admin October 14, 2017 One of the advanced features of iLangGen is the ability to embed arbitrary function calls on the RHS of grammar
Tags iLangGen Composition of Grammars admin September 27, 2017 In the last post, we saw how iLangGen text generation framework supports reuse of grammars through inheritance, akin to object-oriented
Tags Grammar Reuse of Grammars Through Inheritance admin September 13, 2017 We are familiar with the advantages of class inheritance in object-oriented languages such as C++, C#, Java, and Python. The
Tags API KP Astrology REST API admin August 30, 2017 In today’s post I want to share my experience in implementing a set of REST API calls for Astrology. The