Main > Free Download Search >

Free 0.1.3 software for linux

0.1.3

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 111
Gsh 0.1.3

Gsh 0.1.3


Gsh is a comandshell. more>>
Gsh is designed to do two things:
1. be a comfortable environment for people who are already accustomed to using a Unix shell.
2. make operations that are difficult or awkward with a normal shell easier by having the shell take advantage of a graphical environment.
For the most part, Gsh behaves like a normal terminal window with some graphical enhancements. It can also be useful as a program launcher when used in compact mode.
Main features:
- A terminal window consisting of multiple output sections, one for each command. Above each output section is a header indicating the command that was executed. This makes Gshs output appear like the normal output you would see from a shell, but the header is editable, allowing you to change the command and re-execute it in the same output area. Each output section serves as a complete xterm-like terminal, so you can use it for any activity you would normally use an xterm for.
- Multiple independent screens. A screen bar at the bottom allows you to create new screens and switch between screens, as well s showing what is running in each. Having multiple screens keeps down the clutter of having several terminals open at once.
- A user configurable menu for keeping commonly used commands.
- A menu for "cd"ing to recently accessed directories. This is persistent and shared among multiple invocations of the program.
- A collapsed and expanded display. In the collapsed display, only the menus and the command line are visible, allowing Gsh to be placed unobtrusively on the top or bottom of the screen. In the expanded mode, the terminal is visible, with the command line at the bottom.
- A context-sensitive popup menu with user-definable commands. If you select a filename and press the right mouse button, a popup menu appears with commands that can be performed on that type of file. Selecting a URL gives you a menu option for opening the URL in a browser. Selecting text from other commands produces other types of popup menu entries. For example, if the command that created the text is "rpm", then entries such as "rpm -e" and "rpm -ql" are given in the popup menu.
- Graphical interfaces for configuring all options and settings. Including menus, fonts, and colors.
- Filename completion. Pressing Tab will finish the filename you are typing. If there is more than one possibility, Gsh will bring up a list of filenames. Pressing Tab with nothing entered allows the file completion window to serve as a simple file browser. The completions are configurable so that only the files relevant to the command will be shown.
- The command history is accessible through the up/down arrow keys, or a history list. History searches are possible by typing partial commands.
- The command line will automatically expand to include more lines as necessary. It also has built-in vi-style editing and mouse-based editing.
- You can cd to a recently accessed directory without typing the full path.
- Pressing the right mouse button over a previously executed command when nothing is selected opens a menu. Through the menu you can re-execute the command, remove it, or detatch it into its own window (even while it is running).
- The terminal keeps track of which lines wrapped. When the window is resized, the output is reformatted for the new size.
- User selectable colors for prompts and commands.
- Persistent aliases.
<<less
Download (0.12MB)
Added: 2005-04-04 License: GPL (GNU General Public License) Price:
1663 downloads
RPAL 0.1.3

RPAL 0.1.3


RPAL is the Right-reference Pedagogic Algorithmic Language. more>>
RPAL is the Right-reference Pedagogic Algorithmic Language.

rpal is an interpreter for RPAL, a simple functional programming language which is a subset of PAL, a language invented at MIT by Wozencraft and Evans in the early 70s.

<<less
Download (0.15MB)
Added: 2006-10-02 License: GPL (GNU General Public License) Price:
1119 downloads
nycd 0.1.3

nycd 0.1.3


nycd project is a Linux port of a Thaumaturge demo made for X97/Takeover. more>>
nycd project is a Linux port of a Thaumaturge demo made for X97/Takeover.

nycd or ``Nothing You Can Do was our attempt for the X97/Takeover demo compo. It crashed during the compo due to a bug in the compiler.

To (compile and) run ./nycd youll need libmikmod for sound and ggi for visuals (and things like libc and libm would be very nice too).

It now supports OpenPTC too if you dont like GGI.

I used libmikmod 3.1.8 and a ggi snapshot dated 991117.

