Main > Free Download Search >

Free quest helper software for linux

quest helper

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 253
GNU Hosting Helper 2.03

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.
<<less
Download (0.18MB)
Added: 2006-04-18 License: GPL (GNU General Public License) Price:
1286 downloads
Xdebug Helper 0.1

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
<<less
Download (0.009MB)
Added: 2007-06-19 License: MPL (Mozilla Public License) Price:
863 downloads
pt-helper 0.1.1

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
<<less
Added: 2007-05-01 License: GPL Price: FREE
1 downloads
Quest OpenSSH 4.6p1_q1

Quest OpenSSH 4.6p1_q1


Quest OpenSSH provides password-less, secure, encrypted remote login and file transfer services for VAS. more>>
Quest OpenSSH provides password-less, secure, encrypted remote login and file transfer services for Vintela Authentication Services (VAS). It is a derivative of OpenSSH, an open-source implementation of the SSH protocol.
Quest OpenSSH provides:
- default single sign on for Quest customers using VAS or VMX. Users are automatically and securely authenticated against Microsoft Active Directory using GSSAPI.
- compatibility with other SSH tools, including Quest PuTTY.
- integrated enhancements including high performance network support and TCPwrap access controls.
The software packages include both the client, ssh, and the server, sshd. Packages are subject to open source licence conditions.
Enhancements:
- This releases new features are the Match directive and inclusion of the HPN patches (High Performance Networking).
- Minor bugs fixed include NIS+ compatibility and improved service script reliability.
<<less
Download (3.0MB)
Added: 2007-08-07 License: BSD License Price:
497 downloads
Gtk2::Helper 1.122

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.

<<less
Download (0.60MB)
Added: 2006-07-18 License: Perl Artistic License Price:
1193 downloads
Automated Argument Helper 1.2.2

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.
<<less
Download (0.16MB)
Added: 2006-04-14 License: GPL (GNU General Public License) Price:
1288 downloads
Stage Managers Helper 0.4.4

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
<<less
Download (0.018MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1218 downloads
squid-nufw-helper 1.0.0

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.
<<less
Download (0.071MB)
Added: 2007-06-14 License: GPL (GNU General Public License) Price:
863 downloads
dhcp-helper 0.6

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.
<<less
Download (0.013MB)
Added: 2006-05-06 License: GPL (GNU General Public License) Price:
1272 downloads
AA Helper Library 0.1

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
<<less
Download (0.018MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1473 downloads
Catalyst::Helper::Doc 0.04

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.

<<less
Download (0.002MB)
Added: 2007-03-09 License: Perl Artistic License Price:
959 downloads
Zoids Quest 0.0.1

Zoids Quest 0.0.1


Zoids Quest is a jump-and-run platform game. more>>
Zoids Quest project is a jump-and-run platform game.

Zoids Quest is a platform game in the style of old console games such as Super Mario World and Sonic the Hedgehog.

Players must help Zoid on his Quest by guiding him through many worlds containing tricks, traps, and monsters.

On the way Zoid can collect special magic runes which enhance his abilities and help defend against the many deadly foes.

This is the first public release.
<<less
Download (6.2MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1075 downloads
guitest 0.3.1

guitest 0.3.1


guitest is a Python helper library for testing Python GUI applications. more>>
guitest is a Python helper library for testing Python GUI applications. pyGTK support is most mature, and support for other toolkits is in progress.
guitest is a simple GTK application with its unit tests and doctests to demonstrate usage is provided in the package.
Documentation is severely lacking at the moment; you might find my EuroPython 2005 presentation (OO.org Impress, PDF) useful, although it is a bit outdated. Doctests are also very useful because they are always up to date.
Usage:
See python scripts in the examples subdirectory. There is no real
documentation yet, you may want to look into the EuroPython 2005 presentation
in OpenOffice.org Impress format (ep2005.sxi) which has a broad overview.
Doctests (see guitest/tests/*.py), although verbose, may be useful as
they are always up to date.
Enhancements:
- Very preliminary support for wxWidgets and Tkinter applications was added.
- A few minor bugs were fixed.
<<less
Download (0.014MB)
Added: 2005-11-28 License: GPL (GNU General Public License) Price:
1425 downloads
Millers Quest! 0.9.1

Millers Quest! 0.9.1


Millers Quest! is a fire-and-forget RPG, or more accurately, an RPG simulator. more>>
Millers Quest! is a role-playing simulator game. It could also be described as a "fire-and-forget role-playing game". In other words, it is not a role-playing game in the most traditional sense, because there is absolutely no player interaction. The emphasis on this game is the simulation of role-playing.
So, it is a completely non-interactive computer role-playing game. "I guess its not fun then", I can hear you say. Wrong! Millers Quest! is, in fact, very much fun. It has all of the excitement of traditional MMORPGs with none of the effort to be put in mindless treadmilling.
You can watch your character grow more potent and more powerful, and you dont need to bore yourself with details like "okay, attack the monster, Im going to win anyway".
Millers Quest! was largely inspired by its direct ancestor, Progress Quest. It is written in Ruby programming language and as such it was largely also inspired by Dwemthys Array, without any of its clever metaprogramming stuff and general bore of having to use irb to play it.
Players of Progress Quest should be right at home with Millers Quest!. What tells MQ and PQ apart is the fact that MQ is not entirely progress-driven. In MQ, all monsters have actual stats. Theres actual, stats- and probability-based fighting involved.
Since dying in a continually running game is pretty damn boring, you get also revived and healed automatically if that occurs. MQ owes a lot of its continued existence to Ruby Development Tools, the Ruby environment for the Eclipse Platform.
Enhancements:
- The combat system wasnt working quite properly, and is now fixed (somewhat).
- A confusing display message has been fixed.
- New features include optional support for curses/terminfo, allowing better-looking and more comprehensive combat display by coloring the output. (This currently requires tput(1) from ncurses.)
<<less
Download (0.021MB)
Added: 2005-10-27 License: GPL (GNU General Public License) Price:
1463 downloads
Rose::DB::Object::Helpers 0.764

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.

<<less
Download (0.47MB)
Added: 2007-07-18 License: Perl Artistic License Price:
828 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5