View Poll Results: Biggest Troll on the Forums

Voters
41. You may not vote on this poll
  • JatGoodwin

    11 26.83%
  • McLovin

    8 19.51%
  • -HP-

    5 12.20%
  • Drunkie

    10 24.39%
  • Divran

    7 17.07%
+ Reply to Thread
Page 342 of 1326 FirstFirst ... 242292332340341342343344352392442842 ... LastLast
Results 3,411 to 3,420 of 13260
Like Tree3754Likes

Thread: Longest Thread Ever!!1one (junk thread)

  1. #3411
    Wire Sofaking N00bDud3's Avatar
    Join Date
    Jul 2009
    Location
    Error: Unknown Location
    Posts
    1,252

    Default re: Longest Thread Ever!!1one (junk thread)

    I'm stuck on 4... All I can do is make it pulse like crazy, but not just one quick pulse then done.



  2. #3412
    I think I think too much -HP-'s Avatar
    Join Date
    Feb 2009
    Location
    Behind you with a very sharp knife.
    Posts
    2,466

    Default re: Longest Thread Ever!!1one (junk thread)

    Quote Originally Posted by N00bDud3 View Post
    I'm stuck on 4... All I can do is make it pulse like crazy, but not just one quick pulse then done.



  3. #3413
    billywitchdoctor.com Schilcote's Avatar
    Join Date
    Jan 2009
    Location
    There.
    Posts
    2,006

    Default re: Longest Thread Ever!!1one (junk thread)

    I wimped out on level 3 too :P

    EDIT:

    New sig quote

    Is it too big? I found it in my server's ULX logs.
    Last edited by Schilcote; 03-19-2010 at 05:40 PM.


    [19:16:47]Client "rcdraco" spawned in server
    [19:17:10]rcdraco: hamburgertime
    [19:18:04]rcdraco was killed by worldspawn
    [19:21:50]Dropped "rcdraco" from server

  4. #3414
    Wire Sofaking IEF015's Avatar
    Join Date
    Feb 2008
    Location
    London, ON (Canada, eh?)
    Posts
    1,640

    Default re: Longest Thread Ever!!1one (junk thread)

    I've been working on 3 for about 30 minutes now, I should probably start over.


    edit: woo I did it
    Last edited by IEF015; 03-19-2010 at 11:16 PM.
    "It's my favourite country song. And I hate it."

  5. #3415
    Lifetime Supporter dracotonisamond's Avatar
    Join Date
    Jun 2009
    Location
    127.0.0.1
    Posts
    376

    Default re: Longest Thread Ever!!1one (junk thread)


    i came hard. dr. who at the end... FROM A TESLA COIL D:

    Quote Originally Posted by JatGoodwin in wiremod IRC
    <JatGoodwin> ITSBTH, the point of rainmeter is to impress the lamers with your leet computer
    <JatGoodwin> software equivalent of putting lights in your computer

  6. #3416
    Wire Sofaking N00bDud3's Avatar
    Join Date
    Jul 2009
    Location
    Error: Unknown Location
    Posts
    1,252

    Default re: Longest Thread Ever!!1one (junk thread)

    Those tesla coils are amazing!

    Last edited by N00bDud3; 03-20-2010 at 01:17 PM.



  7. #3417
    Wire Sofaking IEF015's Avatar
    Join Date
    Feb 2008
    Location
    London, ON (Canada, eh?)
    Posts
    1,640

    Default re: Longest Thread Ever!!1one (junk thread)

    I can't get level 6. I can't find a way to actually save a value.
    "It's my favourite country song. And I hate it."

  8. #3418
    has a custom title mattwd0526's Avatar
    Join Date
    Apr 2009
    Location
    Born Bostonian
    Posts
    2,652

    Default re: Longest Thread Ever!!1one (junk thread)

    Learning meh some C++, getting lonely in the process...

    I made me a calculamator!

    Code:
    // initializing C++
    
    #include <iostream>
    #include <string>
    #include "windows.h" 
    
    using namespace std;
    
    
    float multiply(float f, float s) {
    	float tempout=f*s;
    	return(tempout);
    }
    float add(float f, float s) {
    	float tempout=f+s;
    	return(tempout);
    }
    float subtract(float f, float s) {
    	float tempout=f-s;
    	return(tempout);
    }
    float divide(float f, float s) {
    	float tempout=f/s;
    	return(tempout);
    }
    
    int main()
    {
    	string oper;
    	string oprecognized;
    	string operdisp;
    	string opersymb;
    	string repeatstr;
    	float first;
    	float second=0;
    	float output;
    	int run=0;
    	cout << "Input operation type: ";
    	cin >> oper;
    	if(oper=="multiply"||oper=="add"||oper=="subtract"||oper=="divide"
    		||oper=="Multiply"||oper=="Add"||oper=="Subtract"||oper=="Divide") 
    	{oprecognized="";	}
    	else
    	{oprecognized="not ";
    	run=1;}
    	operdisp= oper=="multiply"||oper=="Multiply" ? "Multiplying" : oper=="subtract"||oper=="Subtract" ? "Subtracting" : oper=="add"||oper=="Add" ? "Adding" : "Dividing";
    	cout << "Operation "<<oprecognized<<"recognized!\n";
    	Sleep(1000);
    	while(!run) {
    	cout << "Enter first number: ";
    	cin >> first;
    	cout << "\nEnter second number: ";
    	cin >> second;
    	if(second==0) {cout << "Not an accepted input.\n";}
    	while(second==0&&operdisp=="Dividing")
    	{cin >> second;
    	if(second==0) {cout << "Not an accepted input.\n";}
    	}
    	cout << "\n"<<operdisp<<"...";
    	if(operdisp=="Multiplying") {output=multiply(first, second);}
    	else if(operdisp=="Adding") {output=add(first, second);}
    	else if(operdisp=="Subtracting") {output=subtract(first, second);}
    	else{output=divide(first, second);}
    	opersymb= oper=="multiply"||oper=="Multiply" ? "*" : oper=="subtract"||oper=="Subtract" ? "-" : oper=="add"||oper=="Add" ? "+" : "/";
    	cout << "\nFirst "<<opersymb<<" Second = "<<output<<"\n";
    	Sleep(4000);
    	cout << "\nNew operation? (Y/N) ";
    	cin >> repeatstr;
    	run= repeatstr=="Y"||repeatstr=="y" ? 0 : 1;
    	if(!run) {cout << "\n\n\n";
    		cout << "Input operation type: ";
    	cin >> oper;
    	if(oper=="multiply"||oper=="add"||oper=="subtract"||oper=="divide"
    		||oper=="Multiply"||oper=="Add"||oper=="Subtract"||oper=="Divide") 
    	{oprecognized="";	}
    	else
    	{oprecognized="not ";
    	run=1;}
    	cout << "Operation "<<oprecognized<<"recognized!\n";
    	Sleep(1000);
    }
    	}
    Sleep(1000);
    return 0;
    }
    Last edited by mattwd0526; 03-20-2010 at 05:36 PM.

  9. #3419
    Wirererer jesse1412's Avatar
    Join Date
    Sep 2009
    Location
    in your basement
    Posts
    315

    Default re: Longest Thread Ever!!1one (junk thread)


  10. #3420
    Official Bastard of Wire Jat Goodwin's Avatar
    Join Date
    Aug 2008
    Location
    Colorado Springs
    Posts
    2,771

    Default re: Longest Thread Ever!!1one (junk thread)

    [tt]

    | | | | | |
    v
    + + + + v
    | --- |---| |---| |---| |---| --- |
    + | =| | | | | | | |= | +
    -------
    | | | | | | | | | | | -------
    | =
    | | + | | + | | + | | = |
    -------
    ------- --- /---\ --- ------- -------
    ^ ^
    | =| =| @ |= |= | ^ ^
    ------- --- |---| --- -------
    ^ ^ | | ^ | | ^ ^
    | | | |
    | | | |
    |---| |---|
    ^ ^


    [/tt]
    Ö͎̗̫̙̝̹͓̤̙́ͣͤ̈́̋̽̋͜f̺̦̠̻̜̼̮͓̖́̓̄̿̓̌̓̍̔f̵̳̻̜̹̤̱̊͒ͤ͌ ̅ͭͮ̾͟i̗͖̎͗̇ͯ̈̀̌̽c̯̮̉ͮ̾͟͡i̵̺̻̠̘̤̫͕ͯͭ̅͊ͤͦͧa̷͇̖̲ͥ͗ͪ̎ͤ ̽̾ͫl̶̈́̉̉͂̿̎ͯͥ̐҉̗͙̦̻̪ ̪̻͕̗̝͈̘͓ͬ̋̕͟B͚̲̍͢ā̸̪͔͖̟ͫͨ͜͝s͈͔͔͖͇͍̗͛ͯ̑̂͟t̮̤̬̩̅ͧ̎͑͗ ̃̕͟a̸̧̻̖̘̞̪̲͈͕̲͊ͭͪ͆̉r̯̩̮̬̥̤̗̙̃͌̑͊͢͞ď̠̦̲̥͢͡ ̵̶̢̱̲̺͈̘̳͕ͤͅo̯̞̙̦͖̪̽ͩ͊ͅf̵̦͈̣͙̰̎͋̿́ͅ ̛͕̹̫̰̱̾̓ͪ̌̽̊͘͡W̨̬̲̤̖̽̿͛ͨ͛̃̎͐̏i̛̼̳̝̺̝̭͙͋̑͑ͬ͠ṙ̼͔̪ͯͨͭ ̕e̸̗͕̰̒̃ͩͬ̾͆́ͅͅ

    I Require More Minions! Join us on the IRC !
    List of Reasons to idle on the IRC: Wire QDB

+ Reply to Thread

Similar Threads

  1. Aircraft thread
    By Black Phoenix in forum Finished contraptions
    Replies: 47
    Last Post: 05-04-2010, 04:42 AM
  2. GPU thread + other big updates
    By Black Phoenix in forum CPU, GPU, and Hi-speed Discussion & Help
    Replies: 100
    Last Post: 12-06-2008, 02:24 AM
  3. Another vector help thread
    By dpidcoe in forum Installation and Malfunctions Support
    Replies: 2
    Last Post: 11-28-2008, 10:38 AM
  4. CPU/GPU bug thread
    By Azrael in forum CPU, GPU, and Hi-speed Discussion & Help
    Replies: 50
    Last Post: 11-14-2008, 07:01 PM
  5. The One-Upping thread
    By LuaPineapple in forum Off-Topic
    Replies: 24
    Last Post: 03-31-2008, 03:38 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
proceed-collector
proceed-collector
proceed-collector
proceed-collector
linguistic-parrots
linguistic-parrots
linguistic-parrots
linguistic-parrots