====================================================================
Published: 1 December 2021 Tags: python, assembly
To iterate or to recurse? That is the question that Llorenç Muntaner answers in this article. Llorenç explores the similarities and differences in taking an iterative or recursive approach by breaking down the implementations of both in pseudo-assembly.
Published: 4 December 2021 Tags: c
If you’re working with csv data using standard UNIX tools like awk, sed, sort, etc. then you might run into issues with embedded commas and newlines being incorrectly interpreted as separators. In this concise article, Chris Wellons demonstrates his own optimized implementation of a library that helps you handle these issues and explains how he went about optimizing it.
Published: 6 December 2021 Tags: emscripten
The web is becoming home to more complicated applications, which would traditionally be only available as desktop/mobile native applications, a large part due to hardware improvements and compilation of software to web assembly. In this informative second article in the series, Niklas Gray presents some of the challenges faced when porting a game engine to the browser using Emscripten.