For example, everything is a vector? For statistical programming that is very neat, and it composes well with how data manipulation is done in R.
For example, everything is a vector? For statistical programming that is very neat, and it composes well with how data manipulation is done in R.
closures[[i]] <- (function(x) { force(x); function() x })(i)
So R is lazy, too!
closures[[i]] <- (function(x) { force(x); function() x })(i)
So R is lazy, too!
closures <- list()
for (i in 1:3) {
closures[[i]] <- function() i
}
print(closures[[1]]())
print(closures[[2]]())
print(closures[[3]]())
These all print 3.
closures <- list()
for (i in 1:3) {
closures[[i]] <- function() i
}
print(closures[[1]]())
print(closures[[2]]())
print(closures[[3]]())
These all print 3.
Mozilla is a little enigmatic. Looking at it from the outside, Firefox and Rust are both extraordinary projects, but it’s unclear if they succeeded because or in spite of the org around them.
Mozilla is a little enigmatic. Looking at it from the outside, Firefox and Rust are both extraordinary projects, but it’s unclear if they succeeded because or in spite of the org around them.
I wonder what happened that made Rust such a clear exception early on. Was Mozilla’s culture and hiring so intentionally humane and that was what shaped it?
I wonder what happened that made Rust such a clear exception early on. Was Mozilla’s culture and hiring so intentionally humane and that was what shaped it?
security-tracker.debian.org/tracker/sour...
security-tracker.debian.org/tracker/sour...
github.com/matiaskorhon...
github.com/matiaskorhon...