Main > Free Download Search >

Free element hiding helper 1.0.1 software for linux

element hiding helper 1.0.1

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1674
Adblock Plus: Element Hiding Helper 1.0.1 for Firefox

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.

<<less
Download (0.034MB)
Added: 2007-04-09 License: MPL (Mozilla Public License) Price:
931 downloads
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
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
Jamendo Lyrics 1.0.1

Jamendo Lyrics 1.0.1


Jamendo Lyrics is a lyrics script for Amarok audio player accessing the lyrics database for Jamendo.com music. more>>
Jamendo Lyrics is a lyrics script for Amarok audio player accessing the lyrics database for Jamendo.com music.

<<less
Download (0.008MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
869 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
Pleiades 1.0.1

Pleiades 1.0.1


Pleiades is a theme that looks and works like the Macintosh System 7, with a customizable button layout. more>>

Pleiades 1.0.1 is yet another extremely useful utility for everyone. It is actually a theme that looks and works like the Macintosh System 7, with a customizable button layout for xfce users.

Enhancements: 2007-06-01

  • Made lower corners bigger
  • Fixed buttons on inactive window
  • Fixed 1-pixel shadow, now it's right
<<less
Added: 2008-07-12 License: GPL Price: FREE
14 downloads
XML Tree Object Model Parser 1.0.1

XML Tree Object Model Parser 1.0.1


XML Tree Object Model Parser is an easy to use XML parser. more>>
XML Tree Object Model Parser is an easy to use XML parser designed to provide an easy and simple to use library for parsing XML configuration files. It is split into two components.

The first one is the Parser itself, which uses J2SE 1.4 XML Parsing API, and the second one is what I call XML Tree Object Model, which is a XMLTree containing all of the XML Nodes or Elements in that tree.

The basic idea behind XTOM is to parse the XML file into an XMLTree and then navigate the elements of that tree by refering to them by the path, such as one/two/three.

The idead behind the navigation system came from Jakartas Digester. XTOM just simplifies it to increase the developement of XML based applications.
<<less
Download (0.060MB)
Added: 2006-03-17 License: The Apache License 2.0 Price:
1317 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
KSlide 1.0.1

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
Thinux 1.0.1

Thinux 1.0.1


Thinux is a thin-client cluster server on a Live CD. more>>
Thinux is a thin client system that resides on a Red Hat Linux server. When a thin client requests to boot on LAN, the server will upload the thin client linux system to the thin client. Ideal for lightweight devices such as Point-of-Sales terminals, embedded devices, etc.

<<less
Download (36.6MB)
Added: 2005-04-20 License: GPL (GNU General Public License) Price:
1647 downloads
XML::Mini::Element::Header 1.2.8

XML::Mini::Element::Header 1.2.8


XML::Mini::Element::Header Perl module is used internally to represent < ? xml blah=hohoho ? > type headers. more>>
XML::Mini::Element::Header Perl module is used internally to represent < ? xml blah="hohoho" ? > type headers.

You shouldnt need to use it directly, see XML::Mini::Elements header() method.

<<less
Download (0.034MB)
Added: 2007-03-08 License: Perl Artistic License Price:
966 downloads
Codeine 1.0.1

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.
<<less
Download (0.16MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
1263 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
Disk Manager 1.0.1

Disk Manager 1.0.1


Disk manager is a simple filesystem configurator. more>>
Disk Manager project is a simple filesystem configurator that allow you to:
- Automaticly detect new partitions at startup.
- Fully manage configuration of filesystem.
- Enable/disable write support for NTFS (need ntfs-3g installed).
<<less
Download (0.055MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
520 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5