Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

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!

Name: Anonymous 2010-01-16 18:49

>>11
no i wouldnt

Name: Anonymous 2010-01-17 4:42

(define make-password
  (λ(n)
    (let ((consonant-sounds (list "b" "br" "bl" "8" "c" "cr" "cl" "ch" "cw" "d"
                                  "dr" "dw" "f" "fr" "fl" "g" "gr" "gl" "gn"
                                  "h" "j" "k" "l" "1" "m" "mn" "n" "p" "pr"
                                  "pw" "ps" "ph" "pl" "qu" "r" "s" "sw" "st"
                                  "sp" "sh" "sk" "sl" "sc" "sn" "5" "t" "tw"
                                  "tr" "th" "7" "v" "w" "wh" "x" "z"))
          (vowel-sounds (list "a" "e" "i" "o" "u" "y" "3" "0" "ai" "ee" "ie"
                              "ou" "oy" "ay" "ey"
                              "ou-" "oy-" "ay-" "ey-"))
          (vowel-finishers (list "b" "c" "d" "f" "g" "h" "j" "k" "l" "m" "n" "p"
                                 "q" "r" "s" "t" "v" "w" "x" "z" "br" "cr" "cl"
                                 "ch" "ng" "ps" "ph" "st" "sp" "sh" "sk" "th"))
          (consonant-finishers (list "e" "i" "o" "u" "y"
                                     "ee" "oo" "ay" "ey" "oy")))
      (let ((choose-from (λ(list)
                           (let ((n (random (length list))))
                             (list-ref list n))))
            (swap (λ(pair)
                    (list (second pair) (first pair)))))
        (let loop ((string "")
                   (chooser (list consonant-sounds vowel-sounds)))
          (if (<= (- n 1) (string-length string))
              (string-append string
                             (if (eq? (first chooser) consonant-sounds)
                                 (choose-from vowel-finishers)
                                 (choose-from consonant-finishers)))
              (loop (string-append string (choose-from (first chooser)))
                    (swap chooser))))))))

Name: Anonymous 2011-02-03 5:42

Name: Anonymous 2011-02-04 13:49

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List