Todd Iverson

Results 3 issues of Todd Iverson

The new website looks great. Please note that the *NMF Audio Mosaicing* link is broken on the front page.

I find the argument order of `andMap` curious. Most maps have the function(s) preceding the data, which facilitates piping with maps. ```{elm} xs |> func1 |> map func2 |> func3...

When you evaluate `empty` you get `'()` displayed. ``` Racket > empty - (listof 'a) '() ``` But `'()` evaluates to the empty s-expression. ``` Racket > '() - s-expression...