<<less
Download (0.21MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1058 downloads
Atli 0.1.3

Atli 0.1.3


Atli is a scripting language interpreter. more>>
Atli is a scripting language interpreter originally meant to be a quick way to develop a particular applications scripting language.
Atli can also be used to write shell-like scripts to do tasks. Atli is a weakly typed language in which variables do not need to be declared before use.
All variables are stored as strings and converted between string and number form automatically.
Atli provides interfaces to cooperate with applications, so applications can exchange data and instructions with atli through a callback function.
Installation:
atli can be compiled by gcc 3.3 and its later version. The typically steps are:
$cd $atli
$./configure
$make
$su -c make install
NOTE: When run the program "atli", you may get message complain that libatlidll.so.0 can not be found. The following steps is required as root:
#cd /etc
#vi ld.so.conf
// add one line: /usr/local/lib to /etc/ld.so.conf
#ldconf
The release tar file contains the binary executable files in the fold $atli/bin/linux. I uses Fedora-2 to compile it.
Enhancements:
- Some overflow bugs are fixed.
- The keyword "load" has been added to load dynamic libraries on Windows or Linux.
- This release differentiates among atli-function-call, lib-function-call, and application-function-call.
- It calls the types function in lib: double function-name (double).
<<less
Download (0.38MB)
Added: 2005-11-21 License: GPL (GNU General Public License) Price:
1433 downloads
xpkg 0.1.3

xpkg 0.1.3


xpkg is a package management system much like dpkg and rpm. more>>
xpkg projects goal is to create a package and package management system for the DarwinPorts ports collection.
Main features:
- be lighweight (no http-client, etc.)
- make use of xar
- rely on few components to make installation (e. g. during OS install) painless
- provide library functionality so that GUI front ends can be created easily
- robustness (atomic installation w. rollback)
Packages consist of a name, version and revision. It also has a major and a minor build number and a collection of so called items (see dependencies for details). Every package installed must have a unique name, so only one package with name postgresql may be installed at one moment. The version and revision numbers are just for users to see what software they have installed. The major and a minor numbers are used for dependencies.
Dependencies arevery simple: A package can provide and request so called items. An item basically consists of a name (string), a major and minor number (int). If you want to install a package that requires a certain item, you have to have installed another package that provides just that item (a higher minor number is ok, too).
The basic use for items is to use the package name (e. g. python24) as an items name you provide. So python24 will provide an item with name being python24. The major and minor numbers show the state of the item. The minor number should get incremented on every build of the package, e. g. due to a bug fix release. The major number should get increased if something serious changes and the provided features change, get incompatible, etc..
This system also makes virtual packages unnecessary and works well without OR-dependencies like require a OR b.
Enhancements:
- xpkg now comes with xpkgcreate(1), a tool to easily create packages from catalog files.
<<less
Download (0.046MB)
Added: 2006-02-21 License: GPL (GNU General Public License) Price:
1344 downloads
plis 0.1.3

plis 0.1.3


plis is a C++ library of Perl-like structures. more>>
plis is a library for string handling in C++. It is built upon the splash library which in turn is based on the perl philosophy of strings.

Examples of functions supported by it are split(), join(), push(), shift(), grep() and many others. Its regular expression engine is provided by pcre.

Installation:

The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.

Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).

If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.

If at some point `config.cache contains results you dont want to keep, you may remove or edit it.

The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.

The simplest way to compile this package is:

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.

If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.

Running `configure takes a while. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Type `make install to install the programs and any data files and documentation.

4. You can remove the program binaries and object files from the source code directory by typing `make clean.

<<less
Download (0.33MB)
Added: 2005-09-30 License: LGPL (GNU Lesser General Public License) Price:
1484 downloads
RMoX 0.1.3

RMoX 0.1.3


RMoX is an experimental/research occam-pi/CSP based operating-system for (currently) Pentium based PCs. more>>
RMoX is an experimental/research occam-pi/CSP based operating-system for (currently) Pentium based PCs.

CSP provides a solid foundation for describing and reasoning about parallel systems and their interactions.

The occam-pi language is an enhanced version of occam (based on CSP), that adds ideas from the pi-calculus to provide a dynamic and flexible environment for building such concurrent systems.

Traditional occam was designed for Transputers (as developed by Inmos Ltd. and later SGS Thompson, now ST Microelectronics), which had a very finite memory, and no provision for features such as virtual memory (although the T9000 did provide a limited form of fault/memory protection). Transputers were primarily targetted at embedded-systems and therefore the use of such features would have been limited (especially considering the silicon cost).

The use of occam on modern computing systems has motivated substantial language development -- both at the language level and in the capabilities of the run-time system. As a result, occam-pi now provides support for facilities such as: data, channel and process mobility; multi-level process priority; extended synchronisation; and numerous others.

