hour eyes
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 478
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
WMeyes 1.2
WMeyes is a pretty simple application: it sits in the WindowMaker dock, and a pair of eyes track your cursor. more>>
WMeyes is a pretty simple application: it sits in the WindowMaker dock, and a pair of eyes track your cursor.
Actually, the program should work in all window managers, but then you dont have a dock to sit it in, in which case you might as well use xeyes.
Enhancements:
- I added changes based upon a patch I found at http://www.shiratori.riec.tohoku.ac.jp/~jir/linux/products/wmeyes/index-e.html which allows one to click upon the eyes and run a program.
- Your command will be fed directly to the shell, so that you can use shell metacharacters or what have you, although you will probably need to escape them. Note that wmeyes does not automatically background the program, so you will probably want to background it yourself.
For example:
# run an xmag whenever the eyes are clicked on
wmeyes -w -e xmag &
# show the number of lines with the word "foo" in them in your mail spool
wmeyes -e xmessage `grep -w foo $MAIL | wc -l` &
# make wmeyes stop working until you have finished with a shell
wmeyes -e xterm
# my personal favorite: make the screen blank when the eyes are clicked on
wmeyes -e xset dpms force off
I also added support for multiple displays at once. Use -d, -display, or --display as many times as you like.
<<lessActually, the program should work in all window managers, but then you dont have a dock to sit it in, in which case you might as well use xeyes.
Enhancements:
- I added changes based upon a patch I found at http://www.shiratori.riec.tohoku.ac.jp/~jir/linux/products/wmeyes/index-e.html which allows one to click upon the eyes and run a program.
- Your command will be fed directly to the shell, so that you can use shell metacharacters or what have you, although you will probably need to escape them. Note that wmeyes does not automatically background the program, so you will probably want to background it yourself.
For example:
# run an xmag whenever the eyes are clicked on
wmeyes -w -e xmag &
# show the number of lines with the word "foo" in them in your mail spool
wmeyes -e xmessage `grep -w foo $MAIL | wc -l` &
# make wmeyes stop working until you have finished with a shell
wmeyes -e xterm
# my personal favorite: make the screen blank when the eyes are clicked on
wmeyes -e xset dpms force off
I also added support for multiple displays at once. Use -d, -display, or --display as many times as you like.
Download (0.010MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1103 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
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
Rush Hour Puzzle Solver 0.2.7
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript. more>>
Rush Hour Puzzle Solver project is a Rush Hour puzzle solver that illustrates the solution with PostScript.
Rush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
<<lessRush Hour Puzzle Solver is a small C++ program that reads a Rush Hour board from a text file and produces a nice PostScript file that shows the shortest solution.
Download (0.45MB)
Added: 2006-12-20 License: Freely Distributable Price:
1058 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
Vultures 2.1.0
Vultures is an isometric graphics interface to NetHack and SlashEM. more>>
Vultures is an isometric graphics interface to NetHack and SlashEM.
Vultures is a fork of the now dead "Falcons Eye" project.
An isometric graphics interface to NetHack. The interface was called "Falcons Eye", because the viewpoint resembles a "birds eye view".
This fork of the original "Falcons Eye" is called "Vultures Eye". "Vultures Claw" is the same interface, but for SlashEM
<<lessVultures is a fork of the now dead "Falcons Eye" project.
An isometric graphics interface to NetHack. The interface was called "Falcons Eye", because the viewpoint resembles a "birds eye view".
This fork of the original "Falcons Eye" is called "Vultures Eye". "Vultures Claw" is the same interface, but for SlashEM
Download (35.2MB)
Added: 2006-06-06 License: Other/Proprietary License Price:
1235 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
Forum 0.1
Simple PHP-based forum, it uses MySQL database to store messages. more>>
Simple PHP-based forum, it uses MySQL database to store messages. It supports threads and can be installed from the browser. This is an example of a program written in an hour.
Simply open file forum.php in the browser and follow instructions.
<<lessSimply open file forum.php in the browser and follow instructions.
Download (0.006MB)
Added: 2006-06-15 License: BSD License Price:
1263 downloads
You Only Live Once 005
You Only Live Once is a Seven Day Roguelike game. more>>
You Only Live Once is a Seven Day Roguelike game.
Main features:
- Extremely tactical combat. There is no randomness in combat. You always hit and always do full damage. This means that careful placement is the difference between success and failure.
- Heavy on plot and characterization. A story is told. It is not just kill things for no reason. (If you want to just kill things for no reason, POWDER is recommended)
- Quick to complete. You can likely fully explore and enjoy the game in an hour or two. You are then free to get on with your life.
Enhancements:
- Version 005 sees the mac-curses build not be distributed. Instead, youll have to content yourself by compiling it by hand out of the macport directory.
<<lessMain features:
- Extremely tactical combat. There is no randomness in combat. You always hit and always do full damage. This means that careful placement is the difference between success and failure.
- Heavy on plot and characterization. A story is told. It is not just kill things for no reason. (If you want to just kill things for no reason, POWDER is recommended)
- Quick to complete. You can likely fully explore and enjoy the game in an hour or two. You are then free to get on with your life.
Enhancements:
- Version 005 sees the mac-curses build not be distributed. Instead, youll have to content yourself by compiling it by hand out of the macport directory.
Download (1.1MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1093 downloads
Zorgan 1.2
Zorgan is a Personal Informations Manager. more>>
Zorgan is a Personal Informations Manager (PIM) for Linux. It requires TclX 7.5 / TkX 4.1 or more.
Main features:
- Book: a collection of records, each record having one or more fields. Useful to manage a lot of data of the same kind.
- Todo list: a list of things to do with states completed, not completed and aborted.
- Task list: a list of tasks with date range when it should be done.
- Budget: make a sum of items with associated amounts.
- Notes: a place where to write any text.
- Planner: each hour, day and month may have notes. Presented day by day, one month at a time or a full year calendar.
-
- Useful and practical usages:
-
- Address book
- Rolodex
- Buy list
- Birthday indicators
- List of expenses
- And much more !
-
- All the informations may be exported in ASCII or HTML format in order to be viewed in any text editor, printed or even put on the web.
<<lessMain features:
- Book: a collection of records, each record having one or more fields. Useful to manage a lot of data of the same kind.
- Todo list: a list of things to do with states completed, not completed and aborted.
- Task list: a list of tasks with date range when it should be done.
- Budget: make a sum of items with associated amounts.
- Notes: a place where to write any text.
- Planner: each hour, day and month may have notes. Presented day by day, one month at a time or a full year calendar.
-
- Useful and practical usages:
-
- Address book
- Rolodex
- Buy list
- Birthday indicators
- List of expenses
- And much more !
-
- All the informations may be exported in ASCII or HTML format in order to be viewed in any text editor, printed or even put on the web.
Download (0.05MB)
Added: 2005-04-28 License: GPL (GNU General Public License) Price:
1639 downloads
enotes 1.2
enotes is a small GNU Emacs script to handle appointments. more>>
enotes is a small GNU Emacs script to handle appointments. enotes stores a list of notes, each with a title, a warning date, a date and optionally a long description and a reference file.
A window pops up when a warning time is reached. It is simple (more than calendar and others), yet reliable and very practical.
Enhancements:
- Minor features such as the ability to move the event/warning by one hour in the future with one keystroke.
- One visible change is the ability to add a colored flags for each event.
<<lessA window pops up when a warning time is reached. It is simple (more than calendar and others), yet reliable and very practical.
Enhancements:
- Minor features such as the ability to move the event/warning by one hour in the future with one keystroke.
- One visible change is the ability to add a colored flags for each event.
Download (0.008MB)
Added: 2006-02-07 License: GPL (GNU General Public License) Price:
1445 downloads
boo karamba theme
boo karamba theme has been adapted from the karamba eyes theme, by replaceing the eyes with terasa(boo). more>>
boo karamba theme has been adapted from the karamba eyes theme, by replaceing the eyes with terasa(boo).
<<less Download (0.052MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1240 downloads
Kredentials 0.9.2
Kredentials is a KDE systray applet for keeping Kerberos and AFS authentication tokens current. more>>
Kredentials is a KDE systray applet for keeping Kerberos and AFS authentication tokens current.
Each hour Kredentials renews Kerberos tickets and (optionally) obtains new AFS tokens, and it notifies the user upon final ticket expiration.
Installation:
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.
<<lessEach hour Kredentials renews Kerberos tickets and (optionally) obtains new AFS tokens, and it notifies the user upon final ticket expiration.
Installation:
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.
Download (0.98MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
949 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 hour eyes 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