| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Generate random password that includes numbers and letters |
script | PHP | Free |
View Detail
|
|||||||||
| 2 | Generate random passwords with PHP |
script | PHP | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 3 | Generate Em! 2.00 |
windows | Security Privacy->Password Generators | Free |
View Detail
|
|||||||||
Generate Em description Generate Em! is a small tool for automatically creating "good passwords" Generate Em! is a little application which will help you to automatically Tags: |
||||||||||||||
| 4 | Generate RSS Feeds |
script | PHP | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 5 | B::Generate 1.06 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
B::Generate is a Perl module which you can create your own op trees. SYNOPSIS use B::Generate; # Do nothing, slowly. CHECK { my $null = new B::OP("null",0); my $enter = new B::OP("enter",0); my $cop = new B::COP(0, "hiya", 0); my $leave = new B::LISTOP("leave", 0, $enter, $null); $leave->children(3); $enter->sibling($cop); $enter->next($cop); $cop->sibling($null); $null->next($leave); $cop->next($leave); # Tell Perl where to find our tree. B::main_root($leave); B::main_start($enter); } WARNING This module will create segmentation faults if you dont know how to use it properly. Further warning: sometimes I dont know how to use it properly. There are lots of other methods and utility functions, but they are not documented here. This is deliberate, rather than just through laziness. You are expected to have read the Perl and XS sources to this module before attempting to do anything with it. Patches welcome. Malcolm Beatties B module allows you to examine the Perl op tree at runtime, in Perl space; its the basis of the Perl compiler. But what it doesnt let you do is manipulate that op tree: it wont let you create new ops, or modify old ones. Now you can. Well, if youre intimately familiar with Perls internals, you can. B::Generate turns Bs accessor methods into get-set methods. Hence, instead of merely saying $op2 = $op->next; you can now say $op->next($op2); to set the next op in the chain. It also adds constructor methods to create new ops. This is where it gets really hairy. new B::OP ( type, flags ) new B::UNOP ( type, flags, first ) new B::BINOP ( type, flags, first, last ) new B::LOGOP ( type, flags, first, other ) new B::LISTOP ( type, flags, first, last ) new B::COP ( flags, name, first ) In all of the above constructors, type is either a numeric value representing the op type (62 is the addition operator, for instance) or the name of the op. ("add") (Incidentally, if you know about custom ops and have registed them properly with the interpreter, you can create custom ops by name: new B::OP("mycustomop",0), or whatever.) first, last and other are ops to be attached to the current op; these should be B::OP objects. If you havent created the ops yet, dont worry; give a false value, and fill them in later: $x = new B::UNOP("negate", 0, undef); # ... create some more ops ... $x->first($y); In addition, one may create a new nextstate operator with newstate B::op ( flags, label, op) in the same manner as B::COP::new - this will also, however, add the lineseq op. Finally, you can set the main root and the starting op by passing ops to the B::main_root and B::main_start functions. This module can obviously be used for all sorts of fun purposes. The best one will be in conjuction with source filters; have your source filter parse an input file in a foreign language, create an op tree for it and get Perl to execute it. Then email me and tell me how you did it. And why. Tags: |
||||||||||||||
| 6 | Generate Numly Copyright 1.3 |
windows | System->Browser Tweak | Free |
View Detail
|
|||||||||
Generate Numly Copyright is a Firefox extension that allows you to register documents for Numly copyright Generate Numly Copyright allows you to register documents and blogs for Numly copyright. Numly Numbers are unique identifiers of electronic media and recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier for individuals or companies authoring or distributing electronic content and media. Tags: |
||||||||||||||
| 7 | Generate Numly Copyright 1.3 |
linux | Internet->Firefox Extensions | Free |
View Detail
|
|||||||||
Generate Numly Copyright is a Firefox extension that registers documents and blogs for Numly copyright. Numly Numbers are unique identifiers of electronic media and recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier for individuals or companies authoring or distributing electronic content and media. Tags: |
||||||||||||||
| 8 | Data::Generate 0.01 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Data::Generate allows you to create various types of synthetic data by parsing "regex-like" data creation rules. This module generates data by parsing given text statements (data creation rules). These statements are flexible and powerful regex-like way to control the production of synthetic data. Think about a program that instead of selecting data which matches a regex filter expression, produces it. For example, from the rule [a-c], the generator would produce the array a,b,c. The module works as following: Specify data creation rules. my $generator= Data::Generate::parse(VC(24) [0-9][2-3]); At this step first you define one kind of output datatype (for ex. VC(24)= "output is a string with max length 24") and then with the rest of the expression define what it should look like. If parsing is successful a Data Generator object is instantiated. Get data my $Data= $generator->get_unique_data(10); To really get the data, users must call the get_unique_data method by indicating the desired number of output values. The generator returns the values contained in an array reference. Please remark that output format is fixed according to the data type. Tags: |
||||||||||||||
| 9 | Class::Generate 1.09 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Class::Generate is a Perl module that can generate Perl class hierarchies. SYNOPSIS use Class::Generate qw(class subclass delete_class); # Declare class Class_Name, with the following types of members: class Class_Name => [ s => $, # scalar a => @, # array h => %, # hash c => Class, # Class c_a => @Class, # array of Class c_h => %Class, # hash of Class &m => body, # method ]; # Allocate an instance of class_name, with members initialized to the # given values (pass arrays and hashes using references). $obj = Class_Name->new ( s => scalar, a => [ values ], h => { key1 => v1, ... }, c => Class->new, c_a => [ Class->new, ... ], c_h => [ key1 => Class->new, ... ] ); # Scalar type accessor: $obj->s($value); # Assign $value to member s. $member_value = $obj->s; # Access members value. # (Class) Array type accessor: $obj->a([value1, value2, ...]); # Assign whole array to member. $obj->a(2, $value); # Assign $value to array member 2. $obj->add_a($value); # Append $value to end of array. @a = $obj->a; # Access whole array. $ary_member_value = $obj->a(2); # Access array member 2. $s = $obj->a_size; # Return size of array. $value = $obj->last_a; # Return last element of array. # (Class) Hash type accessor: $obj->h({ k_1=>v1, ..., k_n=>v_n }) # Assign whole hash to member. $obj->h($key, $value); # Assign $value to hash member $key. %hash = $obj->h; # Access whole hash. $hash_member_value = $obj->h($key); # Access hash member value $key. $obj->delete_h($key); # Delete slot occupied by $key. @keys = $obj->h_keys; # Access keys of member h. @values = $obj->h_values; # Access values of member h. $another = $obj->copy; # Copy an object. if ( $obj->equals($another) ) { ... } # Test equality. subclass s => [ ], -parent => class_name; The Class::Generate package exports functions that take as arguments a class specification and create from these specifications a Perl 5 class. The specification language allows many object-oriented constructs: typed members, inheritance, private members, required members, default values, object methods, class methods, class variables, and more. CPAN contains similar packages. Why another? Because object-oriented programming, especially in a dynamic language like Perl, is a complicated endeavor. I wanted a package that would work very hard to catch the errors you (well, I anyway) commonly make. I wanted a package that could help me enforce the contract of object-oriented programming. I also wanted it to get out of my way when I asked. Tags: |
||||||||||||||
| 10 | Generate Excel files |
script | ASP->Excel and ASP | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 11 | Free Random Password Generator 1.2 |
windows | Security Privacy->Password Generators | Free |
View Detail
|
|||||||||
Free Random Password Generator description Free password generator software for Windows that will generate random passwords according to your criteria Free Random Password Generator is easy-to-use free password creator application for Windows.. Using Free Random Password Generator you do not have to think about creating new passwords. Free Random Password Generator will do it for you. Free Random Password Generator generates random passwords according to your criteria. The most important thing when you generate password is to make it difficult for guess. Strong passwords have at least eight characters. The more characters your password contains, the more difficult it can be to figure out. My Password Generator generates random passwords of any length. You can select what characters will be used for generating passwords - you can generate passwords using letters (upper-case, lower-case) and digits. Free Random Password Generator offers an easy way to use generated passwords in different applications. Using "Copy password" option you can easily Here are some key features of "Free Random Password Generator": Generate random passwords · Free Random Password Generator is very easy to use free password generator software. Just click the "Generate Password" button and the program will generate a random password according to the criteria you specify. Custom password length · Free Random Password Generator generates random passwords of any length. Randomness of generated passwords makes them hard to guess. You can set password length in "Password length" field. · Ability to select what characters will be used for generating passwords - you can generate passwords using letters (upper-case, lower-case) and digits. Using generated passwords in other applications · Using "Copy password to buffer (clipboard)" feature you can easily copy generated password to clipboard and then paste it into password field in any application. · To save your time you can use "Generate and Copy password" feature (also accessible by hotkeys and from tray menu) · Looking for fast and easy way to generate passwords, try Free Random Password Generator - free generate passwords software (random password generator freeware)! Requirements: · IBM PC or compatible 1000 MHz or faster · Internet Explorer 5.0 or higher · At least 64 MB RAM and 10 MB of free hard disk space · 256 color monitor capable of 800 x 600 resolution (1024 x 768, millions of colors recommended) Tags: |
||||||||||||||
| 12 | Free Random Password Generator 1.3 |
windows | Security Privacy->Password Generators | Free |
View Detail
|
|||||||||
Tags:
|
||||||||||||||
| 13 | Generate Monte Carlo Simulation 1.0 |
mac | Education->Math Science | Free |
View Detail
|
|||||||||
Generate Monte Carlo Simulation is an AppleScript that will generate a Monte Carlos simulation (as drawing) in OmniGraffle. Works with and requires OmniGraffle 3.0. You may specify parameters like number of path, time steps, size of time step etc. Tags:
|
||||||||||||||
| 14 | Generate Style Sheet Report 1.0 |
mac | Utilities->DTP Prepress | Free |
View Detail
|
|||||||||
Generate Style Sheet Report is a QuarkXPress AppleScript that generates a report of all paragraph styles used in frontmost Quark document. Completly feeware for non-comercial use. Tags: |
||||||||||||||
| 15 | Password Generator PPC 1.02 |
windows | Security Privacy->Password Recovery | Free |
View Detail
|
|||||||||
Windows Mobile based program can make alphanumeric and/or alphabetic characters password. Program can use special characters. Password Generator PPC can generate random numbers only. User can generate lists of passwords. Tags:
|
||||||||||||||
| 16 | Soap Generate Gear 2.6 |
windows | Software Development->XML | $99.00 |
View Detail
|
|||||||||
Using Soap Generate Gear, easily and automatically generate soap protocol source code for client/server sides from wsdl file. RPC and Document style are all supported.What you need to do is just import your wsdl file and click generate button.Pure platform independent c source code to make sure highly performance and windows,linux and unix platform are all supported.experience now! Using Soap Generate Gear, you will find that soap programming suddenly become very easy and comfortable. What you need to do is just import wsdl file and click generate button, Soap Generate Gear will generate all head files and source code files for you. It even can generate demo source code, give you a tutorial how to use the generated protocol api. You can directly compile and run your demo to check and testify your protocol. Pure platform independent c source code to make sure your protocol can compile and run under Windows, Linux and Unix platform. Those clean, beautiful source code guaranty the highly network communication performance. Soap Generate Gear can directly compile the generate source code to be dll or static library. At the same time, it even can generate a makefile if your protocol is designed for linux or unix platform. All those functions together make soap programming more easier then ever! Using Soap Generate Gear, you will find soap programming, debug soap protocol, tunel soap communication performance are not problems any more. Tags:
|
||||||||||||||
| 17 | Password Generator 2.1 |
windows | Utilities->Password Management | $19.95 |
View Detail
|
|||||||||
Password Generator is a software program that generates random passwords. If you constantly have to think of new passwords, install this program. Password Generator runs on Windows 95, 98, 2000, XP, NT, Me. The program can generate as many passwords as you need. Password Generator allows you to generate a password up to one hundred characters long. The program generates mixed-case passwords containing letters and numbers at your discretion. You can copy your password to a .txt file or to the clipboard. Password Generator is very easy-to-use. Just click the Generate Now button and the program will generate the password in a second. Save your time with Password Generator. Download the program now. Tags:
|
||||||||||||||
| 18 | Generate Speakable Time String 1.0 |
mac | Utilities->Others | Free |
View Detail
|
|||||||||
Generate Speakable Time String is a handler for taking the time and generating a string that you can use with the say command to have it speak the time like so: Twelve Thirty Five AM. Completly freeware for non-commercial use. Tags: |
||||||||||||||
| 19 | Generating random passwords |
script | ASP | Free |
View Detail
|
|||||||||
Tags: |
||||||||||||||
| 20 | My Password Generator 1.5 |
windows | Security Privacy->Password Generators | $14.95 |
View Detail
|
|||||||||
My Password Generator description An easy-to-use password creator application for Windows My Password Generator is easy-to-use password creator application for Windows.Using My Password Generator you do not have to think about creating and keeping new passwords. My Password Generator will do it for you. Password is a very important part of your information security - it should be strong. My Password Generator generates random passwords according to your criteria. The most important thing when you generate password is to make it difficult for guess. Strong passwords have at least eight characters. The more characters your password contains, the more difficult it can be to figure out. My Password Generator generates random passwords of any length. Randomness of generated passwords makes them hard to guess. You can select what characters will be used for generating passwords - you can generate passwords using letters (upper-case, lower-case) and digits. Here Generate random passwords · My Password Generator is very easy to use. Just click the "Generate Password" button and the program will generate a random password according to the criteria you specify. · My Password Generator uses Universal Random Number Generator (URAND) subroutine for generating random passwords. Universal Random Number Generator (URAND) is a subroutine for generating uniformly-distributed floating-point numbers in the interval (0,1). URAND is guaranteed to have a full-length cycle. Configurable password length · My Password Generator generates random passwords of any length. Randomness of generated passwords makes them hard to guess. You can set password length in "Password length" field. · Ability to select what characters will be used for generating passwords - you can generate passwords using letters (upper-case, lower-case) and digits. Using generated passwords in other applications · Using "Copy password" option you can easily copy generated password to clipboard (buffer) and then paste it into password field in any application. · To save your time you can use "Generate and Copy password" feature (also accessible by hotkeys and from program tray menu) Requirements: · IBM PC or compatible 1000 MHz or faster · Internet Explorer 5.0 or higher · At least 64 MB RAM and 10 MB of free hard disk space · 256 color monitor capable of 800 x 600 resolution (1024 x 768, millions of colors recommended) Limitations: · 15 days trial Tags:
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