Whilst occam-pi is sufficient to develop many components of an operating-system, some of the more architecture-specific low-level operations remain tricky (and perhaps not best done in occam-pi). RMoX contains various "base-layers", one is selected depending on how you wish to use RMoX (e.g. user-mode in the host OS, or standalone).

Any hardware interaction is performed either by RMoXs device-drivers or the "base-layer". The base-layer provides an abstract interface to the hardware and can be changed depending on the desired use of RMoX.

The main functions of the base-layer are to provide the bootstrap, discovery and initialisation of certain hardware (e.g. the MMU), access to physical memory, interrupts and IO/memory-mapped devices. The various base-layers are:
Minlinux base-layer: this is a stripped-down version of the Linux kernel (2.4 series) that essentially replaces the traditional "init" task with the RMoX system. This replaces the Flux OSKit used previously.

Linux26 base-layer: this is a minimal configuration and wrappers for Linux 2.6, that loads the RMoX system as a module when booted (unconditionally transferring control to it). This approach is slightly cleaner than the minlinux base-layer as it does not require any modifications to the Linux 2.6 kernel tree.

Raw base-layer: this is an experimental base-layer written in assembler that performs basic initialisation before transferring control to RMoX.

User-mode base-layer: this provides a hardware abstraction for running RMoX in an existing Linux system as a normal user-mode application. This approach is particularly useful for debugging.

The run-time KRoC/CCSP kernel provides the scheduling and communication routines for occam-pi processes. This is essentially the same run-time kernel as used in KRoC/Linux, called CCSP. The version of CCSP currently in use is from pre-releases of the next KRoC/Linux version (1.4.0). Although the RMoX and "normal" versions of CCSP are built from the same source tree, what actually gets compiled is quite different (if RMoX is being built for non-user-mode; user-mode RMoX will get the standard KRoC run-time system).

