What learning algorithms are "embarrassingly parallel?" I'll kick it off with the obvious example from the foreach documentation:
rf <- foreach(ntree = rep(250, 4), .combine = combine, .packages = "randomForest") %dopar%
randomForest(x, y, ntree = ntree)
What else is out there that can be easily parallelized with foreach?