This document discusses writing a domain specific language (DSL) for data transformations using applicative functors in Scala. It introduces the concepts of Picker, Reader, and Result to parse heterogeneous data formats into a common format. Reader is defined as an applicative functor to allow combining multiple readers. Later, Reader is enhanced to take type parameters for both input and output to avoid reparsing data and support XML parsing. Type lambdas are used to make Reader work as an applicative functor.