helper
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 196
dhcp-helper 0.6
dhcp-helper is a simple, straightforward DHCP relay agent which I wrote as alternative to the ISC relay. more>>
dhcp-helper is a simple, straightforward DHCP relay agent which I wrote as alternative to the ISC relay.
Its Linux only, but doesnt require any kernel support other than
the network stack. (No LPF or packet sockets.)
If you use this software, please let me know; I would like some idea if it is generally useful to others.
Enhancements:
- This release add a workaround for a bug in some Linux kernels which have "Classical IP over ATM" enabled.
<<lessIts Linux only, but doesnt require any kernel support other than
the network stack. (No LPF or packet sockets.)
If you use this software, please let me know; I would like some idea if it is generally useful to others.
Enhancements:
- This release add a workaround for a bug in some Linux kernels which have "Classical IP over ATM" enabled.
Download (0.013MB)
Added: 2006-05-06 License: GPL (GNU General Public License) Price:
1272 downloads
pt-helper 0.1.1
pt-helper is a program designed to help people perform physical therapy exercises. more>>
pt-helper 0.1.1 with its excellent features will surely help you in daily life. It is actually a program designed to help you perform physical therapy exercises. It reads in exercise information from a file, and then it uses this information to generate a random physical therapy routine. The program can either:
- Read the names of the exercises to you as you perform them
- Generate the routine as text (which you can copy into a file and print out)
When combined with a wireless mouse or other input device, pt-helper becomes a powerful tool for conducting a physical therapy routine.
Installation Instructions:
- pt-helper is written in Python, so you'll need a Python interpreter to get anything working. It also depends on several Python modules;
- If you do have all the dependencies, you should be able to run the program just by running the pt-helper script with a Python interpreter. From a shell, the following command should do the trick: $ python pt-helper.py
- Users of graphical file managers can probably double-click the pt-helper script to achieve the same effect.
Requirements:
- Python
- PyGame
- Festival Speech Synthesis System
Added: 2007-05-01 License: GPL Price: FREE
1 downloads
Xdebug Helper 0.1
Xdebug Helper is a tool to start/stop debug with PHPs Xdebug extension. more>>
Xdebug Helper is a tool to start/stop debug with PHPs Xdebug extension.
The Xdebug extension helps you debugging your script by providing a lot of valuable debug information. The debug information that Xdebug can provide includes the following:
- stack and function traces in error messages with:
- full parameter display for user defined functions
- function name, file name and line indications
- support for member functions
- memory allocation
- protection for infinite recursions
Xdebug also provides:
- profiling information for PHP scripts
- script execution analysis
- capabilities to debug your scripts interactively with a debug client
<<lessThe Xdebug extension helps you debugging your script by providing a lot of valuable debug information. The debug information that Xdebug can provide includes the following:
- stack and function traces in error messages with:
- full parameter display for user defined functions
- function name, file name and line indications
- support for member functions
- memory allocation
- protection for infinite recursions
Xdebug also provides:
- profiling information for PHP scripts
- script execution analysis
- capabilities to debug your scripts interactively with a debug client
Download (0.009MB)
Added: 2007-06-19 License: MPL (Mozilla Public License) Price:
863 downloads
Gtk2::Helper 1.122
Gtk2::Helper is a Perl module for convenience functions for the Gtk2 module. more>>
Gtk2::Helper is a Perl module for convenience functions for the Gtk2 module.
SYNOPSIS
use Gtk2::Helper;
# Handle I/O watchers easily, like Gtk 1.x did
$tag = Gtk2::Helper->add_watch ( $fd, $cond, $callback, $data )
$rc = Gtk2::Helper->remove_watch ( $tag )
ABSTRACT
This module collects Gtk2 helper functions, which should make implementing some common tasks easier.
Gtk2::Helper->add_watch ( ... )
$tag = Gtk2::Helper->add_watch ( $fd, $cond, $callback, $data )
This method is a wrapper for Glib::IO->add_watch. The callback is called every time when its safe to read from or write to the watched filehandle.
$fd
Unix file descriptor to be watched. If you use the FileHandle module you get this value from the FileHandle->fileno() method.
$cond
May be either in or out, depending if you want to read from the filehandle (in) or write to it (out).
$callback
A subroutine reference or closure, which is called, if you can safely operate on the filehandle, without the risk of blocking your application, because the filehandle is not ready for reading resp. writing.
But aware: you should not use Perls builtin read and write functions here because these operate always with buffered I/O. Use low level sysread() and syswrite() instead. Otherwise Perl may read more data into its internal buffer as your callback actually consumes. But Glib wont call the callback on data which is already in Perls buffer, only when events on the the underlying Unix file descriptor occur.
The callback subroutine should return always true. Two signal watchers are connected internally (the I/O watcher, and a HUP watcher, which is called on eof() or other exceptions). Returning false from a watcher callback, removes the correspondent watcher automatically. Because we have two watchers internally, only one of them is removed, but probably not both. So always return true and use Gtk2::Helper->remove_watch to disable a watcher, which was installed with Gtk2::Helper->add_watch.
(Gtk2::Helper could circumvent this by wrapping your callback with a closure returning always true. But why adding another level of indirection if writing a simple "1;" at the end of your callback solves this problem? ;)
$data
This data is passed to the callback.
$tag
The method returns a tag which represents the created watcher. Later you need to pass this tag to Gtk2::Helper->remove_watch to remove the watcher.
<<lessSYNOPSIS
use Gtk2::Helper;
# Handle I/O watchers easily, like Gtk 1.x did
$tag = Gtk2::Helper->add_watch ( $fd, $cond, $callback, $data )
$rc = Gtk2::Helper->remove_watch ( $tag )
ABSTRACT
This module collects Gtk2 helper functions, which should make implementing some common tasks easier.
Gtk2::Helper->add_watch ( ... )
$tag = Gtk2::Helper->add_watch ( $fd, $cond, $callback, $data )
This method is a wrapper for Glib::IO->add_watch. The callback is called every time when its safe to read from or write to the watched filehandle.
$fd
Unix file descriptor to be watched. If you use the FileHandle module you get this value from the FileHandle->fileno() method.
$cond
May be either in or out, depending if you want to read from the filehandle (in) or write to it (out).
$callback
A subroutine reference or closure, which is called, if you can safely operate on the filehandle, without the risk of blocking your application, because the filehandle is not ready for reading resp. writing.
But aware: you should not use Perls builtin read and write functions here because these operate always with buffered I/O. Use low level sysread() and syswrite() instead. Otherwise Perl may read more data into its internal buffer as your callback actually consumes. But Glib wont call the callback on data which is already in Perls buffer, only when events on the the underlying Unix file descriptor occur.
The callback subroutine should return always true. Two signal watchers are connected internally (the I/O watcher, and a HUP watcher, which is called on eof() or other exceptions). Returning false from a watcher callback, removes the correspondent watcher automatically. Because we have two watchers internally, only one of them is removed, but probably not both. So always return true and use Gtk2::Helper->remove_watch to disable a watcher, which was installed with Gtk2::Helper->add_watch.
(Gtk2::Helper could circumvent this by wrapping your callback with a closure returning always true. But why adding another level of indirection if writing a simple "1;" at the end of your callback solves this problem? ;)
$data
This data is passed to the callback.
$tag
The method returns a tag which represents the created watcher. Later you need to pass this tag to Gtk2::Helper->remove_watch to remove the watcher.
Download (0.60MB)
Added: 2006-07-18 License: Perl Artistic License Price:
1193 downloads
AA Helper Library 0.1
AA Helper Library is a basic library of helper functions for AAlib. more>>
AA Helper Library is a basic library of helper functions for AAlib.
Inspiration that started this is AAJM, when I implemented circles and lines. More or less on a whim, I turned it into a more convincing project.
Yes, Im fully aware of the existence of libcaca. A few things:
1. Libcacas picture definition isnt as good as aalibs - as the designer of libcaca stated, its designed to make colors work right on ascii displays, rather than necessarily the shapes. For a simple example of this, run cacafire next to aafire on a screen at the same time
2. AA Helper addresses most of libcacas other good points - sprites and graphics primitives, primarily
3. If youre at the point where you feel the urge to even start this argument, youve got bigger issues than whether or not a text-mode library is as good as another
<<lessInspiration that started this is AAJM, when I implemented circles and lines. More or less on a whim, I turned it into a more convincing project.
Yes, Im fully aware of the existence of libcaca. A few things:
1. Libcacas picture definition isnt as good as aalibs - as the designer of libcaca stated, its designed to make colors work right on ascii displays, rather than necessarily the shapes. For a simple example of this, run cacafire next to aafire on a screen at the same time
2. AA Helper addresses most of libcacas other good points - sprites and graphics primitives, primarily
3. If youre at the point where you feel the urge to even start this argument, youve got bigger issues than whether or not a text-mode library is as good as another
Download (0.018MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1473 downloads
squid-nufw-helper 1.0.0
squid-nufw-helper is the authentication Single Sign On module for Squid, working with a NuFW firewall. more>>
squid-nufw-helper is the authentication Single Sign On module for Squid, working with a NuFW firewall. The project allows for transparent authentication of users on a Squid proxy, even if the proxy is a "transparent" one.
Enhancements:
- This release adds an "-a" switch to pass the clients source port to htons() at will (this is required by some versions of squid, but not all).
- This release is marked as stable, as it has been extensively tested.
<<lessEnhancements:
- This release adds an "-a" switch to pass the clients source port to htons() at will (this is required by some versions of squid, but not all).
- This release is marked as stable, as it has been extensively tested.
Download (0.071MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
863 downloads
GNU Hosting Helper 2.03
GNU Hosting Helper is a Web-based Web hosting management system that provides an administration system. more>>
GNU Hosting Helper is a web hosting management package. It is distributed under the GNU GPL (General Public License) Agreement.
This package provides tools to manage many of the aspects of a hosting environment.
GNU Hosting Helper also provides a client utility to reduce the need for staff to perform tasks that a client needs such as managing email accounts.
Main features:
Administrative Features
The features provided through the administrative interface include (but not limited to):
- Server Tasks
- Security Management
- Server Monitor
- Ticket Center
- News Management
- Knowledge Base
- Fraudscreen
- Domain Management
- User Management
- Billing/Accounting
- Account Information Tools
- Miscellaneous Functions
- Package Management
- Manage Hosting Servers
- Manage Client Interfaces
- Manage Mail Servers
- Manage Name Servers
- Manage Signup Servers
- Manage Server Pools
- Manage Administrators
- Manage Admin Daemon
- System Config
Client Features
The features provided thru the client interface include (but not limited to):
- Account Quickview
- Account Resources
- System Information
- Email Functions
- Virtual FTP Management
- Sub Domain Management
- SSL Certificate Management
- Website Management
- Front Page Extensions Management
- Stats and Logs access
- Account Management
- Account Billing
System/Network Support
GNU Hosting Helper currently supports management for the following software:
- Apache 1.3x and 2x
- Sendmail and Postfix
- Most major FPTD software
- BIND 8x and BIND 9x
- MySQL 3x and 4.0.x
Enhancements:
- Fixes an error with MyDNS where straight domains wouldnt resolve.
- Fixes an error with some systems rnd file creation for creating SSL CSR.
- Fixes an error representing bandwidth allotment, usage, and remaining.
- Fixes an error in the init.d file for the admin server daemon.
- Fixes an error with encryption when editing Webmail, signup, mail, and hosting servers.
- Adds SSH port specification and SSH daemon management to all managed servers.
<<lessThis package provides tools to manage many of the aspects of a hosting environment.
GNU Hosting Helper also provides a client utility to reduce the need for staff to perform tasks that a client needs such as managing email accounts.
Main features:
Administrative Features
The features provided through the administrative interface include (but not limited to):
- Server Tasks
- Security Management
- Server Monitor
- Ticket Center
- News Management
- Knowledge Base
- Fraudscreen
- Domain Management
- User Management
- Billing/Accounting
- Account Information Tools
- Miscellaneous Functions
- Package Management
- Manage Hosting Servers
- Manage Client Interfaces
- Manage Mail Servers
- Manage Name Servers
- Manage Signup Servers
- Manage Server Pools
- Manage Administrators
- Manage Admin Daemon
- System Config
Client Features
The features provided thru the client interface include (but not limited to):
- Account Quickview
- Account Resources
- System Information
- Email Functions
- Virtual FTP Management
- Sub Domain Management
- SSL Certificate Management
- Website Management
- Front Page Extensions Management
- Stats and Logs access
- Account Management
- Account Billing
System/Network Support
GNU Hosting Helper currently supports management for the following software:
- Apache 1.3x and 2x
- Sendmail and Postfix
- Most major FPTD software
- BIND 8x and BIND 9x
- MySQL 3x and 4.0.x
Enhancements:
- Fixes an error with MyDNS where straight domains wouldnt resolve.
- Fixes an error with some systems rnd file creation for creating SSL CSR.
- Fixes an error representing bandwidth allotment, usage, and remaining.
- Fixes an error in the init.d file for the admin server daemon.
- Fixes an error with encryption when editing Webmail, signup, mail, and hosting servers.
- Adds SSH port specification and SSH daemon management to all managed servers.
Download (0.18MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
1286 downloads
Catalyst::Helper::Doc 0.04
Catalyst::Helper::Doc is a documentation page generator. more>>
Catalyst::Helper::Doc is a documentation page generator.
SYNOPSIS
# execute helper script.
script/myapp_create.pl Doc
# you can set description
# default is "Catalyst based application"
script/myapp_create.pl Doc "This is description!"
# you can set language type used as xml:lang. defualt is "en"
script/myapp_create.pl Doc "This is description!" ja
# you also can set charset, default is UTF-8
script/myapp_create.pl Doc "This is description!" ja EUC-JP
This module allows you to parse your libraries POD, and generate documentation like pages in search.cpan.org
Execute according to SYNOPSIS, and doc directory will be created, and documentation will be put into it.
<<lessSYNOPSIS
# execute helper script.
script/myapp_create.pl Doc
# you can set description
# default is "Catalyst based application"
script/myapp_create.pl Doc "This is description!"
# you can set language type used as xml:lang. defualt is "en"
script/myapp_create.pl Doc "This is description!" ja
# you also can set charset, default is UTF-8
script/myapp_create.pl Doc "This is description!" ja EUC-JP
This module allows you to parse your libraries POD, and generate documentation like pages in search.cpan.org
Execute according to SYNOPSIS, and doc directory will be created, and documentation will be put into it.
Download (0.002MB)
Added: 2007-03-09 License: Perl Artistic License Price:
959 downloads
Stage Managers Helper 0.4.4
SMHelper provides Web-based tools to speed up the process of keeping paperwork for each show. more>>
SMHelper provides Web-based tools to speed up the process of keeping paperwork for each show.
Stage Managers Helper is a set of PHP scripts to assist the Stage Managers of the world in keeping all the minutiae and paperwork which is associated with live entertainment under control. Rather than have to recreate the form for each show you use, or open a heavy application like a word processor, I find it much easier to just let the scripts generate the layout, and then fill in the blanks and click away. This should hopefully automate show management to some degree, and in so doing, ease the load on web Stage Managers servers.
Hopefully, by having the forms available via a web browser, the SM need only have a computer with access to the server and need not worry whether s/he remembered to pack their computer. In addition, since the data is stored on the server, the other members of a production team need only visit the website to see the days report, should they lose their paper copy or simply not desire more paper in their lives.
That said, I cant create this software alone. I need feedback. I want to know what you need or want from this software. If I can get it done in any sane way, Ill put it in the works. Currently planned:
Collation: Collect all data for one person/department into a single page,automatically,over a range of dates.
Currently included [and at least semi-working] in the package are pages for:
Generating Daily Reports
Viewing Daily Reports [Soon with print view]
Basic Show Info Setup
Props list generation and maintenance
Collation and summarization
French Scene Setup and Tables Generation
Enhancements:
- Added actual_sections.php. Script for setting up the breakdown of your show. *Fixed up french_scener.php to display entered data, at least rudimentarily. *Cosmetic fixes: Unified title blocks, interface consistency where possible
<<lessStage Managers Helper is a set of PHP scripts to assist the Stage Managers of the world in keeping all the minutiae and paperwork which is associated with live entertainment under control. Rather than have to recreate the form for each show you use, or open a heavy application like a word processor, I find it much easier to just let the scripts generate the layout, and then fill in the blanks and click away. This should hopefully automate show management to some degree, and in so doing, ease the load on web Stage Managers servers.
Hopefully, by having the forms available via a web browser, the SM need only have a computer with access to the server and need not worry whether s/he remembered to pack their computer. In addition, since the data is stored on the server, the other members of a production team need only visit the website to see the days report, should they lose their paper copy or simply not desire more paper in their lives.
That said, I cant create this software alone. I need feedback. I want to know what you need or want from this software. If I can get it done in any sane way, Ill put it in the works. Currently planned:
Collation: Collect all data for one person/department into a single page,automatically,over a range of dates.
Currently included [and at least semi-working] in the package are pages for:
Generating Daily Reports
Viewing Daily Reports [Soon with print view]
Basic Show Info Setup
Props list generation and maintenance
Collation and summarization
French Scene Setup and Tables Generation
Enhancements:
- Added actual_sections.php. Script for setting up the breakdown of your show. *Fixed up french_scener.php to display entered data, at least rudimentarily. *Cosmetic fixes: Unified title blocks, interface consistency where possible
Download (0.018MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1218 downloads
Automated Argument Helper 1.2.2
Aargh is a code generator, written in C++ and licensed under the terms of the GNU General Public License (GPL). more>>
Aargh is a code generator, written in C++ and licensed under the terms of the GNU General Public License (GPL). It generates C++ code to parse a command line, using the getopt() facility available in UNIX and UNIX-like environments.
Automated Argument Helper project supports command-line options with integer arguments, string arguments, and no arguments. The generated code is commented and carefully indented for readability.
Its nice to have lots of command line options, but its a real pain to code for them.
Not that its difficult. Its just tedious, time-consuming, error prone, and no fun. I used to wince at the thought of adding command line options.
Not any more. All I have to do is define the options I want in a small XML file, and run it through aargh. Instantly I have C++ source code that I can compile and link into my program.
If I need to add another option, or otherwise change the rules, I can edit the XML and regenerate the code. No muss, no fuss. Now I can spend more time on the interesting parts of the project.
To use aargh, write an XML file to describe the options you want. When aargh reads the file, it generates two C++ files.
One file is a header that declares a class to represent the options. By default this class is named "Opts," but you can specify a different name. The other file is the implementation of Opts, or whatever you decide to call it. The Opts class provides member functions to parse the command line and return the results.
In your own code, declare an instance of Opts and call Opts::get() to parse the command line, passing it the argc and argv arguments from main(). Opts::get() returns zero if the command line follows the rules that you have outlined in the XML file, or non-zero otherwise. If the parsing is successful, the Opts object stores the results and makes them available to your program by a series of accessor functions.
Main features:
- You can enforce upper and/or lower limits on the number of non-option arguments.
- You can distinguish between options that take arguments and those that dont.
- You can specify that an option is required.
- You can require that the argument to an option be a non-negative integer.
- For an integer argument you can enforce upper and/or lower limits.
- For a string argument you can enforce upper and/or lower limits on the string length.
- For a string argument you can call a function of your own to validate the argument.
- You can allow multiple occurrences of the same option. In that case the generated code builds an STL vector to hold the arguments. By default the generated software allows only one occurrence of any given option.
Enhancements:
- You can now specify the location of the generated header file independently of its name.
- This feature may make it easier to incorporate aargh into complex build environments.
<<lessAutomated Argument Helper project supports command-line options with integer arguments, string arguments, and no arguments. The generated code is commented and carefully indented for readability.
Its nice to have lots of command line options, but its a real pain to code for them.
Not that its difficult. Its just tedious, time-consuming, error prone, and no fun. I used to wince at the thought of adding command line options.
Not any more. All I have to do is define the options I want in a small XML file, and run it through aargh. Instantly I have C++ source code that I can compile and link into my program.
If I need to add another option, or otherwise change the rules, I can edit the XML and regenerate the code. No muss, no fuss. Now I can spend more time on the interesting parts of the project.
To use aargh, write an XML file to describe the options you want. When aargh reads the file, it generates two C++ files.
One file is a header that declares a class to represent the options. By default this class is named "Opts," but you can specify a different name. The other file is the implementation of Opts, or whatever you decide to call it. The Opts class provides member functions to parse the command line and return the results.
In your own code, declare an instance of Opts and call Opts::get() to parse the command line, passing it the argc and argv arguments from main(). Opts::get() returns zero if the command line follows the rules that you have outlined in the XML file, or non-zero otherwise. If the parsing is successful, the Opts object stores the results and makes them available to your program by a series of accessor functions.
Main features:
- You can enforce upper and/or lower limits on the number of non-option arguments.
- You can distinguish between options that take arguments and those that dont.
- You can specify that an option is required.
- You can require that the argument to an option be a non-negative integer.
- For an integer argument you can enforce upper and/or lower limits.
- For a string argument you can enforce upper and/or lower limits on the string length.
- For a string argument you can call a function of your own to validate the argument.
- You can allow multiple occurrences of the same option. In that case the generated code builds an STL vector to hold the arguments. By default the generated software allows only one occurrence of any given option.
Enhancements:
- You can now specify the location of the generated header file independently of its name.
- This feature may make it easier to incorporate aargh into complex build environments.
Download (0.16MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1288 downloads
Rose::DB::Object::Helpers 0.764
Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. more>>
Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object.
SYNOPSIS
package MyDBObject;
use Rose::DB::Object;
our @ISA = qw(Rose::DB::Object);
use Rose::DB::Object::Helpers clone,
{ load_or_insert => find_or_create };
...
$obj = MyDBObject->new(id => 123);
$obj->find_or_create();
$obj2 = $obj->clone;
Rose::DB::Object::Helpers provides convenience methods from use with Rose::DB::Object-derived classes. These methods do not exist in Rose::DB::Object in order to keep the method namespace clean. (Each method added to Rose::DB::Object is another potential naming conflict with a column accessor.)
This class inherits from Rose::DB::Object::MixIn. See the Rose::DB::Object::MixIn documentation for a full explanation of how to import methods from this class. The helper methods themselves are described below.
<<lessSYNOPSIS
package MyDBObject;
use Rose::DB::Object;
our @ISA = qw(Rose::DB::Object);
use Rose::DB::Object::Helpers clone,
{ load_or_insert => find_or_create };
...
$obj = MyDBObject->new(id => 123);
$obj->find_or_create();
$obj2 = $obj->clone;
Rose::DB::Object::Helpers provides convenience methods from use with Rose::DB::Object-derived classes. These methods do not exist in Rose::DB::Object in order to keep the method namespace clean. (Each method added to Rose::DB::Object is another potential naming conflict with a column accessor.)
This class inherits from Rose::DB::Object::MixIn. See the Rose::DB::Object::MixIn documentation for a full explanation of how to import methods from this class. The helper methods themselves are described below.
Download (0.47MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
Adblock Plus: Element Hiding Helper 1.0.1 for Firefox
Adblock Plus: Element Hiding Helper is an extension meant for creating element hiding rules easier. more>>
Adblock Plus: Element Hiding Helper is an extension meant for creating element hiding rules easier.
Fight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
<<lessFight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
Download (0.034MB)
Added: 2007-04-09 License: MPL (Mozilla Public License) Price:
931 downloads
SpectraScan 0006
SpectraScan is a little helper program for those unlucky persons, who dont get their spectrums in an appropriate PC format... more>>
SpectraScan is a little helper program for those unlucky persons, who dont get their spectrums in an appropriate computer readable format, but on dead tree.
This project allows to convert a variety of spectrum types into a comma separated value format, which is suitable to be loaded into Excel or a statistic program.
Another feature is the ability to scan the axes of a spectrum.
<<lessThis project allows to convert a variety of spectrum types into a comma separated value format, which is suitable to be loaded into Excel or a statistic program.
Another feature is the ability to scan the axes of a spectrum.
Download (0.55MB)
Added: 2007-05-15 License: GPL (GNU General Public License) Price:
900 downloads
PyRoe 1.0
PyRoe project is a static partial linker for small helper Python libraries. more>>
PyRoe project is a "static partial linker" for small helper Python libraries.
PyRoe links a Python script with its helper libraries into self-contained Python executable (PyRoe capsule).
Pyroe HOWTO
Assume that your main module is called frob.py and that it uses libraries libfoo.py and libbar.py (directly or indirectly). To pyroize your program, follow these steps (see Figure above for enlightenment):
Create the file Manifest.pyroe containing these three lines:
frob.py
libfoo.py
libbar.py
and put it in a directory together with your source files.
Run pyroe
After pyroe is done, you will find the file frob in the working directory.
The file frob is executable, the invocation
./frob ARGS...
is equivalent to
python frob.py ARGS...
but to run frob you no longer need libfoo.py or libbar.foo lying around.
Pyroe runtime library hidden inside of frob hijacks some command-line options starting with --pyroe-; in particular
frob --pyroe-unpack
will unpack the content of the capsule back to individual files.
For more information see
pyroe --help
The name of PyRoe capsule is always derived from the name of the first file in the Manifest.pyroe.
<<lessPyRoe links a Python script with its helper libraries into self-contained Python executable (PyRoe capsule).
Pyroe HOWTO
Assume that your main module is called frob.py and that it uses libraries libfoo.py and libbar.py (directly or indirectly). To pyroize your program, follow these steps (see Figure above for enlightenment):
Create the file Manifest.pyroe containing these three lines:
frob.py
libfoo.py
libbar.py
and put it in a directory together with your source files.
Run pyroe
After pyroe is done, you will find the file frob in the working directory.
The file frob is executable, the invocation
./frob ARGS...
is equivalent to
python frob.py ARGS...
but to run frob you no longer need libfoo.py or libbar.foo lying around.
Pyroe runtime library hidden inside of frob hijacks some command-line options starting with --pyroe-; in particular
frob --pyroe-unpack
will unpack the content of the capsule back to individual files.
For more information see
pyroe --help
The name of PyRoe capsule is always derived from the name of the first file in the Manifest.pyroe.
Download (0.004MB)
Added: 2006-03-20 License: GPL (GNU General Public License) Price:
1313 downloads
wmMute 1r1
WindowMaker dock app which is used to control the level of sound output. more>> wmMute is a small WindowMaker dock app which is used to control the level of sound output. It consists of two part: wmMute (the GUI part) and wmMute-helper (the helper program which does the actual sound setting manipulation).
Currently the wmMute-helper is ALSA-centric. But as it is a shell script it can easily be tailored to control other sound systems as well.<<less
Download (21.39KB)
Added: 2009-04-01 License: Freeware Price: Free
205 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 helper 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