DNSSEC and IPv6 glue for .uk domains

September 28th, 2011 by

We’ve implemented DNSSEC support and IPv6 glue fully for .uk domains through our control panel. We’re still working on our wholesale for .com/.net/.org.

R Project for Statistical Computing

September 20th, 2011 by

We’ve installed R on sphinx so sphinx users can do statistical computing using R. Here’s a trivial example of it in use,

[pete@sphinx R]$ R

R version 2.13.1 (2011-07-08)
Copyright (C) 2011 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: i686-pc-linux-gnu (32-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> x <- c(1,2,3,4,5,6)
> y <- x^2
> print(y)
[1] 1 4 9 16 25 36
>