american idle
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 136
Userinfo 2.2
Userinfo is a console utility to display a variety of information about a local user. more>>
Userinfo is a console utility to display a variety of information about a local user. The project uses loadable modules to perform different tasks which separate the output with a field deliminator.
Some may find it useful in shell scripts to gather information which might be tedious by other methods. It has been tested to run on Linux, FreeBSD, NetBSD, and Solaris.
Usage: ./ui [-vhVL] [-c < filename >] [-t fmt] [-m c] [-F c] [-d]
[[-xX] -O < module1 > [options] [-- [-xX] -O < module2 > [...]]]
[- | username | -f filename] [...]
-d Load the default modules (passwd.so, mail.so, and login.so).
-c Read a configuration file. Can be used more than once.
-O Load a module. Can be used more than once.
-x Chain module1s output to module2s input.
-X Dont output module1s info, only chain it.
-F c Separate output with the specified character (:).
-m c Separate multi-string values with the specified character (,).
-t tf strftime(3) time format (%s).
-f Users are the owners of the specified files.
-L Follow symbolic links.
-v Verbose output when possible (twice for all modules).
-h This help text.
-V Version information
Enhancements:
- The follow symbolic links option was changed from -l to -L.
- The users idle time from the login module is displayed as seconds rather than minutes.
<<lessSome may find it useful in shell scripts to gather information which might be tedious by other methods. It has been tested to run on Linux, FreeBSD, NetBSD, and Solaris.
Usage: ./ui [-vhVL] [-c < filename >] [-t fmt] [-m c] [-F c] [-d]
[[-xX] -O < module1 > [options] [-- [-xX] -O < module2 > [...]]]
[- | username | -f filename] [...]
-d Load the default modules (passwd.so, mail.so, and login.so).
-c Read a configuration file. Can be used more than once.
-O Load a module. Can be used more than once.
-x Chain module1s output to module2s input.
-X Dont output module1s info, only chain it.
-F c Separate output with the specified character (:).
-m c Separate multi-string values with the specified character (,).
-t tf strftime(3) time format (%s).
-f Users are the owners of the specified files.
-L Follow symbolic links.
-v Verbose output when possible (twice for all modules).
-h This help text.
-V Version information
Enhancements:
- The follow symbolic links option was changed from -l to -L.
- The users idle time from the login module is displayed as seconds rather than minutes.
Download (0.35MB)
Added: 2007-03-22 License: GPL (GNU General Public License) Price:
949 downloads
American Political Science: Campaign Simulator 0.1
American Political Science: Campaign Simulator project is a statistically based political campaign simulation game. more>>
American Political Science: Campaign Simulator project is a statistically based political campaign simulation game.
The Campaign Simulator is an attempt to statistically model and predict the outcome of an American presidential election.
Several users assume the roles of competitive candidates and inflict the repercussions of certain decisions on a GSS-based dataset.
The application is written in Java and supports all operating systems with a Java 1.5 VM.
Main features:
- Time is not the only limiting variable. In fact, time may not be the proper limit as most operations may be performed in tandem; an economic system that allows fund raising elements should be implemented.
- The current choices all utilize the same dataset algorithm to effect the populace in similar ways- this set of scripts should be broadened and deepened as they are too high level.
- The Python Architecture needs polishing- the internal IDE is not complete, and the ability to assign scripts to run at differing points in the lifetime of the application has yet to be created.
- The installer should place links on the desktops of Mac and Unix/Linux Systems.
- Some of the small features planned, such as a GUI for dialog creation, have been cut for the deadline and should be added.
<<lessThe Campaign Simulator is an attempt to statistically model and predict the outcome of an American presidential election.
Several users assume the roles of competitive candidates and inflict the repercussions of certain decisions on a GSS-based dataset.
The application is written in Java and supports all operating systems with a Java 1.5 VM.
Main features:
- Time is not the only limiting variable. In fact, time may not be the proper limit as most operations may be performed in tandem; an economic system that allows fund raising elements should be implemented.
- The current choices all utilize the same dataset algorithm to effect the populace in similar ways- this set of scripts should be broadened and deepened as they are too high level.
- The Python Architecture needs polishing- the internal IDE is not complete, and the ability to assign scripts to run at differing points in the lifetime of the application has yet to be created.
- The installer should place links on the desktops of Mac and Unix/Linux Systems.
- Some of the small features planned, such as a GUI for dialog creation, have been cut for the deadline and should be added.
Download (30.0MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1090 downloads
Kernux 1.0
Kernux is a fully kernel-mode http-daemon for Linux. more>>
Kernux project is a fully kernel-mode http-daemon for Linux. Currently Kernux is in its developing stage. Similiar developments in the same area were khttpd by Arjan van de van and Tux web-server by Ingo Molnar.
Khttpd was included in the linux testing kernel 2.5 by Linus Torvalds. But it was actually not in kernel-mode of operation. Also it handled dynamic requests which is assumed to be insecure for the server OS by the Linux kernel developers.
Tux is another implementation of kernel mode http-daemon, being developed by RedHat. The developer is Ingo Molnar, the creator of O(n) scheduler, which control the procsses from Linux kernel version 7.2 onwards.
Kernux works as a kernel module, like a device driver. It uses low-level socket operations to handle the client requests. Kernux consist of a number of threads running parallely in the OS level (kernel_threads). An idle kernel-thread receive a connection from a wait queue, maintained at the Operating System level and serves it.
The pacularity is that, it uses no duplication of sockets what other servers do, but a single socket, whose access by multiple kernel-threads is maintained by a mutual exclusion system. Each thread, after analysing the request type, ie. whether it is static or dynamic, serves the client. The system is presently configured to handle only static requests. The dynamic requests are handled to a user-mode webserver of users choice, like Apache.
<<lessKhttpd was included in the linux testing kernel 2.5 by Linus Torvalds. But it was actually not in kernel-mode of operation. Also it handled dynamic requests which is assumed to be insecure for the server OS by the Linux kernel developers.
Tux is another implementation of kernel mode http-daemon, being developed by RedHat. The developer is Ingo Molnar, the creator of O(n) scheduler, which control the procsses from Linux kernel version 7.2 onwards.
Kernux works as a kernel module, like a device driver. It uses low-level socket operations to handle the client requests. Kernux consist of a number of threads running parallely in the OS level (kernel_threads). An idle kernel-thread receive a connection from a wait queue, maintained at the Operating System level and serves it.
The pacularity is that, it uses no duplication of sockets what other servers do, but a single socket, whose access by multiple kernel-threads is maintained by a mutual exclusion system. Each thread, after analysing the request type, ie. whether it is static or dynamic, serves the client. The system is presently configured to handle only static requests. The dynamic requests are handled to a user-mode webserver of users choice, like Apache.
Download (0.006MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1268 downloads
Aorta 0.05
Aorta project is a load-balancing clustered P2P application. more>>
Aorta project is a load-balancing clustered P2P application.
It executes Tasklets (which have the ability to split themselves into sub tasks that can be executed in pararell).
A typical cluster contains of a LAN with 1-256 computers, each one running aorta.
A Tasklet can be of any type ranging from encoding MP3s, Genomic DNA Alignment, or simply to rendering Web pages for high speed/heavily loaded Web sites.
You can make functions calls to C/C++, applications like Matlab, etc.
Main features:
- PingTasklet simply traversers your net of aortas.
- ImageTasklet , simply rescale imagecolours.
- EncodeTasklet, spreads out mp3 encode in your LAN.
- SimpleSort , Merge sort by Gretsam.
Enhancements:
- Refactored to one base class Moblet,the smalles code and data entity moving around
- Improved Moblet Receiver and executing. Minimizing worker idle time
- startup script aorta.sh improved now can start with remote debug params
- Aorta core can now be used as an API to emit/delegete Moblets from an user created application
- Preferences stuff should work on a MS platform now
- Herve added DocBook to buildsystem
- Gretsam added a MergeSorter Tasklet
<<lessIt executes Tasklets (which have the ability to split themselves into sub tasks that can be executed in pararell).
A typical cluster contains of a LAN with 1-256 computers, each one running aorta.
A Tasklet can be of any type ranging from encoding MP3s, Genomic DNA Alignment, or simply to rendering Web pages for high speed/heavily loaded Web sites.
You can make functions calls to C/C++, applications like Matlab, etc.
Main features:
- PingTasklet simply traversers your net of aortas.
- ImageTasklet , simply rescale imagecolours.
- EncodeTasklet, spreads out mp3 encode in your LAN.
- SimpleSort , Merge sort by Gretsam.
Enhancements:
- Refactored to one base class Moblet,the smalles code and data entity moving around
- Improved Moblet Receiver and executing. Minimizing worker idle time
- startup script aorta.sh improved now can start with remote debug params
- Aorta core can now be used as an API to emit/delegete Moblets from an user created application
- Preferences stuff should work on a MS platform now
- Herve added DocBook to buildsystem
- Gretsam added a MergeSorter Tasklet
Download (2.2MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1110 downloads
Ballsmacker 1.0.0
Ballsmacker is a virtual pool game. more>>
Ballsmacker is a virtual pool game.
Its is a virtual pool game rendered in OpenGL.
Main features:
- Support for British pool rules
- Sound effects
- Physics engine which scales according to rendering speed
- Smooth edged pool tables defined using SVG paths
- Supports British (yellow/red) and American (striped/unstriped) textured balls.
<<lessIts is a virtual pool game rendered in OpenGL.
Main features:
- Support for British pool rules
- Sound effects
- Physics engine which scales according to rendering speed
- Smooth edged pool tables defined using SVG paths
- Supports British (yellow/red) and American (striped/unstriped) textured balls.
Download (0.56MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1017 downloads
number 2.30
number is a perl script that will print the English name of a number. more>>
number is a perl script that will print the English name of a number. One can print names of extremely large numbers (e.g. 1e1234567). Number can be run on the command line, or as a CGI script when run as number.cgi.
Number prints names in both the American and European naming system. It can also print the decimal expansion of a number in either naming system.
<<lessNumber prints names in both the American and European naming system. It can also print the decimal expansion of a number in either naming system.
Download (0.028MB)
Added: 2006-09-19 License: Freely Distributable Price:
1130 downloads
Citation 1.7
Citation project is a web based tool for bibliographic conversions. more>>
Citation project is a web based tool for bibliographic conversions.
Citation is a bibliographical conversion program designed to transform data between several different formats including GTEC, Refer, and Bibtex.
This program saves the researcher time by keeping unnecessary formatting from taking up their time. Currently, Citation is written in Java.
The use of Java moves much of the processing of the program to the users machine.
After downloading the Citation applet, the user is free to log off the network, but can still continue using the Citation applet.
Main features:
- Citation is available in both applet format and command line driven application.
- The Citation applet has the ability to convert between single or multiple entries.
- The Citation application is specifically designed for batch processing of files.
- Easy to use interface.
- Citation 1.7 supports format conversion from: INSPEC, ENGI, GTEC, PSYCH, Refer, and Bibtex to: Refer, Bibtex, HFS (Handbook for Scholars), Chicago Manual of Style, MLA (Modern Language Association), APA (American Psychology Association), and Galileo formats: ABI and Periodicals.
- Citation 1.7 has added new input manual format where user can add his or her own inputs in the input boxes rather than cut and pasting. This also supports format conversion mentioned previously.
<<lessCitation is a bibliographical conversion program designed to transform data between several different formats including GTEC, Refer, and Bibtex.
This program saves the researcher time by keeping unnecessary formatting from taking up their time. Currently, Citation is written in Java.
The use of Java moves much of the processing of the program to the users machine.
After downloading the Citation applet, the user is free to log off the network, but can still continue using the Citation applet.
Main features:
- Citation is available in both applet format and command line driven application.
- The Citation applet has the ability to convert between single or multiple entries.
- The Citation application is specifically designed for batch processing of files.
- Easy to use interface.
- Citation 1.7 supports format conversion from: INSPEC, ENGI, GTEC, PSYCH, Refer, and Bibtex to: Refer, Bibtex, HFS (Handbook for Scholars), Chicago Manual of Style, MLA (Modern Language Association), APA (American Psychology Association), and Galileo formats: ABI and Periodicals.
- Citation 1.7 has added new input manual format where user can add his or her own inputs in the input boxes rather than cut and pasting. This also supports format conversion mentioned previously.
Download (MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1099 downloads
Parallel::Pvm 1.4.0
Parallel::Pvm is a Perl extension for the Parallel Virtual Machine (PVM) Message Passing System. more>>
Parallel::Pvm is a Perl extension for the Parallel Virtual Machine (PVM) Message Passing System.
SYNOPSIS
use Parallel::Pvm;
The PVM message passing system enables a programmer to configure a group of (possibly heterogenous) computers connected by a network into a parallel virtual machine. The system was developed by the University of Tennessee, Oak Ridge National Laboratory and Emory University.
Using PVM, applications can be developed which spawns parallel processes onto nodes in the virtual machine to perform specific tasks. These parallel tasks can also periodically exchange information using a set of message passing functions developed for the system.
PVM applications have mostly been developed in the scientific and engineering fields. However applications for real-time and client/server systems can also be developed. PVM simply provides a convenient way for managing parallel tasks and communications without need for rexec or socket level programming.
As a utility, PVM enables an organisation to leverage on the computers already available for parallel processing. Parallel applications can be started during non-peak hours to utilise idle CPU cycles. Or dedicated workstation clusters connected via a high performance network like ATM can be used for high performance computing.
It is recommended that you read the PVM manual pages and the book "PVM: Parallel Virtual Machine, A userss guide and tutorial for networked parallel computing". Both the PVM system and the book can be obtained from the HTTP address http://www.epm.ornl.gov/pvm.
For the rest of this document we will provide a tutorial introduction to developing PVM applications using perl. The interface for some of the PVM functions have been changed of course to give it a more perl-like feel.
Remember think perl think parallel! Good Luck!
<<lessSYNOPSIS
use Parallel::Pvm;
The PVM message passing system enables a programmer to configure a group of (possibly heterogenous) computers connected by a network into a parallel virtual machine. The system was developed by the University of Tennessee, Oak Ridge National Laboratory and Emory University.
Using PVM, applications can be developed which spawns parallel processes onto nodes in the virtual machine to perform specific tasks. These parallel tasks can also periodically exchange information using a set of message passing functions developed for the system.
PVM applications have mostly been developed in the scientific and engineering fields. However applications for real-time and client/server systems can also be developed. PVM simply provides a convenient way for managing parallel tasks and communications without need for rexec or socket level programming.
As a utility, PVM enables an organisation to leverage on the computers already available for parallel processing. Parallel applications can be started during non-peak hours to utilise idle CPU cycles. Or dedicated workstation clusters connected via a high performance network like ATM can be used for high performance computing.
It is recommended that you read the PVM manual pages and the book "PVM: Parallel Virtual Machine, A userss guide and tutorial for networked parallel computing". Both the PVM system and the book can be obtained from the HTTP address http://www.epm.ornl.gov/pvm.
For the rest of this document we will provide a tutorial introduction to developing PVM applications using perl. The interface for some of the PVM functions have been changed of course to give it a more perl-like feel.
Remember think perl think parallel! Good Luck!
Download (0.019MB)
Added: 2007-04-18 License: Perl Artistic License Price:
931 downloads
American Express Expense Report to QIF Converter 1.0
American Express Expense Report to QIF Converter is a utility that converts American Express expense reports into QIF. more>>
American Express Expense Report to QIF Converter project is a utility that converts American Express expense reports into QIF.
There are three main reasons:
1. American Express only offers QIF files for the last 6 months of activity whereas the expense reports go back 2 years. You can also run a report with a custom 1- to 12-month time period within 24 months of the current calendar month.
2. American Express QIF files have limited to no "categorization" whereas the expense report categorizes each transaction with a "Merchant Category" and "Subcategory".
3. American Express QIF files do not indicate which credit card in a multi-card account performed the transaction.
Main features:
- Inserts card owner and last 5 digits of the credit card in the memo field
- Reads config file for user defined rules so transactions can be automatically mapped to different accounts in your accounting software. Mapping can be based on:
- Credit card owner
- Vendor name
- AMEX "Merchant Category" and "Subcategory"
- Any combination of the above
- Sanitizes and cleans up vendor names
- Has the ability to add a prefix to all vendor names
<<lessThere are three main reasons:
1. American Express only offers QIF files for the last 6 months of activity whereas the expense reports go back 2 years. You can also run a report with a custom 1- to 12-month time period within 24 months of the current calendar month.
2. American Express QIF files have limited to no "categorization" whereas the expense report categorizes each transaction with a "Merchant Category" and "Subcategory".
3. American Express QIF files do not indicate which credit card in a multi-card account performed the transaction.
Main features:
- Inserts card owner and last 5 digits of the credit card in the memo field
- Reads config file for user defined rules so transactions can be automatically mapped to different accounts in your accounting software. Mapping can be based on:
- Credit card owner
- Vendor name
- AMEX "Merchant Category" and "Subcategory"
- Any combination of the above
- Sanitizes and cleans up vendor names
- Has the ability to add a prefix to all vendor names
Download (0.012MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1363 downloads
Barrage 1.0.2
Barrage is a rather violent action game with the objective to kill and destroy as many targets as possible within 3 minutes. more>>
Barrage is a rather violent action game with the objective to kill and destroy as many targets as possible within 3 minutes. You control a gun that may either fire small or large grenades at soldiers, jeeps and tanks.
Targets are fast paced and require careful aiming as it takes half a second to reload the gun. Additionally you have to keep an eye on your ammo and reload in time. Useful to kill some minutes of idle time.
And yes, the graphics look similiar to Command&Conquer but they are self-pixeled. I just used a screenshot of C&C as sketch. And no, none of the sounds are taken from C&C. I created all of them by myself except for the fonts which come from Karl Bartel.
<<lessTargets are fast paced and require careful aiming as it takes half a second to reload the gun. Additionally you have to keep an eye on your ammo and reload in time. Useful to kill some minutes of idle time.
And yes, the graphics look similiar to Command&Conquer but they are self-pixeled. I just used a screenshot of C&C as sketch. And no, none of the sounds are taken from C&C. I created all of them by myself except for the fonts which come from Karl Bartel.
Download (0.39MB)
Added: 2005-04-02 License: GPL (GNU General Public License) Price:
1668 downloads
Festival 1.96
Festival offers a general framework for building speech synthesis systems as well as including examples of various modules. more>>
Festival offers a general framework for building speech synthesis systems as well as including examples of various modules. As a whole it offers full text to speech through a number APIs: from shell level, though a Scheme command interpreter, as a C++ library, from Java, and an Emacs interface.
This project is multi-lingual (currently English (British and American), and Spanish) though English is the most advanced. Other groups release new languages for the system. And full tools and documentation for build new voices are available through Carnegie Mellons FestVox project (http://festvox.org)
The system is written in C++ and uses the Edinburgh Speech Tools Library for low level architecture and has a Scheme (SIOD) based command interpreter for control. Documentation is given in the FSF texinfo format which can generate, a printed manual, info files and HTML.
Festival is free software. Festival and the speech tools are distributed under an X11-type licence allowing unrestricted commercial and non-commercial use alike.
Main features:
- Backwards compatibility with Festival 1.4.3
- English (British and American), Spanish and Welsh text to speech
Externally configurable language independent modules:
- phonesets
- lexicons
- letter-to-sound rules
- tokenizing
- part of speech tagging
- intonation and duration
Waveform synthesizers:
- diphone based: residual excited LPC (and PSOLA not for distribution)
- MBROLA database support.
- distributed under a free X11-type licence
- generalisation of stats modules, ngram, CART, wfst with viterbi so they can be shared more easily
- Initial JSAPI support
- XML load for Relations
- Portable (Unix) distribution
- On-line documentation
- SABLE markup, Emacs, client/server (including Java), scripting interfaces.
Enhancements:
- HTS hidden Markov model based synthesis engine from Nagoya Institute of Technology.
- Multisyn general purpose unit selection synthesis engine from CSTR
- support for gcc 3.2 and 3.3, and intel 8.0
- clunits unit selection improvements
- Apple OS X support
- bug fixes galore.
<<lessThis project is multi-lingual (currently English (British and American), and Spanish) though English is the most advanced. Other groups release new languages for the system. And full tools and documentation for build new voices are available through Carnegie Mellons FestVox project (http://festvox.org)
The system is written in C++ and uses the Edinburgh Speech Tools Library for low level architecture and has a Scheme (SIOD) based command interpreter for control. Documentation is given in the FSF texinfo format which can generate, a printed manual, info files and HTML.
Festival is free software. Festival and the speech tools are distributed under an X11-type licence allowing unrestricted commercial and non-commercial use alike.
Main features:
- Backwards compatibility with Festival 1.4.3
- English (British and American), Spanish and Welsh text to speech
Externally configurable language independent modules:
- phonesets
- lexicons
- letter-to-sound rules
- tokenizing
- part of speech tagging
- intonation and duration
Waveform synthesizers:
- diphone based: residual excited LPC (and PSOLA not for distribution)
- MBROLA database support.
- distributed under a free X11-type licence
- generalisation of stats modules, ngram, CART, wfst with viterbi so they can be shared more easily
- Initial JSAPI support
- XML load for Relations
- Portable (Unix) distribution
- On-line documentation
- SABLE markup, Emacs, client/server (including Java), scripting interfaces.
Enhancements:
- HTS hidden Markov model based synthesis engine from Nagoya Institute of Technology.
- Multisyn general purpose unit selection synthesis engine from CSTR
- support for gcc 3.2 and 3.3, and intel 8.0
- clunits unit selection improvements
- Apple OS X support
- bug fixes galore.
Download (MB)
Added: 2007-07-11 License: MIT/X Consortium License Price:
846 downloads
Solaris::Kstat 0.05a
Solaris::Kstat is a Perl module to access Solaris Kstats from Perl. more>>
Solaris::Kstat is a Perl module to access Solaris Kstats from Perl.
SYNOPSIS
use Solaris::Kstat;
my $kstat = Solaris::Kstat->new();
my ($usr1, $sys1, $wio1, $idle1) =
@{$kstat->{cpu_stat}{0}{cpu_stat0}}{qw(user kernel wait idle)};
print("usr sys wio idlen");
while (1)
{
sleep 5;
if ($kstat->update()) { print("Configuration changedn"); }
my ($usr2, $sys2, $wio2, $idle2) =
@{$kstat->{cpu_stat}{0}{cpu_stat0}}{qw(user kernel wait idle)};
printf(" %.2d %.2d %.2d %.2dn",
($usr2 - $usr1) / 5, ($sys2 - $sys1) / 5,
($wio2 - $wio1) / 5, ($idle2 - $idle1) / 5);
$usr1 = $usr2; $sys1 = $sys2; $wio1 = $wio2; $idle1 = $idle2;
}
This module provides a tied hash interface to the Solaris kstats library. The kstats library allows you to get access to all the stats used by sar, iostat, vmstat etc, plus a lot of others that arent accessible through the usual utilities.
Solaris categorises statistics using a 3-part key - module, instance and name. For example, the root disk stats can be found under sd.0.sd0, and the cpu statistics can be found under cpu_stat.0.cpu_stat0, as in the above example. The method Solaris::Kstats-new()> creates a new 3-layer tree of perl hashes with exactly the same structure - i.e. the stats for disk 0 can be accessed as $ks-{sd}{0}{sd0}>. The bottom (4th) layer is a tied hash used to hold the individual statistics values for a particular system resource.
Creating a Solaris::Kstat object doesnt actually read all the possible statistics in, as this would be horribly slow and inefficient. Instead it creates a 3-layer structure as described above, and only reads in the individual statistics as you reference them. For example, accessing $ks-{sd}{0}{sd0}{reads} will read in all the statistics for sd0, including writes, bytes read/written, service times etc. Once you have accessed a bottom level statitics value, calling $ks->update() will automatically update all the individual values of any statistics that you have accessed.
Note that there are two values per bottom-level hash that can be read without causing the full set of statistics to be read from the kernel. These are "class" which is the kstat class of the statistics and "crtime" which is the time that the kstat was created. See kstat(3K) for full details of these fields.
<<lessSYNOPSIS
use Solaris::Kstat;
my $kstat = Solaris::Kstat->new();
my ($usr1, $sys1, $wio1, $idle1) =
@{$kstat->{cpu_stat}{0}{cpu_stat0}}{qw(user kernel wait idle)};
print("usr sys wio idlen");
while (1)
{
sleep 5;
if ($kstat->update()) { print("Configuration changedn"); }
my ($usr2, $sys2, $wio2, $idle2) =
@{$kstat->{cpu_stat}{0}{cpu_stat0}}{qw(user kernel wait idle)};
printf(" %.2d %.2d %.2d %.2dn",
($usr2 - $usr1) / 5, ($sys2 - $sys1) / 5,
($wio2 - $wio1) / 5, ($idle2 - $idle1) / 5);
$usr1 = $usr2; $sys1 = $sys2; $wio1 = $wio2; $idle1 = $idle2;
}
This module provides a tied hash interface to the Solaris kstats library. The kstats library allows you to get access to all the stats used by sar, iostat, vmstat etc, plus a lot of others that arent accessible through the usual utilities.
Solaris categorises statistics using a 3-part key - module, instance and name. For example, the root disk stats can be found under sd.0.sd0, and the cpu statistics can be found under cpu_stat.0.cpu_stat0, as in the above example. The method Solaris::Kstats-new()> creates a new 3-layer tree of perl hashes with exactly the same structure - i.e. the stats for disk 0 can be accessed as $ks-{sd}{0}{sd0}>. The bottom (4th) layer is a tied hash used to hold the individual statistics values for a particular system resource.
Creating a Solaris::Kstat object doesnt actually read all the possible statistics in, as this would be horribly slow and inefficient. Instead it creates a 3-layer structure as described above, and only reads in the individual statistics as you reference them. For example, accessing $ks-{sd}{0}{sd0}{reads} will read in all the statistics for sd0, including writes, bytes read/written, service times etc. Once you have accessed a bottom level statitics value, calling $ks->update() will automatically update all the individual values of any statistics that you have accessed.
Note that there are two values per bottom-level hash that can be read without causing the full set of statistics to be read from the kernel. These are "class" which is the kstat class of the statistics and "crtime" which is the time that the kstat was created. See kstat(3K) for full details of these fields.
Download (0.024MB)
Added: 2007-06-13 License: Perl Artistic License Price:
867 downloads
AIM 1.5
AIM is an instant messenger. more>>
"You don`t have to be an America Online member to experience the immediate cross-Internet communication made possible by AOL Instant Messenger.
This program allows Internet users to communicate via private, personalized text messages.
The program indicates when friends, family members, and business colleagues are online, making Internet communications faster, easier, and more efficient.
AOL Instant Messenger combines AOL`s popular Buddy List and Instant Message features, enabling users to send and respond to messages immediately."
Enhancements:
- Improved Popups Preferences
- Support for @mac.com addresses
- The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
- File Transfer (with Drag&Drop support)
- Displays idle time
- Ability to install anywhere. (Extract everything into a single directory and then run aim with option "--install_dir %path" where %path is the path to directory containing all the libraries)
<<lessThis program allows Internet users to communicate via private, personalized text messages.
The program indicates when friends, family members, and business colleagues are online, making Internet communications faster, easier, and more efficient.
AOL Instant Messenger combines AOL`s popular Buddy List and Instant Message features, enabling users to send and respond to messages immediately."
Enhancements:
- Improved Popups Preferences
- Support for @mac.com addresses
- The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
- File Transfer (with Drag&Drop support)
- Displays idle time
- Ability to install anywhere. (Extract everything into a single directory and then run aim with option "--install_dir %path" where %path is the path to directory containing all the libraries)
Download (1.07MB)
Added: 2005-04-25 License: LGPL (GNU Lesser General Public License) Price:
1714 downloads
Satellite 1.0.2
Satellite can track many remote machines with dynamic IP addresses in situations where public DNS services are inappropriate. more>>
Satellite can track many remote machines with dynamic IP addresses in situations where public DNS services are inappropriate. Satellite can log and alert an admin immediately when a site comes online or needs attention.
The Satellite archive also includes an RPM spec file. RPM users can build a binary package ready to install by running:
rpm -tb satellite-1.0.2.tar.gz
You will find the binary rpm under /usr/src/rpm/RPMS/i386 or /usr/src/redhat/RPMS/i386.
Reasons for Satellite
Public DNS services are often used to track clients with changing IP addresses, but DNS solutions suffer from several problems:
Failure
Public DNS servers regularly fail due to overloading and system administration problems.
No notification
There is no notification when a system goes online. Instead you must poll DNS regularly to see when a system comes online.
Latency
Updating can take from several minutes to several hours before the change is made public. On systems with small idle timeouts it is often impossible to find the current IP address via DNS.
No history
Public DNS services only keep track of the current address and dont record past times or changes in a central location.
Enhancements:
- Minor code improvements. -e no longer searches PATH.
- --with-port removed. Default now found from /etc/services.
- Documentation updates
<<lessThe Satellite archive also includes an RPM spec file. RPM users can build a binary package ready to install by running:
rpm -tb satellite-1.0.2.tar.gz
You will find the binary rpm under /usr/src/rpm/RPMS/i386 or /usr/src/redhat/RPMS/i386.
Reasons for Satellite
Public DNS services are often used to track clients with changing IP addresses, but DNS solutions suffer from several problems:
Failure
Public DNS servers regularly fail due to overloading and system administration problems.
No notification
There is no notification when a system goes online. Instead you must poll DNS regularly to see when a system comes online.
Latency
Updating can take from several minutes to several hours before the change is made public. On systems with small idle timeouts it is often impossible to find the current IP address via DNS.
No history
Public DNS services only keep track of the current address and dont record past times or changes in a central location.
Enhancements:
- Minor code improvements. -e no longer searches PATH.
- --with-port removed. Default now found from /etc/services.
- Documentation updates
Download (0.052MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1201 downloads
ADS Dexter 0.40
ADS Dexter is a utility for extracting data from scanned graphs. more>>
The following is an excerpt from a poster presented at the American Astronomical Societys 2000 Summer meeting in Rochester, NY.
ADS roughly 1,000,000 scanned pages contain numerous diagrams and figures for which the original data sets are lost or inaccessible. Having scans for the figures invites digitizing the data points to recover at least a part of these data.
Performing this digitization automatically is still beyond the capabilities of current OCR systems, but the computer can ease this process for a human.
This was the starting point for Dexter, a Java applet that runs in the users browsers and provides an interface for selecting the part of the page that is of interest. On that selection, coordinate axes, points and error bars can be marked and, of course, corrected. [...]
In the future, we plan to implement some recognition algorithms that would, e.g., trace a line for the user or automatically search for markers.
<<lessADS roughly 1,000,000 scanned pages contain numerous diagrams and figures for which the original data sets are lost or inaccessible. Having scans for the figures invites digitizing the data points to recover at least a part of these data.
Performing this digitization automatically is still beyond the capabilities of current OCR systems, but the computer can ease this process for a human.
This was the starting point for Dexter, a Java applet that runs in the users browsers and provides an interface for selecting the part of the page that is of interest. On that selection, coordinate axes, points and error bars can be marked and, of course, corrected. [...]
In the future, we plan to implement some recognition algorithms that would, e.g., trace a line for the user or automatically search for markers.
Download (0.079MB)
Added: 2005-05-20 License: GPL (GNU General Public License) Price:
1620 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 american idle 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