helper 1.0.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 459
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
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
Heimdal 1.0.1
Heimdal is an implementation of Kerberos 5. more>>
Heimdal is an implementation of Kerberos 5, largely written in Sweden (which was important when we started writing it, less so now). Heimdal project is freely available under a three clause BSD style license.
Other free implementations include the one from MIT, and Shishi.
Enhancements:
- Several bugs in iprop were fixed.
- Platforms without dlopen are now supported.
- RFC3526 modp group14 is now included by default.
- [kdc] database = { } entries are now handled without realm = stanzas.
- krb5_get_renewed_creds and kaserver preauth were fixed along with other bugs.
<<lessOther free implementations include the one from MIT, and Shishi.
Enhancements:
- Several bugs in iprop were fixed.
- Platforms without dlopen are now supported.
- RFC3526 modp group14 is now included by default.
- [kdc] database = { } entries are now handled without realm = stanzas.
- krb5_get_renewed_creds and kaserver preauth were fixed along with other bugs.
Download (4.3MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
806 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
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
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
libpseudo 1.0.1
libpseudo is a generic library that provides simple, thread-safe messaging between threads. more>>
libpseudo is a generic library that provides simple, thread-safe messaging between threads.
This library also provides a facility for implementing a run-time tunable, thread-like callback queue for single-threaded applications.
<<lessThis library also provides a facility for implementing a run-time tunable, thread-like callback queue for single-threaded applications.
Download (0.010MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
858 downloads
KSlide 1.0.1
Kslide is one of those little games very simple but time consuming. more>>
Kslide project is one of those little games very simple but time consuming ! We have a picture which is split in more or less little squares. Then we put them randomly on the game area. Now, your job is to move the squares to unscramble all of them !
<<less Download (1.1MB)
Added: 2006-09-16 License: GPL (GNU General Public License) Price:
1133 downloads
Evergreen 1.0.1
Evergreen is an open source Integrated Library System (ILS). more>>
Evergreen is an open source Integrated Library System (ILS).
This software is being developed and maintained by the Georgia Public Library Service for use by the Georgia Library PINES Program, a consortium of 252 public libraries.
This software can be downloaded for free, and anyone can contribute to development efforts.
<<lessThis software is being developed and maintained by the Georgia Public Library Service for use by the Georgia Library PINES Program, a consortium of 252 public libraries.
This software can be downloaded for free, and anyone can contribute to development efforts.
Download (1.9MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1054 downloads
termit 1.0.1
termit is a simple terminal emulator based on vte library. more>>
termit is a simple terminal emulator based on vte library.
Main features:
- tabs
- bookmarks
- changing tab name
- changing font for tabs
- encodings (all available from GTK2)
Configuration can be changed via $HOME/.termit file (example is provided).
Enhancements:
- Calls to getenv were replaced with g_getenv.
- A possible double free was fixed.
<<lessMain features:
- tabs
- bookmarks
- changing tab name
- changing font for tabs
- encodings (all available from GTK2)
Configuration can be changed via $HOME/.termit file (example is provided).
Enhancements:
- Calls to getenv were replaced with g_getenv.
- A possible double free was fixed.
Download (0.017MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
830 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
SNPfile 1.0.1
SNPfile is a library and API for manipulating large SNP datasets. more>>
SNPfile is a library and API for manipulating large SNP datasets with associated meta-data, such as marker names, marker locations, individuals phenotypes, etc. in an I/O efficient binary file format.
In its core, SNPfile assumes very little about the metadata associated with markers and individuals, but leaves this up to application program protocols.
This project is released under the GNU General Public License.
<<lessIn its core, SNPfile assumes very little about the metadata associated with markers and individuals, but leaves this up to application program protocols.
This project is released under the GNU General Public License.
Download (0.14MB)
Added: 2007-07-08 License: GPL (GNU General Public License) Price:
838 downloads
Codeine 1.0.1
Codeine is a very simple xine-based media player. more>>
Codeine project is a very simple xine-based media player.
Main features:
- Plays DVDs, VCDs, all video formats *
- Bundled with a simple web-page KPart () Starts very quickly
- Simple, uncluttered interface
- "Session based"
- Intelligent behaviour
- You can record http streams with the hidden record action
- You can use drag and drop to play files. Try dragging shoutcast stream playlists, they will play too.
<<lessMain features:
- Plays DVDs, VCDs, all video formats *
- Bundled with a simple web-page KPart () Starts very quickly
- Simple, uncluttered interface
- "Session based"
- Intelligent behaviour
- You can record http streams with the hidden record action
- You can use drag and drop to play files. Try dragging shoutcast stream playlists, they will play too.
Download (0.16MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
1263 downloads
JWhoisServer 0.1.0.1
JWhoisServer project is a small, fast, and highly configurable RFC 3912 compliant whois server. more>>
JWhoisServer project is a small, fast, and highly configurable RFC 3912 compliant whois server written in Java and using RDBMS as a storage engine.
<<less Download (0.053MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
848 downloads
No-Referrer 1.0.1
No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab more>>
No-Referrer is a Firefox extension that adds an entry to the context menu that lets you open a link in a new tab, without sending the referrer information.
<<less Download (0.003MB)
Added: 2007-07-30 License: MPL (Mozilla Public License) Price:
820 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 1.0.1 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