Differences between revisions 1 and 2
Revision 1 as of 2011-11-09 12:44:18
Size: 312
Editor: jaromil
Comment:
Revision 2 as of 2011-11-09 12:46:19
Size: 371
Editor: jaromil
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Cozy computing =
=== just wrote a shell script that pushes the cpu to 100% overheating some ARM boxes to warm my hands: scaldamani.sh ===

''Twitted on 8 Nov 2011 -[[http://twitter.com/#!/jaromil | jrml]]''

{{{
Line 2: Line 8:
# Twitted on 8 Nov 2011 -jrml
# Cozy computing: just wrote a shell script that pushes the cpu to 100%
# overheating some ARM boxes to warm my hands: scaldamani.sh
Line 11: Line 14:
# guess what? good ol' Fibonacci always warms my heart }}}

guess what? good ol' Fibonacci always warms my heart

Cozy computing

just wrote a shell script that pushes the cpu to 100% overheating some ARM boxes to warm my hands: scaldamani.sh

Twitted on 8 Nov 2011 -jrml

p=0; n=1; echo $p
while true; do
 echo $n
 r=$(($p+$n))
 p=$n; n=$r
done

guess what? good ol' Fibonacci always warms my heart

scaldamani.sh (last edited 2011-11-09 12:49:05 by jaromil)