Tags Algorithmic Composition A Library for Algorithmic Music Composition admin November 22, 2020 I have recently started implementing a library for algorithmic music composition. It provides higher-level algorithms and abstractions for composing multi-track
Tags Common Lisp Book Review – The Common Lisp Condition System: Beyond Exception Handling with Control Flow Mechanisms. admin November 8, 2020 Title: The Common Lisp Condition System: Beyond Exception Handling with Control Flow Mechanisms Author: Michał “phoe” Herda Publisher: Apress Year:
Tags Algorithmic Music Synthesis Using Random Walk Principle to Generate Music admin October 24, 2020 In mathematics, the simplest example of Random Walk is a random process along a one-dimensional plane of integers, starting at 0
Tags iLangGen Template-based Text Generation – Part 2 admin October 11, 2020 In my previous article, I showed how “iLangGen” framework facilitates text generation using templates. I talked about the various “patterns”
Tags iLangGen Template-Based Text Generation admin September 28, 2020 I had written earlier about natural language generation using my iLangGen framework. I used a “template” text file which was instantiated
Tags Mathematica Mathematica: Using TextCases to Extract Information from Natural Language Text admin September 13, 2020 Extracting meaningful information from unstructured, human readable text is a hot topic of research today and has important applications in
Tags Emergency Medicine Book Review – Homeopathy in Intensive Care and Emergency Medicine admin August 30, 2020 Title: Homeopathy in Intensive Care and Emergency Medicine Author: Michael Frass and Martin Bundner (Ed.) Publisher: Narayana Verlag Year: 2017
Tags Elixir Pattern Matching: Comparing Elixir and Mathematica admin August 16, 2020 One of the things I like about Elixir is its support for patterns at the core language level, not through library
Tags Elixir Elixir: Wrapping Lisp Calls in a Macro admin August 1, 2020 In the last article, I showed how to make calls to Lisp functions from Elixir. We followed this pattern: 1)
Tags Elixir Calling Lisp Functions from Elixir admin July 19, 2020 In the last article I showed how we can simulate the idea of Lisp’s “closure” in Elixir. Today, I would like