temporary file
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 337
Temporary Inbox 2.0.1
Temporary Inbox is a Firefox extension that generates random disposable email addresses. more>>
Temporary Inbox is a Firefox extension that generates random disposable email addresses. You can use these email addresses for registration in forums, adult sites or whereever.
The email addresses dont require registration. This is an easy way to avoid spam, because the spamer will never get your private email address .. only the temporaryinbox.com email address. And there the emails will be deleted after 6 hours.
Avoiding spam is sooo easy!
Here is a small instruction:
FIRST! There is no registration required!!
1. The situation: You want to signup at a website. You are at the registration form and you have to enter your private email address.
2. You dont want to give away your private email address. So you decide to use an email address from temporaryinbox.com.
3. Now click the "random email" button at the temporaryinbox firefox extension toolbar.
4. A random temporary email address has been generated for you.
5. Copy it from the toolbar to the email address field in the registration form.
6. Enter the other things and submit.
7. Now you can check the inbox of your email address on temporaryinbox.com. But its easier to use the firefox extension. Just enter the email account name you used before in the left field of the toolbar and press "Check".
8. Now you will be redirected directly to the inbox of your temporaryinbox account.
9. Open the email and click on the activation link or copy the password... or whatever.
10. Delete the mail or let it be. However the mail will be deleted after 6 hours.
<<lessThe email addresses dont require registration. This is an easy way to avoid spam, because the spamer will never get your private email address .. only the temporaryinbox.com email address. And there the emails will be deleted after 6 hours.
Avoiding spam is sooo easy!
Here is a small instruction:
FIRST! There is no registration required!!
1. The situation: You want to signup at a website. You are at the registration form and you have to enter your private email address.
2. You dont want to give away your private email address. So you decide to use an email address from temporaryinbox.com.
3. Now click the "random email" button at the temporaryinbox firefox extension toolbar.
4. A random temporary email address has been generated for you.
5. Copy it from the toolbar to the email address field in the registration form.
6. Enter the other things and submit.
7. Now you can check the inbox of your email address on temporaryinbox.com. But its easier to use the firefox extension. Just enter the email account name you used before in the left field of the toolbar and press "Check".
8. Now you will be redirected directly to the inbox of your temporaryinbox account.
9. Open the email and click on the activation link or copy the password... or whatever.
10. Delete the mail or let it be. However the mail will be deleted after 6 hours.
Download (0.015MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
827 downloads
Disposable Temporary E-mail 1.1.0
Disposable Temporary E-mail project provides the user with disposable e-mail addresses which expire after a certain time. more>>
Disposable Temporary E-mail project provides the user with disposable e-mail addresses which expire after a certain time. The user can read and reply to e-mails that are sent to the temporary e-mail address within the given time frame.
Main features:
- Users can generate e-mail addresses
- Users can see their incoming e-mails
- Users can reply to e-mails
- Completely template driven
- Installation routine
How the script works:
With a click on a button the user generates a new e-mail address. That address will be stored in the database along with its creation time. The e-mail address is assigned to the user by a session cookie.
The user then uses the e-mail for any purpose where an e-mail address is required. Most commonly that will be some kind of registration.
In the background the script checks continuously for arriving e-mails. Once an e-mail that has been sent to a generated e-mail address arrives, the script displays it.
<<lessMain features:
- Users can generate e-mail addresses
- Users can see their incoming e-mails
- Users can reply to e-mails
- Completely template driven
- Installation routine
How the script works:
With a click on a button the user generates a new e-mail address. That address will be stored in the database along with its creation time. The e-mail address is assigned to the user by a session cookie.
The user then uses the e-mail for any purpose where an e-mail address is required. Most commonly that will be some kind of registration.
In the background the script checks continuously for arriving e-mails. Once an e-mail that has been sent to a generated e-mail address arrives, the script displays it.
Download (MB)
Added: 2007-05-16 License: Free for non-commercial use Price:
903 downloads
Temperature.app 1.4
Temperature.app is a Window Maker applet which fetches local temperature information every 15 minutes. more>>
Temperature.app is a Window Maker applet which fetches local temperature information every 15 minutes from http://weather.noaa.gov and displays it (in Celsius or Fahrenheit).
Temperature.app program is licensed through the GNU General Public License.
Enhancements:
- Now fetching temperature information over http (instead of ftp).
- Fixed possible race condition when creating temporary files.
<<lessTemperature.app program is licensed through the GNU General Public License.
Enhancements:
- Now fetching temperature information over http (instead of ftp).
- Fixed possible race condition when creating temporary files.
Download (0.016MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1130 downloads
perlfilter 5.8.8
perlfilter package contains Perl source filters. more>>
perlfilter package contains Perl source filters.
This article is about a little-known feature of Perl called source filters. Source filters alter the program text of a module before Perl sees it, much as a C preprocessor alters the source text of a C program before the compiler sees it. This article tells you more about what source filters are, how they work, and how to write your own.
The original purpose of source filters was to let you encrypt your program source to prevent casual piracy. This isnt all they can do, as youll soon learn. But first, the basics.
CONCEPTS
Before the Perl interpreter can execute a Perl script, it must first read it from a file into memory for parsing and compilation. If that script itself includes other scripts with a use or require statement, then each of those scripts will have to be read from their respective files as well.
Now think of each logical connection between the Perl parser and an individual file as a source stream. A source stream is created when the Perl parser opens a file, it continues to exist as the source code is read into memory, and it is destroyed when Perl is finished parsing the file. If the parser encounters a require or use statement in a source stream, a new and distinct stream is created just for that file.
The diagram below represents a single source stream, with the flow of source from a Perl script file on the left into the Perl parser on the right. This is how Perl normally operates.
file -------> parser
There are two important points to remember:
Although there can be any number of source streams in existence at any given time, only one will be active.
Every source stream is associated with only one file.
A source filter is a special kind of Perl module that intercepts and modifies a source stream before it reaches the parser. A source filter changes our diagram like this:
file ----> filter ----> parser
If that doesnt make much sense, consider the analogy of a command pipeline. Say you have a shell script stored in the compressed file trial.gz. The simple pipeline command below runs the script without needing to create a temporary file to hold the uncompressed file.
gunzip -c trial.gz | sh
In this case, the data flow from the pipeline can be represented as follows:
trial.gz ----> gunzip ----> sh
With source filters, you can store the text of your script compressed and use a source filter to uncompress it for Perls parser:
compressed gunzip
Perl program ---> source filter ---> parser
<<lessThis article is about a little-known feature of Perl called source filters. Source filters alter the program text of a module before Perl sees it, much as a C preprocessor alters the source text of a C program before the compiler sees it. This article tells you more about what source filters are, how they work, and how to write your own.
The original purpose of source filters was to let you encrypt your program source to prevent casual piracy. This isnt all they can do, as youll soon learn. But first, the basics.
CONCEPTS
Before the Perl interpreter can execute a Perl script, it must first read it from a file into memory for parsing and compilation. If that script itself includes other scripts with a use or require statement, then each of those scripts will have to be read from their respective files as well.
Now think of each logical connection between the Perl parser and an individual file as a source stream. A source stream is created when the Perl parser opens a file, it continues to exist as the source code is read into memory, and it is destroyed when Perl is finished parsing the file. If the parser encounters a require or use statement in a source stream, a new and distinct stream is created just for that file.
The diagram below represents a single source stream, with the flow of source from a Perl script file on the left into the Perl parser on the right. This is how Perl normally operates.
file -------> parser
There are two important points to remember:
Although there can be any number of source streams in existence at any given time, only one will be active.
Every source stream is associated with only one file.
A source filter is a special kind of Perl module that intercepts and modifies a source stream before it reaches the parser. A source filter changes our diagram like this:
file ----> filter ----> parser
If that doesnt make much sense, consider the analogy of a command pipeline. Say you have a shell script stored in the compressed file trial.gz. The simple pipeline command below runs the script without needing to create a temporary file to hold the uncompressed file.
gunzip -c trial.gz | sh
In this case, the data flow from the pipeline can be represented as follows:
trial.gz ----> gunzip ----> sh
With source filters, you can store the text of your script compressed and use a source filter to uncompress it for Perls parser:
compressed gunzip
Perl program ---> source filter ---> parser
Download (12.2MB)
Added: 2007-05-29 License: Perl Artistic License Price:
879 downloads
gmp3sort 0.3
gmp3sort is used to reorder files on usb mp3 sticks with fat16 filesystem. more>>
gmp3sort is used to reorder files on usb mp3 sticks with fat16 filesystem.
Some mp3 usb sticks have no support for playlists or shuffle.
Since they use fat16, files are ordered by creation date, which results in no or little control over the playlist.
gmp3sort renames files, moves them to a temporary directory and moves them back, thus creating the desired file order.
Main features:
- glade xml
- double click on textview row
- copynpaste textview rows
- dragndrop textview rows
- textview multiple selection
- textview context menu
- textview selection, iteration
- textview column sort, return to unsorted mode
- dragndrop from nautilus
- GnomeVFS URI parsing
- FileChooserDialogs?
- GtkFilter? for FileChooserDialog?
- Statusbar
<<lessSome mp3 usb sticks have no support for playlists or shuffle.
Since they use fat16, files are ordered by creation date, which results in no or little control over the playlist.
gmp3sort renames files, moves them to a temporary directory and moves them back, thus creating the desired file order.
Main features:
- glade xml
- double click on textview row
- copynpaste textview rows
- dragndrop textview rows
- textview multiple selection
- textview context menu
- textview selection, iteration
- textview column sort, return to unsorted mode
- dragndrop from nautilus
- GnomeVFS URI parsing
- FileChooserDialogs?
- GtkFilter? for FileChooserDialog?
- Statusbar
Download (0.016MB)
Added: 2005-07-19 License: GPL (GNU General Public License) Price:
1557 downloads
Tmpf 1.0
Tmpf is tiny script (written in Ruby) to write standard output to a temporary file. more>>
Tmpf is tiny script (written in Ruby) to write standard output to a temporary file, run an application with the name of that file as an argument, then delete the temporary file when done.
The project is useful when you want to pipe output to a program that only accepts files, not standard input. Example: cat myfile.ps | tmpf gv (equivalent to: gv myfile.ps). Despite the incredible simplicity of this script, there is nothing quite like it provided among the standard Unix tools.
<<lessThe project is useful when you want to pipe output to a program that only accepts files, not standard input. Example: cat myfile.ps | tmpf gv (equivalent to: gv myfile.ps). Despite the incredible simplicity of this script, there is nothing quite like it provided among the standard Unix tools.
Download (0.001MB)
Added: 2007-05-07 License: Public Domain Price:
900 downloads
Better Weather
Better Weather contains a couple of scripts using normal KDE and Linux tools to provide better display of weather info. more>>
Better Weather contains a couple of scripts using normal KDE and Linux tools to provide better display of weather info than KDEs weather applet. It downloads the information from the US national weather service and maps from weather.com. Two launchers on the main menubar bring up the window separately. Full details and instructions are in the readme.
This is a solution that worked for me, not being a coder. You have to make it work for you. Its an idea and a set of tools. Its also US-centric, but someone may take the idea and make it work just as well anywhere. I hope someone finds it as useful as I do.
WHAT IT DOES
The tools I wrote are two *very* simple bash scripts. The script, localwx.sh, invokes the python weather utility, and downloads the current weather conditions and forecast in text format from the weather service. It stores the information temporarily in a text file (I chose the desktop as the directory in which to save it.) It then "reads" the text file into a kdialog box. When the "ok" button is clicked, the temporary file is deleted.
The other script, wxmap.sh, downloads a current local weather map image using wget, saves it temporarily to the desktop, and calls Kview to display it. When Kview closes, the temporary image file is deleted.
HOW I DID IT
The man pages for "weather," "kdialog," and "wget" were useful for determining which options to use. The script for weather forecasts has to be edited to receive the data for the users current location. My nearest airport is PDK, so my ID was "KPDK." The rest is straightforward enough. To make the weather map script work, you can go to weather.com or your local tv station website and copy the image location for the weather map they use. It can be pasted into the script.
Once the scripts were edited to suit, I made them executable (chmod +x filename), copied them to /usr/local/bin, and created a launcher for each in my main menubar. Describing the process is a lot more difficult than actually doing the work!
<<lessThis is a solution that worked for me, not being a coder. You have to make it work for you. Its an idea and a set of tools. Its also US-centric, but someone may take the idea and make it work just as well anywhere. I hope someone finds it as useful as I do.
WHAT IT DOES
The tools I wrote are two *very* simple bash scripts. The script, localwx.sh, invokes the python weather utility, and downloads the current weather conditions and forecast in text format from the weather service. It stores the information temporarily in a text file (I chose the desktop as the directory in which to save it.) It then "reads" the text file into a kdialog box. When the "ok" button is clicked, the temporary file is deleted.
The other script, wxmap.sh, downloads a current local weather map image using wget, saves it temporarily to the desktop, and calls Kview to display it. When Kview closes, the temporary image file is deleted.
HOW I DID IT
The man pages for "weather," "kdialog," and "wget" were useful for determining which options to use. The script for weather forecasts has to be edited to receive the data for the users current location. My nearest airport is PDK, so my ID was "KPDK." The rest is straightforward enough. To make the weather map script work, you can go to weather.com or your local tv station website and copy the image location for the weather map they use. It can be pasted into the script.
Once the scripts were edited to suit, I made them executable (chmod +x filename), copied them to /usr/local/bin, and created a launcher for each in my main menubar. Describing the process is a lot more difficult than actually doing the work!
Download (0.67MB)
Added: 2007-07-19 License: GPL (GNU General Public License) Price:
838 downloads
Sendmail filter for ClamAV 1.2.1
Sendmail filter for ClamAV aims to be lightweight, reliable and simple. more>>
smf-clamd is a Sendmail milter for the ClamAV (Clam AntiVirus).
Sendmail filter for ClamAV aims to be lightweight, reliable and simple. Sendmail filter for ClamAV is written in C.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It rejects infected messages at the SMTP DATA stage;
- It can add an information header with scan results to scanned messages;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- A workaround for the Sendmail socket unsafe error on some platforms was implemented.
- Clean email messages logging was removed.
- Configuration file, default user, and working directory were changed.
- The format of log records was changed.
- Some samples of start-up scripts were added.
- The new TODO tasks were added.
- Cosmetic enhancements were made.
<<lessSendmail filter for ClamAV aims to be lightweight, reliable and simple. Sendmail filter for ClamAV is written in C.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It rejects infected messages at the SMTP DATA stage;
- It can add an information header with scan results to scanned messages;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- A workaround for the Sendmail socket unsafe error on some platforms was implemented.
- Clean email messages logging was removed.
- Configuration file, default user, and working directory were changed.
- The format of log records was changed.
- Some samples of start-up scripts were added.
- The new TODO tasks were added.
- Cosmetic enhancements were made.
Download (0.023MB)
Added: 2006-06-08 License: GPL (GNU General Public License) Price:
1235 downloads
Test::TempDatabase 0.1
Test::TempDatabase is a Perl module for temporary database creation and destruction. more>>
Test::TempDatabase is a Perl module for temporary database creation and destruction.
SYNOPSIS
use Test::TempDatabase;
my $td = Test::TempDatabase->create(dbname => temp_db);
my $dbh = $td->handle;
... some tests ...
# Test::TempDatabase drops database
This module automates creation and dropping of test databases.
USAGE
Create test database using Test::TempDatabase->create. Use handle to get a handle to the database. Database will be automagically dropped when Test::TempDatabase instance goes out of scope.
$class->become_postgres_user
When running as root, this function becomes different user. It decides on the user name by probing TEST_TEMP_DB_USER, SUDO_USER environment variables. If these variables are empty, default "postgres" user is used.
create
Creates temporary database. It will be dropped when the resulting instance will go out of scope.
Arguments are passed in as a keyword-value pairs. Available keywords are:
dbname: the name of the temporary database.
rest: the rest of the database connection string. It can be used to connect to a different host, etc.
username, password: self-explanatory.
<<lessSYNOPSIS
use Test::TempDatabase;
my $td = Test::TempDatabase->create(dbname => temp_db);
my $dbh = $td->handle;
... some tests ...
# Test::TempDatabase drops database
This module automates creation and dropping of test databases.
USAGE
Create test database using Test::TempDatabase->create. Use handle to get a handle to the database. Database will be automagically dropped when Test::TempDatabase instance goes out of scope.
$class->become_postgres_user
When running as root, this function becomes different user. It decides on the user name by probing TEST_TEMP_DB_USER, SUDO_USER environment variables. If these variables are empty, default "postgres" user is used.
create
Creates temporary database. It will be dropped when the resulting instance will go out of scope.
Arguments are passed in as a keyword-value pairs. Available keywords are:
dbname: the name of the temporary database.
rest: the rest of the database connection string. It can be used to connect to a different host, etc.
username, password: self-explanatory.
Download (0.011MB)
Added: 2007-05-08 License: Perl Artistic License Price:
899 downloads
check_writable 1.0
check_writable is a Nagios plugin that checks if one or more directories are writable. more>>
check_writable is a Nagios plugin that checks if one or more directories are writable by checking that the supplied directory is indeed a directory, checking if the the filesystem permissions are OK, creating a temporary file, writing random data to the temporary file, and reading it back.
It returns a critical status if one of the tests fails.
<<lessIt returns a critical status if one of the tests fails.
Download (0.012MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
EasyPG 0.0.2
EasyPG is yet another GnuPG interface for Emacs. more>>
EasyPG is yet another GnuPG interface for Emacs. EasyPG package consists of two parts:
- The EasyPG Assistant - A GUI frontend of GnuPG
- The EasyPG Library - A library to interact with GnuPG
Main features:
The EasyPG Assistant provides the following features:
- Cryptographic operations are usable from dired mode.
- Keyring management interface.
- Transparent encryption/decryption of *.gpg files.
The EasyPG Library provides the following features:
- The API covers most functions of GnuPG.
- Designed to avoid potential security pitfalls around Emacs.
Passphrase may leak to a temporary file
The function call-process-region writes data in region to a temporary file. If your PGP library used this function, your passphrases would leak to the filesystem.
The EasyPG Library does not use call-process-region to communicate with a gpg subprocess.
Passphrase may be stolen from a core file
If Emacs crashes and dumps core, Lisp strings in memory are also dumped within the core file. read-passwd function clears passphrase strings by (fillarray string 0) to avoid this risk. However, Emacs performs compaction in gc_sweep phase. If GC happens before fillarray, passphrase strings may be moved elsewhere in memory. Therefore, passphrase caching in elisp is generally a bad idea.
The EasyPG Library dares to disable passphrase caching. Fortunately, there is more secure way to cache passphrases - use gpg-agent.
<<less- The EasyPG Assistant - A GUI frontend of GnuPG
- The EasyPG Library - A library to interact with GnuPG
Main features:
The EasyPG Assistant provides the following features:
- Cryptographic operations are usable from dired mode.
- Keyring management interface.
- Transparent encryption/decryption of *.gpg files.
The EasyPG Library provides the following features:
- The API covers most functions of GnuPG.
- Designed to avoid potential security pitfalls around Emacs.
Passphrase may leak to a temporary file
The function call-process-region writes data in region to a temporary file. If your PGP library used this function, your passphrases would leak to the filesystem.
The EasyPG Library does not use call-process-region to communicate with a gpg subprocess.
Passphrase may be stolen from a core file
If Emacs crashes and dumps core, Lisp strings in memory are also dumped within the core file. read-passwd function clears passphrase strings by (fillarray string 0) to avoid this risk. However, Emacs performs compaction in gc_sweep phase. If GC happens before fillarray, passphrase strings may be moved elsewhere in memory. Therefore, passphrase caching in elisp is generally a bad idea.
The EasyPG Library dares to disable passphrase caching. Fortunately, there is more secure way to cache passphrases - use gpg-agent.
Download (0.080MB)
Added: 2006-05-30 License: GPL (GNU General Public License) Price:
1243 downloads
Spamavert.com 1.0.0 for Firefox
Spamavert.com provides an extension which allows you to easily register on this website. more>>
Spamavert.com provides an extension which allows you to easily register on this website.
Generates temporary e-mail addresses for all those pesky online registration forms using the free spamavert.com service.
Highly customizable and easy to use.
<<lessGenerates temporary e-mail addresses for all those pesky online registration forms using the free spamavert.com service.
Highly customizable and easy to use.
Download (0.010MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
829 downloads
Matrix GL Screensaver 2.2.2
Matrix GL Screensaver is a 3D screensaver based on more>>
Matrix GL Screensaver 2.2.2 is a free yet cool three-dimensional screensaver based on "The Matrix Reloaded. For running it you need a graphics card with an OpenGL support. Source code is available under the GNU GPL.
Installation:
- Unpack the tar.gz file and place files in temporary directory
- Run the console with root privilegies and run matrix_gl with "install" option: ./matrix_gl -install
- In "Control Centre" choose "Look and feel"->"Screensaver" and set the Matrix GL
- Matrix GL requires freely distributable library Glut.
Added: 2009-07-07 License: GPL Price: FREE
13 downloads
Other version of Matrix GL Screensaver
License:GPL (GNU General Public License)
Sendmail filter for SpamAssassin 1.3.1
smf-spamd is a Sendmail filter for SpamAssassin. more>>
smf-spamd is a Sendmail filter for SpamAssassin. Sendmail filter for SpamAssassin aims to be lightweight, reliable, and simple rather than have a myriad of options.
It only scans the messages less than defined size, has a hosts/networks whitelist, performs subject tagging if SPAM is detected, adds an information header, copies SPAM messages to the defined "garbage" mailbox, rejects SPAM messages at the SMTP DATA stage, and logs all filter activities to syslog.
The code is small (does not exceed 580 lines), fast, stable, and few resources are required. No temporary files are created.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It can tag the Subject if SPAM has been detected;
- It can add an information header with scan results to scanned messages;
- It can copy SPAM messages to the special "garbage" mailbox;
- It rejects SPAM messages at the SMTP DATA stage, if SPAM score is greater than a defined value;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- Incorrect handling of missed Message-Id: header was fixed.
- Cosmetic enhancements were made.
<<lessIt only scans the messages less than defined size, has a hosts/networks whitelist, performs subject tagging if SPAM is detected, adds an information header, copies SPAM messages to the defined "garbage" mailbox, rejects SPAM messages at the SMTP DATA stage, and logs all filter activities to syslog.
The code is small (does not exceed 580 lines), fast, stable, and few resources are required. No temporary files are created.
Main features:
- It has a hosts/networks whitelist;
- It can scan messages less than a defined size only;
- It can tag the Subject if SPAM has been detected;
- It can add an information header with scan results to scanned messages;
- It can copy SPAM messages to the special "garbage" mailbox;
- It rejects SPAM messages at the SMTP DATA stage, if SPAM score is greater than a defined value;
- It can log all milter activities through the syslog service.
Advantages:
- Small code;
- Fast work;
- Stability (production quality);
- Few system resources are required;
- No temporary files are created.
Enhancements:
- Incorrect handling of missed Message-Id: header was fixed.
- Cosmetic enhancements were made.
Download (0.025MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
QOF Generator 0.0.2
QOF Generator is a project that generates C object source code from HTML/PHP or Perl/XML. more>>
QOF Generator is a project that generates C object source code from HTML/PHP or Perl/XML.
Generating new objects for the Query Object Framework is repetitive, tedious, and time consuming.
Qof Generator automates this process in PHP to build a working test program linked against QOF.
Objects are created from an HTML form using a temporary MySQL cache and exported with Makefile, ./autogen.sh, ChangeLog, README, C source code, and doxygen mark-up comments in a tarball built by the PHP code.
<<lessGenerating new objects for the Query Object Framework is repetitive, tedious, and time consuming.
Qof Generator automates this process in PHP to build a working test program linked against QOF.
Objects are created from an HTML form using a temporary MySQL cache and exported with Makefile, ./autogen.sh, ChangeLog, README, C source code, and doxygen mark-up comments in a tarball built by the PHP code.
Download (0.017MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
983 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above temporary file search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed