Just discovered that javascript can solve this problem too :D
(run this multiple times, depending on how many cores your processor has and how much power you need for your work)
<script>
var heater = 1;
while (1)
{
heater = heater + 0.000001;
}
</script>