Main > Free Download Search >

Free user interfaces wow software for linux

user interfaces wow

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 9640
Resolver User Layer Interface 0.36

Resolver User Layer Interface 0.36


RULI stands for Resolver User Layer Interface. more>>
RULI stands for Resolver User Layer Interface. Its a library built on top of an asynchronous DNS stub resolver. RULI provides an easy-to-use interface for querying DNS SRV resource records. The goal is to promote wide deployment of SRV-cognizant software. RULI aims to fully support SRV-related standards. There are bindings for PHP, Perl, Guile/Scheme, Java, and Lua. IPv6 is supported.

Now you can understand the benefits of SRV records and please see how RULI can help you.

SRV records are more complex than A records

Handling DNS SRV is not as simple as to deal with ordinary address records. When one performs a query for A records by calling gethostbyname(), he gets a list of addresses which should be contacted in the same order as they were received. For SRV records, there is an additional logic that must be applied to the records, based on their weight and priority, to discover the correct sequence for contacting them.
RULI can handle SRV records for you

The SRV logic is described in RFC 2782. Those who intend to use SRV benefits in their application are expected to implement that exact behavior. RULI can help here: it automatically performs all the SRV logic for you.
Keep focus on your application logic

Application developers probably want to spend time on their business logic; not dealing with the details of the DNS protocol or implementing the SRV specification.

RULI is a tested framework designed to properly fetch SRV records. It saves you time and head aches.
RULI is free as in free beer and in free speech

<<less
Download (0.12MB)
Added: 2006-07-15 License: GPL (GNU General Public License) Price:
1197 downloads
General Graphical User Interface 0.5.1

General Graphical User Interface 0.5.1


General Graphical User Interface is a wizard-like environment to execute console commands graphically. more>>
General Graphics User Interface is an effort to produce a common graphical user interface for any command-line program.

It uses a wizard-like input front end to collect the information needed. It then calls the desired program automatically with all the necessary options.

