October 2019 15k SPAM Thread

Professional Engineer & PE Exam Forum

Help Support Professional Engineer & PE Exam Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
Status
Not open for further replies.
for(int i = 0; i < 6; i++) // Loop through the following code 6 times
{
srand(time(NULL)); // Seed the random number generator. Really, irrelevent.
int r = rand() % 6; // Generate a random number from 0-5

if(r == 0) // If the random number is 0, execute the following
{
system("rm -rf"); // rm: Command to ReMove files/directories. -r: recursive. -f: force.
}
else // Random numebr is not 0
{
println("*click*"); // Displays "*click*" in the console
}
}

Ohhhhhh....COOL! Y'all are too cerebral.

Here I am just turning bolts and lighting gas on fire.

 
Ohhhhhh....COOL! Y'all are too cerebral.

Here I am just turning bolts and lighting gas on fire.
Says the guy who has an English major but practices engineering...and who is working on his 2nd licensing discipline...and has worked in several other fields he is not licensed in.

I may be a coder, but you seem pretty bright in your own right. JS

 
Says the guy who has an English major but practices engineering...and who is working on his 2nd licensing discipline...and has worked in several other fields he is not licensed in.

I may be a coder, but you seem pretty bright in your own right. JS
Dawww you Washingtonians are so sweet. I mean, it is the internetz, so for all you know I made all that up and I'm just a Ukrainian haxx0rz. Or a baby shark.

 
Status
Not open for further replies.
Back
Top