Eventually we may do away with the Linux flavoured base-layers entirely, using the more specialised "raw" base-layer instead (largely in the interests of keeping the resulting system small). However, using a Linux base-layer makes much easier the task of machine startup -- in particular dealing with any hardware anomalies that the Linux community has already catered for (typically laptop computers). Another future possibility is a low-level infrastructure that sits on top of Xen, allowing RMoX to be run alongside other Xen-ported systems (primarily Linux, Windows-XP and Plan9).
<<less
Download (0.22MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
fkey 0.1.3

fkey 0.1.3


fkey is a scalable finger daemon type server for public display of user speciffied files. more>>
Scalable finger daemon type server for public display of user speciffied files. Ie: pgp keys, contact information. Users edit their data file (supplied as ASCII text file) and the finger daemon displays it on public request. May be used as banner server.
Installation:
The `configure shell script attempts to guess correct values for various system-dependent variables used during compilation.
It uses those values to create a `Makefile in each directory of the package. It may also create one or more `.h files containing system-dependent definitions.
Finally, it creates a shell script `config.status that you can run in the future to recreate the current configuration, a file `config.cache that saves the results of its tests to speed up
reconfiguring, and a file `config.log containing compiler output (useful mainly for debugging `configure).
If you need to do unusual things to compile the package, please try to figure out how `configure could check whether to do them, and mail diffs or instructions to the address given in the `README so they can be considered for the next release.
If at some point `config.cache contains results you dont want to keep, you may remove or edit it.
The file `configure.in is used to create `configure by a program called `autoconf. You only need `configure.in if you want to change it or regenerate `configure using a newer version of `autoconf.
The simplest way to compile this package is:
1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system.
If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute `configure itself.
Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.
2. Type `make to compile the package.
3. Optionally, type `make check to run any self-tests that come with the package.
4. Type `make install to install the programs and any data files and documentation.
5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean.
There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
Enhancements:
- Added hostname fingering.
- Fkey now runs on buffered output, no unbuffered IO except on receiving.
- Daemon now sends characters instead of lines.
- Added hooks for wait time.
<<less
Download (0.080MB)
Added: 2005-10-17 License: GPL (GNU General Public License) Price:
1468 downloads
Pyamp 0.1.3

Pyamp 0.1.3


Pyamp is just a music player for KDE. more>>
Pyamp is just a music player for KDE.
Main features:
- mp3/ogg/wav playback
- customizable playlist editor
- shuffle/repeat/target modes
- system tray docking
- song changed popup
- incremental search
- drag-and-drop
- dcop interface
- konqueror integration
- UTF-8
<<less
Download (0.032MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1283 downloads
Gspot 0.1.3

Gspot 0.1.3


Gspot stands for Gnome applet for Searching the web in a Practical, Outlined and Tidy way. more>>
Gspot stands for Gnome applet for Searching the web in a Practical, Outlined and Tidy way.

The project is in version 0.1. For version 0.2 it should have a preferences dialog that uses gconf for settings such as language support for engines that "support" it and other engine-specific settings.

It is going to be a non-intrusive simple applet and is supposed to be an all search tool for the gnome desktop.

<<less
Download (0.021MB)
Added: 2005-10-24 License: GPL (GNU General Public License) Price:
7933 downloads
SCLog 0.1.3

SCLog 0.1.3


SCLog is a little tool for GNOME, released under GPL license, thought to simplify the life to whom. more>>
SCLog is a little tool for GNOME, released under GPL license, thought to simplify the life to whom, like me, has the defect of checking Slackware current ChangeLog a bit too often.

Once selected a timeout and the ChangeLog url, SCLog will periodically check for upgrades and, if available, will change the icon shown in the tray area with a white exclamation mark inside a red spot.

Clicking the icon a menu will appear letting the user see available upgrades, modify preferences or quit the application.

<<less
Download (0.024MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1522 downloads
sdvel 0.1.3

sdvel 0.1.3


sdvel (structured development framework) separates release engineering from codebase configuration. more>>
sdvel (structured development framework) separates release engineering from codebase configuration. It provides scripts that can perform software releases, and C macros and autoconf variables commonly used in managing releases.
sdvel is free software released under the GPL license.
Main features:
- Verifying all released files have been tagged correctly. The SCM repository is contacted for this verification.
- Verifying all files include the appropriate copyright licence.
- Executing additional verification check scripts.
- Manually specifying the list of files that should be included or excluded from a source release file.
- Producing ChangeLog files or a Version Decsription Document.
<<less
Download (0.010MB)
Added: 2007-05-15 License: GPL (GNU General Public License) Price:
892 downloads
bodek 0.1.3

bodek 0.1.3


bodek is a mail notifier that stays in the system tray and shows a pop-up when new e-mail arrives (similar to KBiff and Korn). more>>
bodek project is a mail notifier that stays in the system tray and shows a pop-up when new e-mail arrives (similar to KBiff and Korn).
Currently bodek supports POP3 and IMAP4 protocols, with both secure and insecure logins.
bodek handles non-conforming and badly configured mail servers better then most other programs of this kind.
Let me know of any bugs you manage to find (shouldnt be too hard) and of course, Patches Welcome (TM).
Main features:
- POP3 and IMAP4 support
- support for secure login
- uses KWallet for secure password storage
- many many cool bugs for everyone to find!
<<less
Download (0.63MB)
Added: 2007-06-21 License: GPL (GNU General Public License) Price:
855 downloads
Ogham 0.1.3

Ogham 0.1.3


Ogham is designed to be a wiki like cms for non technical users. more>>
Ogham project is designed to be a wiki like cms for non technical users. The emphasis is on ease of use over features. Non technical users have difficulty with any markup language so I felt a WYSIWYG editor was essential.
Word users find wiki syntax and the automatic generation of links to be annoying so I have replaced this with a tree structure for navigation and easy linking within the site.
Ogham has currently been tested on linux and windows servers and with the firefox 1.0+, IE 6 and Konqueror 3.3.2 browsers.
Its highly unlikely that it will work bug free with any other browsers, but I am working on support for Safari. In KHTML (Konqueror & Safari) based browsers WYSIWYG editing has only recently become available and I am working to support them.
This system has been ported to Snakelets after initially being developed with webware. Snakelets has the advantage of an integrated webserver and better documentation (IMHO). A large part of its advantage may simply have been that it resembles tomcat and I come from a java background.
Enhancements:
- The rename option has been added to the context menu.
- There are miscellaneous minor bugfixes.
<<less
Download (0.19MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
904 downloads
ECTOR 0.1.3

ECTOR 0.1.3


ECTOR is a multilingual chatterbot that is able to learn from users entries. more>> <<less
Download (0.042MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1106 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5