This document summarizes a presentation on parallelizing R code using various packages. It discusses R's limitations in using only one CPU core by default and reading all data into memory. It then outlines packages for explicit (Rmpi) and implicit (snowfall, foreach) parallelism as well as map-reduce and large memory techniques. The presentation provides an overview of these packages and demonstrates Rmpi for parallelizing a Fibonacci function, though this example does not see performance benefits due to overhead of setting up parallelization outweighing computation costs.