Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2011-11-09 12:44:18
Size: 312
Editor: jaromil
Comment:
Revision 3 as of 2011-11-09 12:49:05
Size: 352
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
p=0; n=1; echo $p
p=0; n=1
Line 7: Line 10:
 echo $n
Line 11: Line 13:
# 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
while true; do
 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)