make a program that beeps every once in a while:

import winsound,time
while True:
    winsound.Beep(32767,1) #maximmumm hertz
    time.sleep(1)
<M/> commented: clever +0

That is actually one of the most creative ideas so far James, nice job!

Perhaps if you find a job that actually interests you ...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.