<html>
<head>
<title>Rock Paper Scisscors</title>
...

JavaScript Rock Paper Scissors

by brianp12.myopenid.com, November 05, 2011 19:27, 3 refactorings, tagged with javascript, loops, while, rock, paper, scissors, rock paper scissors, do while, while loop

My professor has told me I ...

55502f40dc8b7c769880b10874abc9d0 Talk
using namespace std;
#include <iostream>
void main ()
...

C++ While Loop problem

by https://www.google.com/accounts/o8/id?id=AItOawnw_1FTdneRHSO7bpyrOR95lIwLqo99SxE, November 15, 2010 15:51, 5 refactorings, tagged with while, black screen

Without the while loop, it ...

55502f40dc8b7c769880b10874abc9d0 Talk
// routine for loading all grass sprites we can find
char buffer[32];
std::string setname = "jungle";
...

C++ Call sprintf_s only once

by Mizipzor, January 26, 2009 10:27, 6 refactorings, tagged with loop, C++, while, sprintf_s

Can this routine be done wi...

9e9bb40f93094055bd09193eb3bccbb8 Talk
def before_create_save(record)
  vouchercode = generate_vouchercode(8)
  while Voucher.find(:first, :conditions => {:vouchercode => vouchercode})
...

Ruby While loop to get unique value

by dive.myopenid.com, January 06, 2009 16:44, 5 refactorings, tagged with while, uniqueness

Coming from python, I would...

6cb63e2304cb64236520d0e3e353c9bc Talk