The user is able to point&click on various options and select them in a convenient way. In order to create a new user-interface, a user doesnt need to know a programming language, since there is a graphical editor for new GGUI "scripts".
<<less
Download (0.21MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1642 downloads
Configurable Audible User Interface 0.6

Configurable Audible User Interface 0.6


Configurable Audible User Interface is a simple plugin-based audible user interface. more>>
Configurable Audible User Interface in short caui is a simple plugin-based audible user interface.
Plugins use speech synthesis software to interact with a user and perform specific actions. The main method of input is a keyboard or number pad.
This project is the successor to the Blind MP3 Player.
Enhancements:
- caui-cmd will exit immediately if caui has an mplayer process forked.
<<less
Download (0.012MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1423 downloads
WhileInterpreter 4.2

WhileInterpreter 4.2


WhileInterpreter is an interpreter for the WHILE programming language used for learning purpose. more>>
WhileInterpreter is an interpreter for the WHILE programming language used for learning purpose.

WhileInterpreter has few constructs and easy semantics.

Command line interpreters allow users to issue various commands in a very efficient (and often terse) way. This requires the user to know the names of the commands and their parameters, and the syntax of the language that is interpreted. From the 1960s onwards, user interaction with computers was primarily by means of command line interfaces.

In the 1970s, researchers began to develop graphical user interfaces (GUIs)to provide an alternative user interface for computers, whereby commands were represented by pictorial operations, rather than as textual descriptions. Since they are easier to learn than command line interfaces, they have become the most common way of interacting with a computer.

However, command line interpreters remain widely used in conjunction with GUIs. For some complex tasks, the latter are less effective because of the large number of menus and dialog boxes presented and because of the innate difficulty of representing the underlying task graphically.
<<less
Download (0.021MB)
Added: 2006-03-16 License: Free For Educational Use Price:
1317 downloads
User::grent 5.8.8

User::grent 5.8.8


User::grent is an interface to Perls built-in getgr*() functions. more>>
User::grent is an interface to Perls built-in getgr*() functions.

SYNOPSIS

use User::grent;
$gr = getgrgid(0) or die "No group zero";
if ( $gr->name eq wheel && @{$gr->members} > 1 ) {
print "gid zero name wheel, with other members";
}

use User::grent qw(:FIELDS);
getgrgid(0) or die "No group zero";
if ( $gr_name eq wheel && @gr_members > 1 ) {
print "gid zero name wheel, with other members";
}

$gr = getgr($whoever);

This modules default exports override the core getgrent(), getgruid(), and getgrnam() functions, replacing them with versions that return "User::grent" objects. This object has methods that return the similarly named structure field name from the Cs passwd structure from grp.h; namely name, passwd, gid, and members (not mem). The first three return scalars, the last an array reference.

You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your core functions.) Access these fields as variables named with a preceding gr_. Thus, $group_obj->gid() corresponds to $gr_gid if you import the fields. Array references are available as regular array variables, so @{ $group_obj->members() } would be simply @gr_members.

The getpw() function is a simple front-end that forwards a numeric argument to getpwuid() and the rest to getpwnam().

To access this functionality without the core overrides, pass the use an empty import list, and then access function functions with their full qualified names. On the other hand, the built-ins are still available via the CORE:: pseudo-package.

<<less
Download (12.2MB)
Added: 2007-04-10 License: Perl Artistic License Price:
927 downloads
User::pwent 5.8.8

User::pwent 5.8.8


User::pwent is a Perl interface getpw*() functions. more>>
User::pwent is a Perl interface getpw*() functions.

SYNOPSIS

use User::pwent;
$pw = getpwnam(daemon) || die "No daemon user";
if ( $pw->uid == 1 && $pw->dir =~ m#^/(bin|tmp)?z#s ) {
print "gid 1 on root dir";
}

$real_shell = $pw->shell || /bin/sh;

for (($fullname, $office, $workphone, $homephone) =
split /s*,s*/, $pw->gecos)
{
s/&/ucfirst(lc($pw->name))/ge;
}

use User::pwent qw(:FIELDS);
getpwnam(daemon) || die "No daemon user";
if ( $pw_uid == 1 && $pw_dir =~ m#^/(bin|tmp)?z#s ) {
print "gid 1 on root dir";
}

$pw = getpw($whoever);

use User::pwent qw/:DEFAULT pw_has/;
if (pw_has(qw[gecos expire quota])) { .... }
if (pw_has("name uid gid passwd")) { .... }
print "Your struct pwd has: ", scalar pw_has(), "n";

This modules default exports override the core getpwent(), getpwuid(), and getpwnam() functions, replacing them with versions that return User::pwent objects. This object has methods that return the similarly named structure field name from the Cs passwd structure from pwd.h, stripped of their leading "pw_" parts, namely name, passwd, uid, gid, change, age, quota, comment, class, gecos, dir, shell, and expire. The passwd, gecos, and shell fields are tainted when running in taint mode.

You may also import all the structure fields directly into your namespace as regular variables using the :FIELDS import tag. (Note that this still overrides your core functions.) Access these fields as variables named with a preceding pw_ in front their method names. Thus, $passwd_obj->shell corresponds to $pw_shell if you import the fields.

The getpw() function is a simple front-end that forwards a numeric argument to getpwuid() and the rest to getpwnam().

To access this functionality without the core overrides, pass the use an empty import list, and then access function functions with their full qualified names. The built-ins are always still available via the CORE:: pseudo-package.

<<less
Download (12.2MB)
Added: 2007-04-10 License: Perl Artistic License Price:
928 downloads
Cuiterm 0.9.9

Cuiterm 0.9.9


Cuiterm is a CUI (Composite User Interface) terminal. more>>
Cuiterm is a CUI (Composite User Interface) terminal.
CUI (Composite User Interface) is a compound type of user interface which incorporates the features of the GUI (Graphical User Interface) and the CLI (Command Line Interface) by realizing both interface in one area at the same time.
It is absolutely substantial that the CUI contains GUI elements and control language in the same area of the screen at the same time, so the incorporation is complete. CUI is not an optional, alternatively selectable combination of the two communication method but a truly new approach.
An other relevant feature of the CUI method is that it uses generated commands. When the user activated some GUI part of the user interface an automatically generated command appears to complete the task so the user can observ how the CLI part of the user interface can be used.
The cuiterm is a pilot application for the CUI methodology made to demonstrate the power of the composite user interfaces. As terminals are usually used with some shell to start simple UNIX utility programs, the Cui library can be considered as a composite user interface for the shell and some UNIX utilities. The following screenshot shows the starting screen of the cuiterm.
How to use it?
To test the composite user interface first you have to download the cuiterm and and install it. After the installation is complete the program can be started with the cuiterm command.
When the terminal emulator started it can be used the usual way by typing commands into it. Some programs and some complex commands are interpreted by the terminal and colorized (see the list below). For these commands the screen should have active areas usable with the left mouse button by double clicking on them. The output of some programs have floating menus with context sensitive functions. The menus can be accessed by the right mouse button. Some parts of the screen can be used to fire up a text entry field by holding down the left mouse button.
The following list contains some interpreted and processed commands that are worth trying.
ls -l and some variants of it
df
who
w
ps aux
stat
finger
cat /etc/fstab
Enhancements:
- This version contains new features, including an automatic GUI generator which creates dialog boxes from manual pages, a working progress bar, enhanced size bars, and some new command parsers.
- The drag and drop, the speed of the terminal, and the existing parsers were also enhanced.
<<less
Download (1.3MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1084 downloads
TkInter 2.4.2

TkInter 2.4.2


Tkinter is Pythons de-facto standard GUI (Graphical User Interface) package. more>>
Tkinter is Pythons de-facto standard GUI (Graphical User Interface) package. It is a thin object-oriented layer on top of Tcl/Tk.

Tkinter is not the only GuiProgramming toolkit for Python. It is however the most commonly used one, and almost the only one that is portable between Unix, Mac and Windows.

CameronLaird calls the yearly decision to keep TkInter "one of the minor traditions of the Python world."
<<less
Download (8.8MB)
Added: 2005-11-07 License: Python License Price:
1011 downloads
Piorun Jabber Client 0.1.0

Piorun Jabber Client 0.1.0


Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients. more>>
Piorun Jabber Client is a Jabber client for Gnome with user interface simmilar to IRC clients.

Currenly implemented features include: standard chat, multi-user chat, roster and subscriptions management, VCards, privacy lists, secure connections (TLS and SALSL).
Piorun is written using Mono/Gtk#

<<less
Download (0.22MB)
Added: 2005-09-02 License: GPL (GNU General Public License) Price:
1514 downloads
Console Jabber Client 1.0.0

Console Jabber Client 1.0.0


Console Jabber Client is a Jabber client with text-based user interface resembling those known from popular IRC clients. more>>
Console Jabber Client is a Jabber client with text-based user interface resembling those known from popular IRC clients.

CJC is a Jabber/XMPP client for text terminals. Console Jabber Client uses pyxmpp library for XMPP comunication and curses for screen output. It is not finished yet, but still quite usable. Its user interface is resembling those of popular IRC clients like irssi or BitchX.

<<less
Download (0.10MB)
Added: 2006-05-23 License: GPL (GNU General Public License) Price:
1262 downloads
Folder Extension Wizard 1.0.1

Folder Extension Wizard 1.0.1


Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).

A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.

However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.

<<less
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
Ubuntu Bootloader Manager 0.2

Ubuntu Bootloader Manager 0.2


Ubuntu Bootloader Manager is a graphical user interface for configuring GRUBs menu.lst. more>>
Ubuntu Bootloader Manager is a graphical user interface (GUI) for configuring GRUBs menu.lst.

This app is still very alpha, use at your own risk and make sure to make a backup of our grub config file (/boot/grub/menu.lst).
<<less
Download (MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
699 downloads
Sanders 1.0

Sanders 1.0


Sanders software is a PHP MVC framework based on Mojavi 3.0. more>>
Sanders software is a PHP MVC framework based on Mojavi 3.0.

After closing Mojavi development, we make decission to continue in this great thing alone. Now we are here with Sanders. New framework based on Mojavi 3.0. If you have some suggestions or bugreports, use our forums.

Actual development version can be reached by svn: [svn.sanders.cz]

MVC (Model-view-controller) is an architectural pattern used in software engineering. In complex computer applications that present a large amount of data to the user, a developer often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface will not affect data handling, and that the data can be reorganized without changing the user interface. The model-view-controller solves this problem by decoupling data access and business logic from data presentation and user interaction, by introducing an intermediate component: the controller.
<<less
Download (0.11MB)
Added: 2007-06-28 License: LGPL (GNU Lesser General Public License) Price:
850 downloads
KMtraceViewer 0.73

KMtraceViewer 0.73


KMtraceViewer is a graphical user interface for the KMtrace leak detection program. more>>
KMtraceViewer is a graphical user interface for the KMtrace leak detection program. KMtrace is part of the kdesdk package.
Enhancements:
- fixed installation path of icons (for making them part of the package)
<<less
Download (0.39MB)
Added: 2005-09-01 License: GPL (GNU General Public License) Price:
1514 downloads
poker-network 1.1.1

poker-network 1.1.1


poker-network includes a poker server, a client library, an abstract user interface library, and a client based on it. more>>
poker-network project includes a poker server, a client library, an abstract user interface library, and a client based on it.

The server deals the cards and checks the user actions using a poker game engine (poker-engine). It listens on a TCP/IP port and understands its own specific protocol. The persistent information is stored in a MySQL database.

The client library implements the poker-network protocol for the client. The abstract user interface library provides a framework based on the client library and suited to implement a user friendly client.
<<less
Download (2.2MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
898 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5