eye
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 147
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
The Eye Of Horus 0.2
The Eye Of Horus is a monitoring and alerting tool for computers. more>>
The Eye Of Horus is a monitoring and alerting tool for computers. Its mainly useful for monitoring network services (eg, HTTP or SMTP servers) and the internal status of Unix servers (eg, load, disk usage, process counts).
In that respect, its a lot like Nagios, but in my opinion its better. It lacks a few features Nagios has, but it is a very simple architecture to which they can easily be added.
Its a flexible thing made from independent modules with well-defined interfaces, making it easy to customise and extend, but out of the box itll monitor your servers and produce a nice HTML summary of their status - OK, the looks need a bit of work, but that will come soon, and it can optionally integrate with the excellent (and I mean excellent) RRDTool to store logs of statistics (response times, number of packages with known security holes, etc) - and link from the status page to nice graphs of the historical behaviour of these statistics.
HOW IT WORKS
The core of the system is horus-check.py, a Python script which reads a configuration file (specified on the command line). The configuration file specifies a list of services - either network services, in which case the host to run the check from and the host to run the check at are specified, or local services, in which case only the host to run the check from need be specified. In either case, if the host to run the check from is not specified, then it defaults to the local host.
The service types reference definitions in a file which is referenced from the configuration file. In the service definitions file, a shell command to check the service is given; this command must output service status in a defined format, as a single-line YAML list. The list must contain, at least, a single-word status (OK, WARNING, FAILURE, or UNKNOWN), then optionally numeric statistics, then optionally a status message. For example:
[OK]
[UNKNOWN]
[OK, { load: 0.5, users: 3 }]
[WARNING, { load: 3, users: 30 }]
[FAILURE, { load: 95, users: 300 }]
[UNKNOWN, { }, Could not find AWK executable]
When a check is to be performed from a remote host, Horus opens an ssh connection to that host. It is assumed that the user horus is run as will have an ssh key set up to enable it to ssh to all such hosts without requiring a password.
Having performed the checks, horus-check.py then:
Reads in the status database named in the configuration file
Updates the status database with the new status of hosts
Computes an overall system status (the worst non-unknown status of any checked service)
Examines the service dependencies, and marks any service whose state is no worse than might be expected (eg, no worse than the worst state of a service it depends upon) are automatically marked as quiet
Computes a list of differences between the old and new status (services added, services removed, services whose status has improved, services whose status has worsened)
If there are any differences, invokes a notification script (named in the configuration file) with them, along with the overall status
Invokes a logging script (named in the configuration file) with the new value of every statistic reported by the service checks; I will soon provide a sample logging script that uses RRDTool to generate nice graphs.
The status database (which is written in YAML, so easily accessible to user scripts) can then be used to generate HTML status report (see status.cgi).
<<lessIn that respect, its a lot like Nagios, but in my opinion its better. It lacks a few features Nagios has, but it is a very simple architecture to which they can easily be added.
Its a flexible thing made from independent modules with well-defined interfaces, making it easy to customise and extend, but out of the box itll monitor your servers and produce a nice HTML summary of their status - OK, the looks need a bit of work, but that will come soon, and it can optionally integrate with the excellent (and I mean excellent) RRDTool to store logs of statistics (response times, number of packages with known security holes, etc) - and link from the status page to nice graphs of the historical behaviour of these statistics.
HOW IT WORKS
The core of the system is horus-check.py, a Python script which reads a configuration file (specified on the command line). The configuration file specifies a list of services - either network services, in which case the host to run the check from and the host to run the check at are specified, or local services, in which case only the host to run the check from need be specified. In either case, if the host to run the check from is not specified, then it defaults to the local host.
The service types reference definitions in a file which is referenced from the configuration file. In the service definitions file, a shell command to check the service is given; this command must output service status in a defined format, as a single-line YAML list. The list must contain, at least, a single-word status (OK, WARNING, FAILURE, or UNKNOWN), then optionally numeric statistics, then optionally a status message. For example:
[OK]
[UNKNOWN]
[OK, { load: 0.5, users: 3 }]
[WARNING, { load: 3, users: 30 }]
[FAILURE, { load: 95, users: 300 }]
[UNKNOWN, { }, Could not find AWK executable]
When a check is to be performed from a remote host, Horus opens an ssh connection to that host. It is assumed that the user horus is run as will have an ssh key set up to enable it to ssh to all such hosts without requiring a password.
Having performed the checks, horus-check.py then:
Reads in the status database named in the configuration file
Updates the status database with the new status of hosts
Computes an overall system status (the worst non-unknown status of any checked service)
Examines the service dependencies, and marks any service whose state is no worse than might be expected (eg, no worse than the worst state of a service it depends upon) are automatically marked as quiet
Computes a list of differences between the old and new status (services added, services removed, services whose status has improved, services whose status has worsened)
If there are any differences, invokes a notification script (named in the configuration file) with them, along with the overall status
Invokes a logging script (named in the configuration file) with the new value of every statistic reported by the service checks; I will soon provide a sample logging script that uses RRDTool to generate nice graphs.
The status database (which is written in YAML, so easily accessible to user scripts) can then be used to generate HTML status report (see status.cgi).
Download (0.027MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1065 downloads
Jawa Open Eyes 5.1
Jawa Open Eyes is a visual network monitoring tool developed in Java for managing network and Internet resources. more>>
Jawa Open Eyes is a visual network monitoring tool developed in Java for managing network and Internet resources.
Jawa Open Eyes supports SNMP v1/2/2c for collecting MIB-II information, port scanning, and SSL capable URL time response.
The main features include visual network monitoring, an enhanced network topology designer, email alert, trap receiver, trap agent, and real time logging to DB and Web.
<<lessJawa Open Eyes supports SNMP v1/2/2c for collecting MIB-II information, port scanning, and SSL capable URL time response.
The main features include visual network monitoring, an enhanced network topology designer, email alert, trap receiver, trap agent, and real time logging to DB and Web.
Download (2.6MB)
Added: 2005-12-06 License: Free To Use But Restricted Price:
1445 downloads
Crazy Eye Icons for Linux -
6 icons of a funny creature with just one eye more>> Description:
Six freeware icons of a funny creature with just one eye.
Content:
Crazy Eye, Anger, Dance, Run, Sad, Sleep<<less
Download (351KB)
Added: 2009-04-23 License: Freeware Price: Free
184 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
Acme::EyeDrops 1.51
Acme::EyeDrops is a Perl module for visual programming in Perl. more>>
Acme::EyeDrops is a Perl module for visual programming in Perl.
SYNOPSIS
use Acme::EyeDrops qw(sightly);
print sightly( { Shape => camel,
SourceFile => eyesore.pl } );
Acme::EyeDrops converts a Perl program into an equivalent one, but without all those unsightly letters and numbers.
In a Visual Programming breakthrough, EyeDrops allows you to pour the generated program into various shapes, such as UML diagrams, enabling you to instantly understand how the program works just by glancing at its new and improved visual representation.
Unlike Acme::Bleach and Acme::Buffy, the generated program runs without requiring that Acme::EyeDrops be installed on the target system.
EXAMPLES
Getting Started
Suppose you have a program, helloworld.pl, consisting of:
print "hello worldn";
To convert this little program into an equivalent camel-shaped one, create cvt.pl as follows:
# cvt.pl. Convert helloworld.pl into a camel shape.
use Acme::EyeDrops qw(sightly);
print sightly( { Shape => camel,
SourceFile => helloworld.pl,
Regex => 1 } );
Then run it like this:
perl cvt.pl >new.pl
After inspecting the newly created program, new.pl, to verify that it does indeed resemble a camel, run it:
perl new.pl
to confirm it behaves identically to the original helloworld.pl.
Instead of using the API, as shown above, you may find it more convenient to use the sightly.pl command in the demo directory:
sightly.pl -h (for help)
sightly.pl -s camel -f helloworld.pl -r >new.pl
cat new.pl (should look like a camel)
perl new.pl (should print "hello world" as before)
Notice that the shape camel is just the file camel.eye in the EyeDrops sub-directory underneath where EyeDrops.pm is located, so you are free to add your own new shapes as required.
For the meaning of Regex => 1 above, see the Just another Perl hacker section below.
<<lessSYNOPSIS
use Acme::EyeDrops qw(sightly);
print sightly( { Shape => camel,
SourceFile => eyesore.pl } );
Acme::EyeDrops converts a Perl program into an equivalent one, but without all those unsightly letters and numbers.
In a Visual Programming breakthrough, EyeDrops allows you to pour the generated program into various shapes, such as UML diagrams, enabling you to instantly understand how the program works just by glancing at its new and improved visual representation.
Unlike Acme::Bleach and Acme::Buffy, the generated program runs without requiring that Acme::EyeDrops be installed on the target system.
EXAMPLES
Getting Started
Suppose you have a program, helloworld.pl, consisting of:
print "hello worldn";
To convert this little program into an equivalent camel-shaped one, create cvt.pl as follows:
# cvt.pl. Convert helloworld.pl into a camel shape.
use Acme::EyeDrops qw(sightly);
print sightly( { Shape => camel,
SourceFile => helloworld.pl,
Regex => 1 } );
Then run it like this:
perl cvt.pl >new.pl
After inspecting the newly created program, new.pl, to verify that it does indeed resemble a camel, run it:
perl new.pl
to confirm it behaves identically to the original helloworld.pl.
Instead of using the API, as shown above, you may find it more convenient to use the sightly.pl command in the demo directory:
sightly.pl -h (for help)
sightly.pl -s camel -f helloworld.pl -r >new.pl
cat new.pl (should look like a camel)
perl new.pl (should print "hello world" as before)
Notice that the shape camel is just the file camel.eye in the EyeDrops sub-directory underneath where EyeDrops.pm is located, so you are free to add your own new shapes as required.
For the meaning of Regex => 1 above, see the Just another Perl hacker section below.
Download (0.10MB)
Added: 2007-07-16 License: Perl Artistic License Price:
830 downloads
Xfce 4 Eyes Plugin 4.4.0
Xfce 4 Eyes Plugin is a Xfce4 panel plugin that adds eyes which watch your every step. more>>
Xfce 4 Eyes Plugin is a Xfce4 panel plugin that adds eyes which watch your every step.
Portions of the xfce4-eyes code were taken from geyes and are licensed under the terms of the GNU General public license, see the COPYING.GPL file.
<<lessPortions of the xfce4-eyes code were taken from geyes and are licensed under the terms of the GNU General public license, see the COPYING.GPL file.
Download (0.20MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
966 downloads
Eye of Gnome 2.26.3 / 2.27.3
Eye of Gnome is the default image viewer for the Gnome Desktop. more>> <<less
Added: 2009-07-01 License: GPL Price: FREE
15 downloads
Other version of Eye of Gnome
License:GPL (GNU General Public License)
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
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
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
Ixion media player 0.2
Ixion is a media player that uses wxWidgets and GStreamer. more>>
Ixion is a media player that uses wxWidgets and GStreamer. Its is just a simple video player that can play at double or half speed. It can be useful as an example of how to write a simple app based on wxWidgets and/or GStreamer.
Ixion is a media player written in C/C++ using wxWidgets and GStreamer. It is not a bleeding edge, full-featured, eye-candy, all-in-one application; Ixion exists only because I needed a video player that could play at double or half speed. However, it can be useful if you want to see how to write a simple app based in wxWidgets and/or GStreamer. Source code is available for download under the GPL license.
You can download the source code from the downloads section. It will compile on most *nix systems ig there are the required libraries, including GNU/Linux.
Alternatively, you can get the source code using anonymous CVS access:
$ cvs -d:ext:anonymous@cvs.lug.fi.uba.ar:/cvsroot/ixion co ixion
<<lessIxion is a media player written in C/C++ using wxWidgets and GStreamer. It is not a bleeding edge, full-featured, eye-candy, all-in-one application; Ixion exists only because I needed a video player that could play at double or half speed. However, it can be useful if you want to see how to write a simple app based in wxWidgets and/or GStreamer. Source code is available for download under the GPL license.
You can download the source code from the downloads section. It will compile on most *nix systems ig there are the required libraries, including GNU/Linux.
Alternatively, you can get the source code using anonymous CVS access:
$ cvs -d:ext:anonymous@cvs.lug.fi.uba.ar:/cvsroot/ixion co ixion
Download (0.095MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1208 downloads
Spectalum rev31
Spectalum project is an engine for the CRPG Eye of the Beholder II. more>>
Spectalum project is an engine for the CRPG Eye of the Beholder II.
Spectalum is a reverse engineered Open Source game engine for the 1991 CRPG Eye of the Beholder II: The Legend of Darkmoon originally developed by Westwood Associates.
Like with most similar projects, the original game data has to be obtained seperately to play the game.
Why..?
Because I loved this game so much - I played it a long long time ago on my Amiga 500 and later on my first PC.
Another point is my interest in classic gaming technologies. I think this Dungeon-Master style is very interesting from a gamers - and a programmers view. You can create fascinating worlds with very low system resources.
How to play
Copy your original game datafiles (ENGLISH version only) into the "original" game folder. Now start the game with the remake-binary (e.g. spectalum.exe).
Eye of the Beholder - the Legend of Darkmoon is a classic role playing game from the early 90s. You move through a static tile-based 3D environment solving puzzles and hunting monsters.
What do I need to play this remake?
My ambition is to create a system-independent 100% remake of the great original. That means old-school 320x200 role playing gameplay. By using the SDL multimedia library and general C++ coding standards the game will run on any libSDL supported platform.
<<lessSpectalum is a reverse engineered Open Source game engine for the 1991 CRPG Eye of the Beholder II: The Legend of Darkmoon originally developed by Westwood Associates.
Like with most similar projects, the original game data has to be obtained seperately to play the game.
Why..?
Because I loved this game so much - I played it a long long time ago on my Amiga 500 and later on my first PC.
Another point is my interest in classic gaming technologies. I think this Dungeon-Master style is very interesting from a gamers - and a programmers view. You can create fascinating worlds with very low system resources.
How to play
Copy your original game datafiles (ENGLISH version only) into the "original" game folder. Now start the game with the remake-binary (e.g. spectalum.exe).
Eye of the Beholder - the Legend of Darkmoon is a classic role playing game from the early 90s. You move through a static tile-based 3D environment solving puzzles and hunting monsters.
What do I need to play this remake?
My ambition is to create a system-independent 100% remake of the great original. That means old-school 320x200 role playing gameplay. By using the SDL multimedia library and general C++ coding standards the game will run on any libSDL supported platform.
Download (0.56MB)
Added: 2007-03-12 License: Freeware Price:
957 downloads
Expiretable 0.6
Expiretable is a utility used to remove entries from a pf(4) table based on their age. more>>
Expiretable is a utility used to remove entries from a pf(4) table based on their age. The age in question being the amount of time that has passed since the statistics for each entry in the target table was last cleared.
This program needs to be run as a user with read/write permission to /dev/pf. As with all unknown things that need to be run as the superuser or similar there is always the chance this one will cause death and destruction, so use at your own risk. It WorksForMe< tm >, dont blame me if your cat grows another eye, and so on and so forth.
If you find yourself using this utility, especially for a reason not mentioned here, please tell me about it.
Johan Fredin has been nice enough to provide a port for expiretable. He has also put together a howto on how to use expiretable to block attempts to bruteforce ssh. geek00L has written a short piece on using Snort2c + Expiretable. Thanks to Samuel Ljungkvist and others for ideas.
Enhancements:
- The ability to specify age in minutes, hours, days, etc. was added.
- The age limit was changed to the limit imposed by OpenBSDs nanosleep.
<<lessThis program needs to be run as a user with read/write permission to /dev/pf. As with all unknown things that need to be run as the superuser or similar there is always the chance this one will cause death and destruction, so use at your own risk. It WorksForMe< tm >, dont blame me if your cat grows another eye, and so on and so forth.
If you find yourself using this utility, especially for a reason not mentioned here, please tell me about it.
Johan Fredin has been nice enough to provide a port for expiretable. He has also put together a howto on how to use expiretable to block attempts to bruteforce ssh. geek00L has written a short piece on using Snort2c + Expiretable. Thanks to Samuel Ljungkvist and others for ideas.
Enhancements:
- The ability to specify age in minutes, hours, days, etc. was added.
- The age limit was changed to the limit imposed by OpenBSDs nanosleep.
Download (0.006MB)
Added: 2006-03-27 License: BSD License Price:
1306 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 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