|
-
April 2nd, 2004, 08:49 PM
#1
How do I make an infinite loop of opening notepads?
I tried just doing
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
(like about 10000)
but that only opened 2 notepads.
So what would it look like?
thanks a lot.
-
April 2nd, 2004, 09:53 PM
#2
-
April 2nd, 2004, 10:01 PM
#3
Maybe He/She has a lot of notes to write.
Wakeup in the morning and kick the day in the teeth!! Or something like that.
"i don't want to write leak free code or most efficient code, like others traditional (so called expert) coders do."
-
April 2nd, 2004, 10:06 PM
#4
Re: How do I make an infinite loop of opening notepads?
Originally posted by redhatmasta
I tried just doing
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
system ("notepad")
(like about 10000)
but that only opened 2 notepads.
So what would it look like?
thanks a lot.
That is the most evil thing I have ever read.
-
April 2nd, 2004, 10:22 PM
#5
Yah, it is pretty chilling. Makes you stop and think about
the state of the world.
Wakeup in the morning and kick the day in the teeth!! Or something like that.
"i don't want to write leak free code or most efficient code, like others traditional (so called expert) coders do."
-
April 2nd, 2004, 10:28 PM
#6
Code:
start notepad.exe
start NotepadHax.bat
Simple bat file. This also loads a shitload of command prompts onto the screen too
-
April 4th, 2004, 02:26 PM
#7
I just looked at his nick... One of those Lunix guys with a grudge against Microsoft?
-
April 4th, 2004, 02:32 PM
#8
Code:
/* Nothing better to do... so let's start notepad until we die */
for ( ; ; )
system("notepad");
-
April 4th, 2004, 03:42 PM
#9
Originally posted by j0nas
Code:
/* Nothing better to do... so let's start notepad until we die */
for ( ; ; )
system("notepad");
Code:
while ( 1 == 1 )
{
Sleep(300); // Let's wait a little bit
system("notepad.exe");
}
I'm testing now, how much notepad's my winXP can stand ... that's funny
-
April 5th, 2004, 03:10 PM
#10
Code:
rem.. NoteGo.bat....
echo off
:zippy
start notepad.exe
goto zippy
copy that into notego.bat or notego.cmd. But that file on the path of your machine and then from any command promp just say... [ notego.bat ]
A better one if you want to mess with somebody is to do a net send...
NET SEND {name | * | /DOMAIN[:name] | /USERS} message
Code:
rem datemaker...
echo off
:slappy
net send %1 %2....
goto slappy...
copy that to datemaker.cmd.. and run it like this...
datemaker.bat Beth "I control the world"
where beth is a username....
Now becareful because if you run this from yourown machine there is a good chance you'll get fired for harasment...
puts up a messege box on the persons machine which they can't close.....
Never Never do this....
Datemaker.bat * "take this job and shove it!"
at least not from your own machine...
-
April 5th, 2004, 03:26 PM
#11
can this thread degenerate any more?
-
April 5th, 2004, 03:33 PM
#12
Originally posted by Mick
can this thread degenerate any more?
Is that a dare?
Jeff
Last edited by jfaust; April 5th, 2004 at 03:37 PM.
-
April 5th, 2004, 03:34 PM
#13
If it wasn't a dare, then I dare you...
Wakeup in the morning and kick the day in the teeth!! Or something like that.
"i don't want to write leak free code or most efficient code, like others traditional (so called expert) coders do."
-
April 5th, 2004, 03:40 PM
#14
Actually all of the above implementations will generate a finite number of notepads.
With manual intervention, additional copies may be generated, but the number of simultanious copies will still be finite.
We all have our good ideas, but lets try to answer the posters ORIGINAL question, rather than going off on tangents.....
<ducking and running rapidly!!!!>
TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
2008, 2009,2010
In theory, there is no difference between theory and practice; in practice there is.
* Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions 
* How NOT to post a question here
* Of course you read this carefully before you posted
* Need homework help? Read this first
-
April 5th, 2004, 03:56 PM
#15
Originally posted by souldog
If it wasn't a dare, then I dare you...
It's tempting, but I should really wait until later when I'm not using my work's computer. Hmmm, lack of response from NoHero since he started his experiment has me a bit worried.
It's a bit silly to shoot for infinite Notepads--that requirement is never attainable as TheCPUWizard so eloquently stated.
Perhaps a program that opens Notepad at random intervals. Place it in the startup group of your friends computer.
Jeff
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|