WareSeeker Search Software

generate


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

Generate RSS Feeds


script PHP Free
View Detail
Download Generate RSS FeedsDownload Generate RSS Feeds
As RSS and XML are becoming increasingly popular, you may find yourself needing a script to generate RSS feeds. This tutorial guides you through the process and pitfalls.
Tags:
2

B::Generate 1.06


linux Programming->Libraries Free
View Detail
Download B::Generate 1.06Download B::Generate 1.06
0.012 MB
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:
3

Generate Numly Copyright 1.3


windows System->Browser Tweak Free
View Detail
Download Generate Numly Copyright 1.3Download Generate Numly Copyright 1.3
6 KB
Generate Numly Copyright description
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:
4

Generate Numly Copyright 1.3


linux Internet->Firefox Extensions Free
View Detail
Download Generate Numly Copyright 1.3Download Generate Numly Copyright 1.3
0.006 MB
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:
5

Generate Em! 2.00


windows Security Privacy->Password Generators Free
View Detail
Download Generate Em! 2.00Download Generate Em! 2.00
530 KB
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
create "good passwords". A "good password" is a password, that is not a word and contains numbers and letters. The program also copies the new password to the clipboard automatically. Written in Delphi/VB.

Tags:
6

Data::Generate 0.01


linux Programming->Libraries Free
View Detail
Download Data::Generate 0.01Download Data::Generate 0.01
0.025 MB
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:
7

Class::Generate 1.09


linux Programming->Libraries Free
View Detail
Download Class::Generate 1.09Download Class::Generate 1.09
0.052 MB
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:
8

Generate Excel files


script ASP->Excel and ASP Free
View Detail
Download Generate Excel filesDownload Generate Excel files
Generating Excel files from web pages or other applications is a major subject in many articles. Id like to present here some solutions, part of them, already presented and well known. Some of them require MS Excel to be installed on the server, and other not. Read here a few solutions.
Tags:
9

Generate Monte Carlo Simulation 1.0


mac Education->Math Science Free
View Detail
Download Generate Monte Carlo Simulation 1.0Download Generate Monte Carlo Simulation 1.0
35 KB
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:
10

Generate Style Sheet Report 1.0


mac Utilities->DTP Prepress Free
View Detail
Download Generate Style Sheet Report 1.0Download Generate Style Sheet Report 1.0
25 KB
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:
11

Soap Generate Gear 2.6


windows Software Development->XML $99.00
View Detail
Download Soap Generate Gear 2.6Download Soap Generate Gear 2.6
2.95MB

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:
12

Generate Speakable Time String 1.0


mac Utilities->Others Free
View Detail
Download Generate Speakable Time String 1.0Download Generate Speakable Time String 1.0
6 KB
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:
13

Generate random passwords with PHP


script PHP Free
View Detail
Download Generate random passwords with PHPDownload Generate random passwords with PHP
In this tutorial I will show you how to generate random passwords that are highly secure and extremely difficult to crack. However you can choose between various complexity/strength and you can set password length as well.
Tags:
14

Generate Numly Copyright ID 1.2


mac Dashboard Widgets->Blogs Forums Free
View Detail
Download Generate Numly Copyright ID 1.2Download Generate Numly Copyright ID 1.2
58 KB
Numly assigns electronic serial numbers or Numly Numbers to all things digital. Numly Numbers can be used as proof of copyright or as a digital rights management solution by assigning unique Numly Numbers to copies (licenses) of your digital works.

Numly Numbers are recognized worldwide by electronic publishing companies and electronic content providers. Numly Numbers are simple and quick to generate and serve as branded identifier or copyright for individuals or companies developing electronic content and media.

Whats New in This Release:

· Added several new checkboxes: Mark Private; Include Barcode; Include Rating System.

Tags:
15

Generate random password that includes numbers and letters


script PHP Free
View Detail
Download Generate random password that includes numbers and lettersDownload Generate random password that includes numbers and letters
Generate random password that includes numbers and letters
Tags:
16

Generate online Custom ASP Access Database script


script ASP->Database Tools Free
View Detail
Download Generate online Custom ASP Access Database scriptDownload Generate online Custom ASP Access Database script
Generate ASP Access database scripts to your own custom design of your database, also in CGI-Perl and PhpMySQL, with Add, Search, Edit and Delete functions. A user can edit and delete his own record only, protection being provided by user-selected password. Search results are paginated, the number of records per page being customisable. There are two databases, one for Matrimonial, the other for Classified Advertisements. The site also has Reciprocal Links Exchange Directory
Tags:
17

Generate Online in minutes Custom PhpMySQL Database Scripts


script PHP Free
View Detail
Download Generate Online in minutes Custom PhpMySQL Database ScriptsDownload Generate Online in minutes Custom PhpMySQL Database Scripts
You can generate database scripts to your own custom design of your database in PhpMySQL CGI-Perl and ASP Access with Add, Search, Edit and Delete functions. A user can edit and delete his own record only, protection being provided by user-selected password. Search results are paginated, the number of records per page being customisable. There are two databases, one for Matrimonial, the other for Classified Advertisements. The site also has Reciprocal Links Exchange Directory
Tags:
18

Generate online custom CGI-Perl Database Scripts in minutes


script CGI Perl Free
View Detail
Download Generate online custom CGI-Perl Database Scripts in minutesDownload Generate online custom CGI-Perl Database Scripts in minutes
Generate CGI-Perl database scripts to your own custom design of your database, also in ASP Access and PhpMySQL, with Add, Search, Edit and Delete functions. A user can edit and delete his own record only, protection being provided by user-selected password. Search results are paginated, the number of records per page being customisable. There are two databases, one for Matrimonial, the other for Classified Advertisements. The site also has Reciprocal Links Exchange Directory
Tags:
19

Random guys names to generate male names, including arabic names and horse names 9.0


windows Network Internet->Other Free
View Detail
20

Generate random numbers software for excel, c++, asp, java, php and vb software applications! 9.0


windows Audio Multimedia->CD Burners Free
View Detail
Download Generate random numbers software for excel, c++, asp, java, php and vb software applications! 9.0Download Generate random numbers software for excel, c++, asp, java, php and vb software applications! 9.0
2001 kb
Generate random numbers for use in excel, c++, asp, java, php and vb. You can specify random numberranges, use the results in applications such as vb apps, or gaming apps for random terra forming,generate unique numbers, floating point numbers plus much more! Also genenerate a list of numbersbetween 0 and 1, normal distributions and more!
Tags:

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket