Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on October 23, 2012 at 06:13 AM

Section 1 (Text)

[root@Hina ~]# cat cpu.c
#include <stdio.h>
#include <math.h>

int main(void){
	float x=0;
	while(1){
		printf("%f",sqrtf(x));
		x+=0.0001;
	}
	return 1;
}