Code archives/Miscellaneous/wait(time)

This code has been declared by its author to be Public Domain code.

Download source code

wait(time) by Nike2009
To wait 5 seconds, people type in Delay 5000. Now all you have to type is wait5. It saves 5 spaces which doesn't sound like alot of room but if you can type 60 words-per-minute, and a word was 3 letters long (so 160 letters per minute) and you used the delay command 16 times in a minute, you would save 5 seconds of that time. So if you did that 12 times (12 minutes) with a total of 80 delay's, you would save one minute. Thats a lot of math! Short version: for every 12 minutes you spend codeing you save a minute of time. So for an hour of coding, you save 5 minutes using the folling code. Here's the code and please comment. All you must do is save this, and in your program use the include command to include these functions in your program. Goes to 1 minute which would be wait60
Function wait1()
Delay 1000
End Function

Function wait2()
Delay 2000
End Function

Function wait3()
Delay 3000
End Function 

Function wait4()
Delay 4000
End Function

Function wait5()
Delay 5000
End Function 

Function wait6()
Delay 6000
End Function

Function wait7()
Delay 7000
End Function

Function wait8()
Delay 8000
End Function 

Function wait9()
Delay 9000
End Function

Function wait10()
Delay 10000
End Function 

Function wait11()
Delay 11000
End Function

Function wait12()
Delay 12000
End Function

Function wait13()
Delay 13000
End Function 

Function wait14()
Delay 14000
End Function

Function wait15()
Delay 15000
End Function 

Function wait16()
Delay 16000
End Function

Function wait17()
Delay 17000
End Function

Function wait18()
Delay 18000
End Function 

Function wait19()
Delay 19000
End Function

Function wait20()
Delay 20000
End Function 

Function wait21()
Delay 21000
End Function

Function wait22()
Delay 22000
End Function

Function wait23()
Delay 23000
End Function 

Function wait24()
Delay 24000
End Function

Function wait25()
Delay 25000
End Function 

Function wait26()
Delay 26000
End Function

Function wait27()
Delay 27000
End Function

Function wait28()
Delay 28000
End Function 

Function wait29()
Delay 29000
End Function

Function wait30()
Delay 30000
End Function 

Function wait31()
Delay 31000
End Function

Function wait32()
Delay 32000
End Function

Function wait33()
Delay 33000
End Function 

Function wait34()
Delay 34000
End Function

Function wait35()
Delay 35000
End Function 

Function wait36()
Delay 36000
End Function

Function wait37()
Delay 37000
End Function

Function wait38()
Delay 38000
End Function 

Function wait39()
Delay 39000
End Function

Function wait40()
Delay 40000
End Function 

Function wait41()
Delay 41000
End Function

Function wait42()
Delay 42000
End Function

Function wait43()
Delay 43000
End Function 

Function wait44()
Delay 44000
End Function

Function wait45()
Delay 45000
End Function 

Function wait46()
Delay 46000
End Function

Function wait47()
Delay 47000
End Function

Function wait48()
Delay 48000
End Function 

Function wait49()
Delay 49000
End Function

Function wait50()
Delay 50000
End Function 

Function wait51()
Delay 51000
End Function

Function wait52()
Delay 52000
End Function

Function wait53()
Delay 53000
End Function 

Function wait54()
Delay 54000
End Function

Function wait55()
Delay 55000
End Function 

Function wait56()
Delay 56000
End Function

Function wai517()
Delay 57000
End Function

Function wait58()
Delay 58000
End Function 

Function wait59()
Delay 59000
End Function

Function wait60()
Delay 60000
End Function

Comments

KillerX2009
Seems pointless. Somebody would need to be a pretty bad coder to use the delay command so much that it makes a significant difference worth the extra memory.


TaskMaster2009
If you type delay commands for an hour, you save 5 minutes? I don't think I type 1 minute of delay commands in an entire program that might take weeks/months to write.


Jesse2009
Ho wow! I thought I was bad. ...that is so silly. why would I do that if I can do something like this:

funciton secs(seconds:float)
     wait 1000*seconds
end function

and how about minutes:
function mins(minutes:float)
    secs(60*minutes)
end function



Naughty Alien2009
..these are really pointless stuff..


Jesse2009
true


Mahan2009
Take it easy, guys.

Maybe this is/seems useful in Nikes current project? And if not everyone should have the right to be "new to programming" and find out what they like by own experiments.

Personally I'd go for Jesses suggestion with "shortcut abbreviation functions" for most work that would involve a lot of "waits":

function wSec()
function wMin()
function wHour()
function wDay()
function wWeek()

etc...

This is also similar to what can be found in the std-libs of many higher level languages.


Warner2009
and you used the delay command 16 times in a minute, you would save 5 seconds of that time
:) Funny, but a bit of a waste of the code archive.


Code Archives Forum