Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 08-25-2003, 12:57 PM   #1
xxweekxx
Confirmed User
 
Join Date: Oct 2002
Posts: 6,780
generate random characters/numbers??

Who knows a software that can generate random characters/numbers?

Like i specify the length and it will generate them line by line.
xxweekxx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-25-2003, 01:01 PM   #2
klik
Confirmed User
 
Industry Role:
Join Date: Nov 2001
Location: san diego
Posts: 5,092
new shit.. maybe you hadn't heard of it...

http://www.google.com
klik is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-25-2003, 01:02 PM   #3
klik
Confirmed User
 
Industry Role:
Join Date: Nov 2001
Location: san diego
Posts: 5,092
google found this one that might work out for you..
http://www.winguides.com/security/password.php
klik is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-25-2003, 01:05 PM   #4
xxweekxx
Confirmed User
 
Join Date: Oct 2002
Posts: 6,780
any other ones?
xxweekxx is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 08-25-2003, 01:07 PM   #5
FuqALot
Confirmed User
 
Join Date: Dec 2001
Location: Malibu
Posts: 3,817
Sure, if ya need help email me [email protected].

#!/usr/bin/perl
@chars = ("a","b","c","d","e","0","1");
$count = 100;
$length = 10;
for ($z=0;$z<$count;$z++) {
$x = "";
for ($i=0;$i<$length;$i++) {
$x .= $chars[int(rand(@chars))];
}
open(x,">>x.txt");
print x $x."\n";
close(x);
}

just upload to your server and run.
$count is number of strings
$length is string length.

will be saved to a file named x.txt.
FuqALot is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.