eye 1.3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 853
Kamyrans Eye 1.3
Kamyrans Eye is a fantasy-themed roguelike role-playing game for Nokia Series60 cellphones and PCs. more>>
Save your home town from three mighty wizards and their insatiable greed sparked by the discovery of an ancient ruin.
Kamyrans Eye is a fantasy-themed "roguelike" role-playing game for Nokia Series60 cellphones and PCs.
With each game, explore a world which is never quite the same - filled with inhabitants both friendly and hostile. Defend cities and villages, conquer wizard towers and raid dens.
A plethora of items, weapons and spells allow for a wide array of tactics to reach one of the multiple endings.
<<lessKamyrans Eye is a fantasy-themed "roguelike" role-playing game for Nokia Series60 cellphones and PCs.
With each game, explore a world which is never quite the same - filled with inhabitants both friendly and hostile. Defend cities and villages, conquer wizard towers and raid dens.
A plethora of items, weapons and spells allow for a wide array of tactics to reach one of the multiple endings.
Download (0.47MB)
Added: 2006-08-07 License: GPL (GNU General Public License) Price:
1176 downloads
Falcons Eye 1.9.3
Falcons Eye is a mouse-driven interface for NetHack. more>>
Falcons Eye project is a mouse-driven interface for NetHack.
Falcons Eye is a mouse-driven interface for NetHack that enhances the visuals, audio, and accessibility of the game, yet retains all the original gameplay, and game features.
Main features:
- mouse-driven interface (keyboard play also supported)
- high-res, isometric graphics with real-time lighting
- ease of play: autopilot, tooltip descriptions of game objects, and more
- digitized sound effects
- MIDI soundtrack (listen to some samples)
- sound effects and keyboard commands are customizable
- retains all NetHack features
<<lessFalcons Eye is a mouse-driven interface for NetHack that enhances the visuals, audio, and accessibility of the game, yet retains all the original gameplay, and game features.
Main features:
- mouse-driven interface (keyboard play also supported)
- high-res, isometric graphics with real-time lighting
- ease of play: autopilot, tooltip descriptions of game objects, and more
- digitized sound effects
- MIDI soundtrack (listen to some samples)
- sound effects and keyboard commands are customizable
- retains all NetHack features
Download (MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1026 downloads
Ladder 1.3
Ladder brings us back to the days of classic computer games. more>>
Ladder project brings us back to the days of classic computer games. Back when computer games were written without any fancy graphics. Heck, they were written without any graphics at all!
Using only ASCII characters, ladder was an addictive game that was very popular for computers running the CPM operating system. Seeing the game, you might be very much reminded of "Donkey Kong".
Now Ladder has been rewritten in Java and can be played on most of todays computers. This version includes all the original levels and several new ones. It also comes with a level editor so that you can make your own.
Usage:
You are a lad trapped in a maze. Youre mission is to explore the dark corridors never before seen by human eyes and find hidden treasures and riches.
You control the lad by typing the direction buttons and by jumping by typing SPACE. But beware of the falling rocks called Der rocks. You must also find and grasp the treasure (shown as $) BEFORE the bonus time runs out.
A new lad will be awarded for every 10,000 points. Extra points are awarded for touching the gold statues (shown as &). You will receive the bonus time points that are left when you have finished the level.
Remember, there is more than one way to skin a cat. (Chum)
Good luck lad.
<<lessUsing only ASCII characters, ladder was an addictive game that was very popular for computers running the CPM operating system. Seeing the game, you might be very much reminded of "Donkey Kong".
Now Ladder has been rewritten in Java and can be played on most of todays computers. This version includes all the original levels and several new ones. It also comes with a level editor so that you can make your own.
Usage:
You are a lad trapped in a maze. Youre mission is to explore the dark corridors never before seen by human eyes and find hidden treasures and riches.
You control the lad by typing the direction buttons and by jumping by typing SPACE. But beware of the falling rocks called Der rocks. You must also find and grasp the treasure (shown as $) BEFORE the bonus time runs out.
A new lad will be awarded for every 10,000 points. Extra points are awarded for touching the gold statues (shown as &). You will receive the bonus time points that are left when you have finished the level.
Remember, there is more than one way to skin a cat. (Chum)
Good luck lad.
Download (0.010MB)
Added: 2005-12-19 License: GPL (GNU General Public License) Price:
1405 downloads
Cego 1.3.2
Cego implements a relational and transactional database system with support for the SQL query language. more>>
Cego implements a relational and transactional database system with support for the SQL query language. The current release contains the most common database features for basic table manipulation and data retrieval.
Indexes, foreign keys, views, and stored procedures are also implemented. Future releases (2.0 and above) will support a multi-node database concept with log file shipping for an automatic database application failover.
<<lessIndexes, foreign keys, views, and stored procedures are also implemented. Future releases (2.0 and above) will support a multi-node database concept with log file shipping for an automatic database application failover.
Download (0.37MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
811 downloads
Echoserver 1.3
See what browsers and programs are sending to an HTTP Server. Simple server just dumps whatever it receives on the console. Echoserver is misnamed because it does not actually echo what it receives back to the browser. more>>
Echoserver - See what browsers and programs are sending to an HTTP Server.
Simple server just dumps whatever it receives on the console.
Echoserver is misnamed because it does not actually echo what it receives
back to the browser.
Enhancements:
Version 1.3
change pad directory structure
System Requirements:<<less
Download (520Kb)
Added: 2006-03-06 License: Free Price: Free
13 downloads
Polyester 1.0
Polyester is a widget style + kwin decoration both aimed to be a good balance between eye candy and simplicity. more>>
Polyester is a widget style + kwin decoration both aimed to be a good balance between eye candy and simplicity.
<<less Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
926 downloads
sqlitewrapped 1.3
sqlitewrapped is a C++ wrapper for the Sqlite database C application programming interface. more>>
sqlitewrapped is a C++ wrapper for the Sqlite database C application programming interface.
The code works for linux/unix, as well as win32. This library supports version 3 of the sqlite database. From version 1.2 the connection pool can be made threadsafe.
Examples:
#include < stdio.h>
#include < stdlib.h>
#include < sqlite3.h>
#include < string>
#include "Database.h"
#include "Query.h"
int main()
{
Database db( "database_file.db" );
Query q(db);
q.execute("delete from user");
q.execute("insert into user values(1,First Person)");
q.execute("insert into user values(2,Another Person)");
q.get_result("select num,name from user");
while (q.fetch_row())
{
long num = q.getval();
std::string name = q.getstr();
printf("User#%ld: %sn", num, name.c_str() );
}
q.free_result();
}
Enhancements:
- This release adds methods to access values in the result set by column name.
<<lessThe code works for linux/unix, as well as win32. This library supports version 3 of the sqlite database. From version 1.2 the connection pool can be made threadsafe.
Examples:
#include < stdio.h>
#include < stdlib.h>
#include < sqlite3.h>
#include < string>
#include "Database.h"
#include "Query.h"
int main()
{
Database db( "database_file.db" );
Query q(db);
q.execute("delete from user");
q.execute("insert into user values(1,First Person)");
q.execute("insert into user values(2,Another Person)");
q.get_result("select num,name from user");
while (q.fetch_row())
{
long num = q.getval();
std::string name = q.getstr();
printf("User#%ld: %sn", num, name.c_str() );
}
q.free_result();
}
Enhancements:
- This release adds methods to access values in the result set by column name.
Download (0.015MB)
Added: 2006-04-05 License: GPL (GNU General Public License) Price:
1300 downloads
Eyes Of Lynx 0.1.4
Eyes Of Lynx is an application for examining your images on the Web. more>>
Eyes Of Lynx is an application for examining your images on the Web. It is written in PHP/Javascript and is licensed under the GNU General Public License.
Eyes Of Lynx project is designed to be fast, intuitive and very powerful. Its key features include an original and innovative interface, zoom and rotation tools, a thumbnails image navigation, ...
Main features:
- Arrangement of images in albums (directories and subdirectories)
- Zoom in, out, fit to window, 1:1 size and by selection (Shift + left mouse drag)
- Rotation left, right in increments of 90 degrees (requires PHPs GD extension or ImageMagick)
- Auto rotate photos: Eol can look at information stored by digital cameras in photos and automatically rotate them as needed
- Images can be cached in a smaller/intermediate size to increase display and loading speeds (requires PHPs GD extension or ImageMagick).
- The quality (level of JPEG compression) of resized images generated can be ajusted.
- Thumbnails image navigation, very useful when an image is zoomed
- Image properties dialog (draggable)
- Fully themeable
- Very easy setup (See INSTALL file in the source archive to know more about install instructions)
- Currently, only JPEG & PNG images are supported
<<lessEyes Of Lynx project is designed to be fast, intuitive and very powerful. Its key features include an original and innovative interface, zoom and rotation tools, a thumbnails image navigation, ...
Main features:
- Arrangement of images in albums (directories and subdirectories)
- Zoom in, out, fit to window, 1:1 size and by selection (Shift + left mouse drag)
- Rotation left, right in increments of 90 degrees (requires PHPs GD extension or ImageMagick)
- Auto rotate photos: Eol can look at information stored by digital cameras in photos and automatically rotate them as needed
- Images can be cached in a smaller/intermediate size to increase display and loading speeds (requires PHPs GD extension or ImageMagick).
- The quality (level of JPEG compression) of resized images generated can be ajusted.
- Thumbnails image navigation, very useful when an image is zoomed
- Image properties dialog (draggable)
- Fully themeable
- Very easy setup (See INSTALL file in the source archive to know more about install instructions)
- Currently, only JPEG & PNG images are supported
Download (0.14MB)
Added: 2007-06-24 License: GPL (GNU General Public License) Price:
852 downloads
wbar 1.3.1
wbar is a quick launch bar recommended for fluxbox or Window Maker. more>>
wbar is a quick launch bar recommended for fluxbox or Window Maker. wbars goal is speed.
This is eye candy developed in C++. The motivation is eye-candy which runs as fast as possible but still it probably made faster.
Tested succesfully on Fluxbox, WindowMaker.
Can be tweaked for other window managers but those who usualy use a desktop application such as nautilus will obscure Warbar because it runs with override-redirection so the window manager doesnt do the decorations and stays at the bottom of root window.
Installation:
- Needs imlib2
# make
create initial config for user (should make config with each user)
# make config
as root (if you dont have a bin directory at home)
# make install
warbar --help
Enhancements:
- Expansion now occurs on entering and leaving the bar.
- Better cleaning and drawing algorithms were implemented.
<<lessThis is eye candy developed in C++. The motivation is eye-candy which runs as fast as possible but still it probably made faster.
Tested succesfully on Fluxbox, WindowMaker.
Can be tweaked for other window managers but those who usualy use a desktop application such as nautilus will obscure Warbar because it runs with override-redirection so the window manager doesnt do the decorations and stays at the bottom of root window.
Installation:
- Needs imlib2
# make
create initial config for user (should make config with each user)
# make config
as root (if you dont have a bin directory at home)
# make install
warbar --help
Enhancements:
- Expansion now occurs on entering and leaving the bar.
- Better cleaning and drawing algorithms were implemented.
Download (0.17MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
514 downloads
KeyJnoteGUI 0.4.3.1
KeyJnoteGUI is a KDE front end to the eye-candy presentation program KeyJnote by Martin Fiedler. more>>
KeyJnoteGUI is a KDE front end to the eye-candy presentation program KeyJnote by Martin Fiedler. KeyJnote uses OpenGL to render presentations with unique visual effects.
Binary packages are provided for Ubuntu Edgy. They should work with other debian-like systems too, but they have only been tested on Ubuntu Edgy.You will need both Debian packages, as KeyJnoteGUI depends on KeyJnote.
To install from source, just extract the archive and run "python setup.py install" with root privileges. You will need to download KeyJnote separatly from http://keyjnote.sourceforge.net and install it into your $PATH.
<<lessBinary packages are provided for Ubuntu Edgy. They should work with other debian-like systems too, but they have only been tested on Ubuntu Edgy.You will need both Debian packages, as KeyJnoteGUI depends on KeyJnote.
To install from source, just extract the archive and run "python setup.py install" with root privileges. You will need to download KeyJnote separatly from http://keyjnote.sourceforge.net and install it into your $PATH.
Download (0.025MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
934 downloads
Luola 1.3.2
Luola is a 2D arcade game where you fly a small V shaped ship in different kinds of levels. more>>
Luola is a 2D arcade game where you fly a small V shaped ship in different kinds of levels. Luolas genre "Luolalentely" (Cave-flying) is (or was) very popular here in Finland. Though cavern-flying games are not originally Finnish, nowdays most of them are.
Luola is largely inspired by V-Wing, my favourite cave-flying game. While V-Wings graphics might not have been flashy, they were crisp and clear, and the playability and choice of weapons was superb. This is also my aim with Luola, not too much eye-candy, but solid playability.
Main features:
- 2-4 players
- Team play
- Ability to eject the pilot and walk around the level as a human
- Supports truecolor level artwork and over a dozen terrain types ranging from watercurrents to explosives
- Supports custom level palettes thus can load levels from practically any caveflying game such as V-Wing or Wings
- Level specials such as snowfall, critters, auto-turrets and jump-gates
- Supports keyboard and gamepad input
- Sound effects and background music thru SDL_mixer library
- Transparency and antialiasing effects thru SDL_gfx library
- Can use Truetype fonts thru SDL_ttf library
- Multiplatform: supports Linux and Windows
<<lessLuola is largely inspired by V-Wing, my favourite cave-flying game. While V-Wings graphics might not have been flashy, they were crisp and clear, and the playability and choice of weapons was superb. This is also my aim with Luola, not too much eye-candy, but solid playability.
Main features:
- 2-4 players
- Team play
- Ability to eject the pilot and walk around the level as a human
- Supports truecolor level artwork and over a dozen terrain types ranging from watercurrents to explosives
- Supports custom level palettes thus can load levels from practically any caveflying game such as V-Wing or Wings
- Level specials such as snowfall, critters, auto-turrets and jump-gates
- Supports keyboard and gamepad input
- Sound effects and background music thru SDL_mixer library
- Transparency and antialiasing effects thru SDL_gfx library
- Can use Truetype fonts thru SDL_ttf library
- Multiplatform: supports Linux and Windows
Download (1.3MB)
Added: 2006-02-06 License: GPL (GNU General Public License) Price:
1355 downloads
ExtSub 1.00
ExtSub is an utility which extracts and decodes subtitle data from VOB files. more>>
ExtSub is an utility which extracts and decodes subtitle data from VOB files. This program is for extracting subtitles from DVD VOB files. It does not descramble CSS-encrypted files. To compile simpy type "make". The command line parameters are as next:
infile= The VOB file from which to extract subtitles.
videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)
subname= The prefix of all subtitle files (see below for
details on the individual files).
convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.
id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.
Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".
The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.
The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.
The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
<<lessinfile= The VOB file from which to extract subtitles.
videofile= A file to which to write MPEG 2 video stream data.
(optional, highly experimental)
subname= The prefix of all subtitle files (see below for
details on the individual files).
convscript= An optional shell script, which will invoke
ImageMajicks "convert" utility to turn raw subtitle
image files into TIFF files.
id= The optional ID of the subtitle stream to be extracted
(default is 0). The specification allows IDs 0-31.
Each subtitle caption in the source file generates 3 output files with the suffixes ".gray", ".sub" and ".info".
The .gray file is a raw 8bpp bitmap image of the caption. DVD subtitles however are only 2bpp. in order to see anything with the naked eye using a program such as Imagemajicks "convert". it will probably be necessary to use the Enhance->Normalise function.
The .info file is a text file containing information about the caption, such as its resolution and and alpha channel data.
The .sub file is the raw data as extracted from the VOB source. Details of its syntax is available from http://sam.zoy.org/doc/dvd/subtitles/
Download (0.017MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1183 downloads
Glom 1.3.11
Glom allows you to design database table definitions and the relationships between them. more>>
Glom allows you to design database table definitions and the relationships between them. It also allows you to edit and search the data in those tables.
The design is loosely based upon FileMaker Pro, with the added advantage of separation between interface and data. It attempts to provide a simple generic framework sufficient to implement most database applications. These systems normally consists of lots of repetitive, unmaintainable code.
Glom-specific data such as the relationship definitions is saved in the Glom document. Glom re-connects to the database server when it loads a previous Glom document. The document is in XML format.
Glom uses the PostgresSQL database backend but it can not edit databases that it did not create, because it uses only a simple subset of Postgres functionality.
<<lessThe design is loosely based upon FileMaker Pro, with the added advantage of separation between interface and data. It attempts to provide a simple generic framework sufficient to implement most database applications. These systems normally consists of lots of repetitive, unmaintainable code.
Glom-specific data such as the relationship definitions is saved in the Glom document. Glom re-connects to the database server when it loads a previous Glom document. The document is in XML format.
Glom uses the PostgresSQL database backend but it can not edit databases that it did not create, because it uses only a simple subset of Postgres functionality.
Download (1.6MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
961 downloads
gDesklets 0.35.3
gDesklets provides an advanced architecture for desktop applets. more>>
gDesklets project provides an advanced architecture for desktop applets.
gDesklets allow tiny displays sitting on your desktop in a symbiotic relationship of eye candy and usefulness.
<<lessgDesklets allow tiny displays sitting on your desktop in a symbiotic relationship of eye candy and usefulness.
Download (0.70MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1201 downloads
pretrace 0.4
pretrace is a preload library that allows specified (dynamically linked) applications to always be executed. more>>
pretrace is a preload library that allows specified (dynamically linked) applications to always be executed under a debugging environment.
pretrace library allows you to specify the percentage of invocations which will be traced, to help you "keep an eye" on applications without bringing the machine to its knees.
To start using pretrace, add libpretrace.so to your /etc/ld.so.preload.
root# echo /lib/libpretrace.so >> /etc/ld.so.preload
You can now specify applications to trace in /etc/pretrace.conf, the format is one application per line, if you would like to specify a debugger append a colon, then the full path to the debugger and any arguments you would like to pass. If you do not specify a debugger, you get the default, strace, which saves the output to .logfile in the current working directory.
An optional number can be appended in the format %N, eg %50, to specify what percentage of invocations should be traced.
# this is a comment
/full/path/to/application[%percent][:/full/path/to/debugger [arg1 arg2 ...]]
An example pretrace.conf is provided with this distribution.
After modifying pretrace.conf, you should execute ptgenmap to generate a new map file, this is used to quickly parse the configuration file with minimal impact on initialisation time.
libpretrace is designed as a debugging utility for developers and auditors, and should not be used in a production environment.
<<lesspretrace library allows you to specify the percentage of invocations which will be traced, to help you "keep an eye" on applications without bringing the machine to its knees.
To start using pretrace, add libpretrace.so to your /etc/ld.so.preload.
root# echo /lib/libpretrace.so >> /etc/ld.so.preload
You can now specify applications to trace in /etc/pretrace.conf, the format is one application per line, if you would like to specify a debugger append a colon, then the full path to the debugger and any arguments you would like to pass. If you do not specify a debugger, you get the default, strace, which saves the output to .logfile in the current working directory.
An optional number can be appended in the format %N, eg %50, to specify what percentage of invocations should be traced.
# this is a comment
/full/path/to/application[%percent][:/full/path/to/debugger [arg1 arg2 ...]]
An example pretrace.conf is provided with this distribution.
After modifying pretrace.conf, you should execute ptgenmap to generate a new map file, this is used to quickly parse the configuration file with minimal impact on initialisation time.
libpretrace is designed as a debugging utility for developers and auditors, and should not be used in a production environment.
Download (0.007MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1407 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 eye 1.3 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