Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
gzip -9v giantfile1.dat &
gzip -9v giantfile2.dat &
gzip -9v giantfile3.dat &
gzip -9v giantfile4.dat &
gzip -9v giantfile5.dat &
wait
#!/usr/bin/perl
print "Eating the CPUs\n";
foreach $i (1..64) {
$pid = fork();
last if $pid == 0;
print "Created PID $pid\n";
}
while (1) {
$x++;
}
#!/bin/ksh
typeset -i NUMBER=0
while (( 1 ))
do
(( NUMBER += RANDOM ))
(( NUMBER %= 71 ))
(( NUMBER *= 7 ))
(( NUMBER /= 3 ))
done