So I just finished programmed this website
Name:
Anonymous
2010-01-16 14:09
http://pwdb.in
gotta's love php
Name:
Anonymous
2010-01-16 14:15
btw what do you think?
any improvements?
Name:
Anonymous
2010-01-16 14:17
You love PHP but you have no appreciation at all for the English language, eh, motherfucker?
Name:
Anonymous
2010-01-16 14:20
>>3
I wanted to point that out. :(
Name:
Anonymous
2010-01-16 14:22
So basically:
10 length = 6
20 randomly generate consonant
30 length--
40 if length == 0 BREAK
50 randomly generate vowel
60 length--
70 if length == 0 BREAK
80 GOTO 20
, right? Brb, coding an ENTERPRISE C SOLUTION.
Name:
Anonymous
2010-01-16 14:27
>>1
CGI/perl here:
php sucks my dick
Name:
Anonymous
2010-01-16 14:30
Haskell here:
php liftM.sucks my dick
Name:
Anonymous
2010-01-16 14:40
So you're making people enter their parameters into the URL rather than making them selectable?
EXPERT PHP DEVELOPER
Name:
Anonymous
2010-01-16 14:41
>>8
Not his fault he doesn't know how to do POST yet.
Name:
Anonymous
2010-01-16 14:50
Might make an advanced version later.
[code]/* PRONOUNCEABLE PASSWORD GENERATOR */
/* BASIC EDITION */
#include <stdio.h>
#include <time.h>
int main()
{
char cons[] = "bcdfghjklmnprstvwxz";
char vowels[] = "aeiouy";
int x;
srand(time(NULL));
for (x = 0; x < 8; x++)
{
if (x % 2 == 0)
printf("%c", cons[rand() % 19]);
else
printf("%c", vowels[rand() % 6]);
}
return 0;
}
Name:
Anonymous
2010-01-16 14:51
MY CODE TAGS
/* PRONOUNCEABLE PASSWORD GENERATOR */
/* BASIC EDITION */
#include <stdio.h>
#include <time.h>
int main()
{
char cons[] = "bcdfghjklmnprstvwxz";
char vowels[] = "aeiouy";
int x;
srand(time(NULL));
for (x = 0; x < 8; x++)
{
if (x % 2 == 0)
printf("%c", cons[rand() % 19]);
else
printf("%c", vowels[rand() % 6]);
}
return 0;
}
Also, you wouldn't happen to be:
http://dis.4chan.org/read/prog/1263326296
, would you?
Name:
Anonymous
2010-01-16 18:13
I l♥v3 online password generators!