teh internets - When Memes Attack - 10 promo codes

Discussion in 'Promo Codes and Contests' started by micah, Nov 25, 2009.

  1. micah

    micah Well-Known Member

    Aug 24, 2009
    362
    0
    0
    game developer
    San Francisco
    I'm giving out the promo codes on Friday
     
  2. eggzbacon

    eggzbacon Well-Known Member

    May 17, 2009
    5,808
    38
    38
    The Golden State
    Oh, okay
     
  3. eggzbacon

    eggzbacon Well-Known Member

    May 17, 2009
    5,808
    38
    38
    The Golden State
    Man, I thought it was the first 10 :(
     
  4. vicente.ramirezch

    vicente.ramirezch Well-Known Member
    Patreon Bronze

    Jan 8, 2009
    721
    0
    16
    Santiago, Chile.
    Done!

    Twitter: Vicenteragal
     
  5. sk8erdude50

    sk8erdude50 Well-Known Member

    Oct 6, 2009
    878
    0
    0
    i retweeted, but how do u tweet?
    twitter- rodgerrodger
     
  6. thegamerocks06

    thegamerocks06 Well-Known Member

    Jun 3, 2009
    1,091
    6
    0
    Student
    India
    Done :D Twitter same as here ;)
     
  7. enuhski

    enuhski Well-Known Member

    Oct 25, 2009
    131
    0
    0
    sorry about the double post! how do i delete this one?
     
  8. enuhski

    enuhski Well-Known Member

    Oct 25, 2009
    131
    0
    0
    tweeted! username enuhski :)
     
  9. ImNoSuperMan

    ImNoSuperMan Well-Known Member

    Jun 28, 2009
    10,506
    19
    0
    Tweeted :)

    @NoSuperMan
     
  10. statnut

    statnut Well-Known Member

    May 23, 2009
    190
    0
    0
    Tweeted as statnut.
     
  11. Mr. Crazy

    Mr. Crazy Well-Known Member

    Sep 15, 2009
    3,254
    12
    0
    England
    Me too :(. I hope i win. It looks awesome but for 59p (99c) not £1.19 ($2) but i haven't played it so don't know how much it is worth.
     
  12. micah

    micah Well-Known Member

    Aug 24, 2009
    362
    0
    0
    game developer
    San Francisco
    There's still more time for people to enter, up till tomorrow afternoon when I announce the winners.
     
  13. d1

    d1 Well-Known Member

    Sep 19, 2009
    5,678
    5
    0
    Can I enter!?!?!?!?!? Lol jk :D
     
  14. Mr. Crazy

    Mr. Crazy Well-Known Member

    Sep 15, 2009
    3,254
    12
    0
    England
    Hmmmmmm, now i play the waiting game. I hope i win :D!
     
  15. micah

    micah Well-Known Member

    Aug 24, 2009
    362
    0
    0
    game developer
    San Francisco
    Ok I'm collecting all the usernames for people who tweeted and working on a good way to randomly 10 people out of it. FYI there have been 21 people who entered the contest, so you have about a 47% chance of winning it. Also it's not too late to enter, if you can tweet about teh internets before I finish coming up with a pseudorandom way to pick the winners.
     
  16. da shiz wiz 19

    da shiz wiz 19 Well-Known Member

    Sep 24, 2009
    7,318
    9
    0
    #36 da shiz wiz 19, Nov 27, 2009
    Last edited: Nov 27, 2009
    hey can i enter?'
    im kidding btw =D
     
  17. Elkas

    Elkas Well-Known Member

    Nov 1, 2009
    662
    0
    0
    Just Tweeted and Followed! Mi Twitter Username is @iPhoneReNews
     
  18. eggzbacon

    eggzbacon Well-Known Member

    May 17, 2009
    5,808
    38
    38
    The Golden State
    Okay, im waiting!
    I wanna pwn some trolls!!!
     
  19. tzual

    tzual Well-Known Member

    Nov 7, 2009
    1,040
    27
    0
    No eggsbacon i'm gonna win
     
  20. micah

    micah Well-Known Member

    Aug 24, 2009
    362
    0
    0
    game developer
    San Francisco
    Ok everyone, the results are in! And the winners are:

    • AaronAMV
    • vicente.ramirezch
    • tzual
    • thegamerocks06
    • Ossamu
    • H-T0WN/G4M3R
    • Mr Crazy
    • Remmykins
    • iamryanhello
    • enuhski

    I'm PMing you promo codes right now. Congrats to the winners, sorry to the losers (you could always buy it :D).

    And if you're curious, I told you I'd use my uber1337 programming skillz to choose randomly, so here's the program I used. It's written in Objective-C, which is what iPhone apps normally get written in. If you can find any problems with it, then lemme know and maybe I'll give you a promo code :).

    Code:
    // Make an array and add all the usernames to it
    // in the order they posted to the forum
    NSMutableArray* contestants = [NSMutableArray arrayWithCapacity:22];
    [contestants addObject:@"AaronAMV"];
    [contestants addObject:@"drelbs"];
    [contestants addObject:@"Ossamu"];
    [contestants addObject:@"Remmykins"];
    [contestants addObject:@"tzual"];
    [contestants addObject:@"Mr Crazy"]; 
    [contestants addObject:@"eggzbacon"]; 
    [contestants addObject:@"diffusion8r"];
    [contestants addObject:@"iamryanhello"]; 
    [contestants addObject:@"sk8erdude50"];
    [contestants addObject:@"megasamus1"];
    [contestants addObject:@"Devilishly Good"];
    [contestants addObject:@"akame"];
    [contestants addObject:@"H-T0WN/G4M3R"];
    [contestants addObject:@"AlvinDj"];
    [contestants addObject:@"Linzy"]; 
    [contestants addObject:@"vicente.ramirezch"];
    [contestants addObject:@"thegamerocks06"];
    [contestants addObject:@"enuhski"];
    [contestants addObject:@"ImNoSuperMan"];
    [contestants addObject:@"statnut"];
    [contestants addObject:@"Elkas"];
    
    // Make a new array to hold the contestants in a random order
    NSMutableArray* shuffledContestants = [NSMutableArray arrayWithCapacity:[contestants count]];
    
    // Keep running this code while there are any contestants left in the contestants array
    while([contestants count] > 0) {
    	// Choose a random username from contestants
    	int index = arc4random() % [contestants count];
    	id objectToMove = [contestants objectAtIndex:index];
    	
    	// Add it it shuffledContestants, remove it from contestants
    	[shuffledContestants addObject:objectToMove];
    	[contestants removeObjectAtIndex:index];
    }
    
    // Now we have shuffledContestants, an array of all the TouchArcade users
    // who entered the contest, in a random order. Now display the first 10 to the
    // console, and those will be the winnders
    for(int i=0; i<10; i++) {
    	// Display the username
    	NSLog(@"%@", (NSString*)[shuffledContestants objectAtIndex:i]);
    }
    
     

Share This Page