Personal Heater Professional

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
Joakim Christiansen
Addict
Addict
Posts: 2452
Joined: Wed Dec 22, 2004 4:12 pm
Location: Norway
Contact:

Personal Heater Professional

Post by Joakim Christiansen »

Since it's getting very cold these days I made a masterpiece of a software to convert your home computer into a personal heater!
And guess what? It's TOTALLY FREE!!
Just run this code below and it will superheat your computer and make your life much easier at once!! :D

Code: Select all

OpenConsole()
ConsoleTitle("Personal Heater Professional v1.0")
PrintN("Heating in progress, press escape to quit!")
Repeat: Until Inkey() = Chr(27)
Anyone think I can sell this?
I like logic, hence I dislike humans but love computers.
Tipperton
Addict
Addict
Posts: 1286
Joined: Thu Jun 19, 2003 7:55 pm

Post by Tipperton »

Yeah! Sell it to Microsoft to put in Vista!

It'll fit real well with the rest of the crap they've thrown into it.... :mrgreen: ;)
Character
Enthusiast
Enthusiast
Posts: 337
Joined: Mon Aug 07, 2006 3:51 pm
Location: Netherlands

Post by Character »

This will burn it down..

Code: Select all

OpenConsole()

EnableGraphicalConsole(#True) 
ConsoleTitle("Personal Heater Professional v1.1")

Define.b
Move = 1

Repeat
  ConsoleLocate(X, 10)
  Print("Heating in progress, press escape to quit!")
  Delay(20)
  ConsoleLocate(X, 10)    
  Print("                                          ")
  X + Move
  If X = 20 : Move = -1 : EndIf
  If X = 0 : Beep_(100,10) : Move = 1 : EndIf
Until Inkey() = Chr(27)

CloseConsole()
Cessante causa cessat effectus
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

On a similar subject, I'm seriously thinking of getting one of these:
http://www.ubergizmo.com/15/archives/20 ... ooler.html
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
Tipperton
Addict
Addict
Posts: 1286
Joined: Thu Jun 19, 2003 7:55 pm

Post by Tipperton »

Get one of these:

Image

And you won't need one of those.... :mrgreen:
Bonne_den_kule
Addict
Addict
Posts: 841
Joined: Mon Jun 07, 2004 7:10 pm

Post by Bonne_den_kule »

You need code to heat with the GPU too.
User avatar
Joakim Christiansen
Addict
Addict
Posts: 2452
Joined: Wed Dec 22, 2004 4:12 pm
Location: Norway
Contact:

Post by Joakim Christiansen »

Bonne_den_kule wrote:You need code to heat with the GPU too.
Good idea!
I like logic, hence I dislike humans but love computers.
Post Reply