Main > Free Download Search >

Free asithappens 0.35 software for linux

asithappens 0.35

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 27
AsItHappens 0.35

AsItHappens 0.35


AsItHappens is a real-time network performance monitor. more>>
AsItHappens is a real-time network performance monitor. AsItHappens project collects data from devices over a network and displays them on a graph, optionally storing collected data in a database for later retrieval.
Current collection types include network response, bandwidth, Cisco NBAR, and Cisco NetFlow. AsItHappens polls data in regular intervals, which can be as low as every second, to give immediate feedback on network performance.
Main features:
- Granular collection of data to the point of collecting every second
- Real-time graphing of collected data
- Response data collection via ICMP or TCP/UDP echo
- Inbound and outbound bandwidth data collection via SNMP
- Cisco NBAR (Network-based Application Recognition) Top-N collection via SNMP
- Cisco NetFlow Top-N collection via SNMP with flow grouping and match criteria options
- Optional database storage of collection sessions
- Retrieval of user-defined time intervals within a stored collection session
- Resizable graphing window with automatic scaling of graph data to fit
- Options to define how to aggregate or interpolate data when graphing e.g. to show maximums instead of averages
- The ability to add text labels to the graphing panel to explain desired areas of the graph
<<less
Download (1.9MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
925 downloads
JASA 0.35

JASA 0.35


JASA project is a high-performance auction simulation software in Java. more>>
JASA project is a high-performance auction simulation software in Java.
It is designed for performing experiments in agent-based computational economics. JASA implements variants of the double-auction market, which is commonly used to run real-world market places such as stock exchanges.
It is designed to be highly extensible, so that other types of auctions can easily be implemented. The software also provides base classes for implementing simple adaptive trading agents.
It was developed for research carried out at the Agent Applications, Research and Technology group of Liverpool University.
Enhancements:
- An implementation of the Gjerstad-Dickhaut strategy has been added, contributed by Marek Marcinkiewicz; see uk.ac.liv.auction.agent.GDStrategy.
- An implemention of the ZI-U strategy has been added, contributed by Jinzhong Niu; see uk.ac.liv.auction.agent.RandomUnconstrainedStrategy
- A control strategy that bids at the true equilibrium-price has been added; see uk.ac.liv.auction.agent.EquilibriumPriceStrategy
- A strategy has been added that decorates another strategy by bidding a markup on top of the component strategy see uk.ac.liv.auction.agent.MarkupStrategyDecorator
- The auction console View menu now allows the following graphs to be displayed:
- the true supply and demand of all agents in the auction
- the reported supply and demand of all agents in the auction
- the current auction state (matched and unmatched offers)
<<less
Download (27.0MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1021 downloads
SHFS 0.35

SHFS 0.35


SHFS it mounts remote directories using a shell connection. more>>
Shfs is a simple and easy to use Linux kernel module which allows you to mount remote filesystems using a plain shell (ssh) connection.
When using shfs, you can access all remote files just like the local ones, only the access is governed through the transport security of ssh.
Main features:
- file cache for access speedup
- perl and shell code for the remote (server) side
- could preserve uid/gid (root connection)
- number of remote host platforms (Linux, Solaris, Cygwin, ...)
- Linux kernel 2.4.10+ and 2.6
- arbitrary command used for connection (instead of ssh)
- persistent connection (reconnect after ssh dies)
Installation
Shfs stands for SHell File System. It consists of simple Linux kernel module (similar to smbfs, ftpfs or ncpfs) and a userspace mount utility. The general usage:
$ shfsmount user@host /local/path
user@host password:
$ cd /local/path
Usage
The shfsmount command has a number of options, please refer to the manpage for a more detailed description.
shfsmount was designed to have the same interface as the mount command. make install should have created the symlink /sbin/mount.shfs -> shfsmount so you will be able to call
mount -t shfs user@host /mnt
exactly as with other filesystems. You can even use an automounter to connect to a server automatically (think about using ssh keys).
If you would like all users to be able to mount (umount) remote dirs using shfs, set the suid bit on /usr/bin/shfsmount and shfsumount. Security checks are similar to smbmount.
<<less
Download (0.12MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1661 downloads
MaraDNS 1.0.35

MaraDNS 1.0.35


MaraDNS is a fully functional DNS server. more>>
MaraDNS is a package that implements the Domain Name Service (DNS), an essential internet service.
MaraDNS is intended for environments where a DNS server must be secure and where the server must use the absolute minimum number of resources possible.
MaraDNS was created in response to issues people had with the DNS servers available in early 2001; and has the following design goals:
- Security-aware programming. A DNS server needs to be secure. I have a number of security features in the code, including:
1. The code uses a special string library which is resistant to buffer overflows.
2. The code, if started as root, mandates running as an unprivledged user in a chroot() jail.
- Open-Source. The 1.0 release of the DNS server is public-domain code; the next release will be released under a very liberal BSD-style license.
- Simplicity. This DNS server has the minimum number of features needed to correctly act as an authoritative and/or recursive name server.
Enhancements:
- The AES variant that MaraDNS uses has been hardened against some cache timing attacks that cryptographers have recently published.
<<less
Download (0.47MB)
Added: 2005-11-29 License: BSD License Price:
1426 downloads
Class::MOP 0.35

Class::MOP 0.35


Class::MOP is a Meta Object Protocol for Perl 5. more>>
Class::MOP is a Meta Object Protocol for Perl 5.

SYNOPSIS

# ... This will come later, for now see
# the other SYNOPSIS for more information

This module is an attempt to create a meta object protocol for the Perl 5 object system. It makes no attempt to change the behavior or characteristics of the Perl 5 object system, only to create a protocol for its manipulation and introspection.

That said, it does attempt to create the tools for building a rich set of extensions to the Perl 5 object system. Every attempt has been made for these tools to keep to the spirit of the Perl 5 object system that we all know and love.

This documentation is admittedly sparse on details, as time permits I will try to improve them. For now, I suggest looking at the items listed in the "SEE ALSO" section for more information. In particular the book "The Art of the Meta Object Protocol" was very influential in the development of this system.

What is a Meta Object Protocol?

A meta object protocol is an API to an object system.

To be more specific, it is a set of abstractions of the components of an object system (typically things like; classes, object, methods, object attributes, etc.). These abstractions can then be used to both inspect and manipulate the object system which they describe.

It can be said that there are two MOPs for any object system; the implicit MOP, and the explicit MOP. The implicit MOP handles things like method dispatch or inheritance, which happen automatically as part of how the object system works. The explicit MOP typically handles the introspection/reflection features of the object system. All object systems have implicit MOPs, without one, they would not work. Explict MOPs however as less common, and depending on the language can vary from restrictive (Reflection in Java or C#) to wide open (CLOS is a perfect example).

<<less
Download (0.072MB)
Added: 2006-10-20 License: Perl Artistic License Price:
1099 downloads
mod_dsp 0.35

mod_dsp 0.35


mod_dsp is an Apache module for Davor Server Pages. more>>
mod_dsp is an Apache module for Davor Server Pages.
DSP stands for Davor Server Pages, the Apache HTTP Server module, that provides PL/SQL Server Scripting and features an efficient authorization and authentication framework on the Oracle database tier.
Main features:
- PL/SQL Server scripting
- Script preprocessor / variable injection
- Efficient authentication / authorization framework
- Flexible and easy configuration
- Free software, open source
Components:
- mod_dsp apache module
- DSP comaptible PL/SQL package
<<less
Download (0.20MB)
Added: 2006-03-31 License: The Apache License 2.0 Price:
1302 downloads
PBS::GraphViz 0.35

PBS::GraphViz 0.35


GraphViz is a Perl interface to the GraphViz graphing tool. more>>
GraphViz is a Perl interface to the GraphViz graphing tool.

SYNOPSIS

use GraphViz;

my $g = GraphViz->new();

$g->add_node(London);
$g->add_node(Paris, label => City ofnlurve);
$g->add_node(New York);

$g->add_edge(London => Paris);
$g->add_edge(London => New York, label => Far);
$g->add_edge(Paris => London);

print $g->as_png;

This module provides an interface to layout and image generation of directed and undirected graphs in a variety of formats (PostScript, PNG, etc.) using the "dot", "neato", "twopi", "circo" and "fdp" programs from the GraphViz project (http://www.graphviz.org/ or http://www.research.att.com/sw/tools/graphviz/).

<<less
Download (0.33MB)
Added: 2006-08-25 License: Perl Artistic License Price:
1155 downloads
Net::GPSD 0.35

Net::GPSD 0.35


Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon. more>>
Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon.

SYNOPSIS

use Net::GPSD;
$obj=Net::GPSD->new;
my $point=$obj->get;
print $point->latlon. "n";
or
use Net::GPSD;
$obj=Net::GPSD->new;
$obj->subscribe();

Net::GPSD provides an object client interface to the gpsd server daemon. gpsd is an open source GPS deamon from http://gpsd.berlios.de/.

For example the get method returns a blessed hash reference like

{S=>[?|0|1|2],
P=>[lat,lon]}

Fortunately, there are various methods that hide this hash from the user.

<<less
Download (0.015MB)
Added: 2007-04-04 License: Perl Artistic License Price:
936 downloads
Generator 0.35

Generator 0.35


Generator project is a Sega Genesis (MegaDrive) emulator. more>>
Generator project is a Sega Genesis (MegaDrive) emulator.
Generator is a portable Sega Genesis (Mega Drive) emulator with gtk/SDL, SVGAlib and Tcl/Tk user interfaces.
It features its own unique portable 68000 core processor emulation enhanced by recompilation techniques.
Enhancements:
- [CORE] Support for Genecyst patch files / Game Genie
- [CORE] Support for AVI uncompressed and MJPEG output
- [68000] Re-added busy wait removal that got lost
- [SOUND] Added configurable single-pole low-pass filter
- [CORE] Added autoconf/automake version checks
- [VDP] Fix FIFO busy flag (Nicholas Van Veen)
- [SOUND] Various further endian improvements from Bastien Nocera
- and andi@fischlustig.de (Debian)
- [SOUND] Various BSD compatibility improvements from
- Alistair Crooks and Michael Core (NetBSD)
- [UI] SDL Joystick support from Matthew N. Dodd (FreeBSD)
- [68000] Do pre-decrement with two reads (Steve Snake)
- [68000] Make TAS not write (Steve Snake) fixes Gargoyles, Ex Mutant
- [68000] Re-write ABCD,etc based on info from Bart Trzynadlowski
- [68000] Implement missing BTST op-code (fixes NHL Hockey 94)
<<less
Download (0.45MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1094 downloads
Glarf 0.35

Glarf 0.35


Glarf is a game with weird creatures on platforms shooting weird things. more>>
Glarf is the working title of a video game. It is a platformer like Mario or MegaMan or Contra, but thats not the Big Idea.

The Big Idea is user created content, radical trust, randomness, and play. Weapon crafting is a key example.

Glarf can shoot things - fireballs, bouncy globs, liquids. When Glarf consumes a powerup, the things he shoots inherit some of that powerups properties, by being selective in what you eat or throw away, you can create weapons with powerful and interesting effects.

Eventually, players will be able to modify the code that governs the behaviour of object in the game world. And theyll be able to share it safely with other players. But for now were just working on getting a first level done that serves as a tutorial and is still fun.

<<less
Download (2.9MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1445 downloads
gDesklets 0.35.3

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.

<<less
Download (0.70MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1201 downloads
The EDDIE Tool 0.35

The EDDIE Tool 0.35


The EDDIE Tool is a system monitoring, security and performance analysis agent developed entirely in Python. more>>
The EDDIE Tool is a system monitoring, security and performance analysis agent developed entirely in Python. It runs standalone on a system and performs checks and other actions as defined by an extensible configuration.
The EDDIE Tool can perform all basic system monitoring checks, such as: filesystem; processes; system load; and network configuration.
It can also perform such network monitoring tasks as: ping checks; HTTP checks; POP3 tests; SNMP queries; RADIUS authentication tests; and customized TCP port checks.
Finally, a few checks lend themselves to security monitoring: watching files for changes; and scanning logfiles.
The EDDIE Tool can also send any collected statistic to RRD files to be displayed graphically by any standard RRD tool.
No need to run multiple monitoring and data collection agents. Monitoring rules are just like Python expressions and can be as simple or as complex as needed. Advanced alert control functionality such as exponential back-off and dependencies are also standard.
Enhancements:
- Support for two new platforms: FreeBSD and Microsoft Windows. Solaris 10 support.
- Better support for Linux kernel 2.6.
- SMTP response time monitoring.
- The FILE directive can show diffs when monitored files are modified.
- Disk/filesystem throughput measuring on Solaris.
- Many more enhancements and bugfixes.
<<less
Download (0.19MB)
Added: 2005-11-01 License: GPL (GNU General Public License) Price:
1452 downloads
PBS::Debug 0.35

PBS::Debug 0.35


PBS::Debug is a Perl module with debugger support for PBS. more>>
PBS::Debug is a Perl module with debugger support for PBS.

SYNOPSIS

use PBS::Debug ;

AddBreakpoint
(
hi
, DEPEND => 1
, PRE => 1
, ACTIONS =>
[
sub
{
PrintDebug "Hi there.n" ;
}
]
) ;

ActivateBreakpoints(hi) ;

This module defines subs that manipulate PBS breakpoints (explained in PBS reference manual).

sub PrintBanner: display a friendly message when run under the perl debugger sub EnableDebugger sub p_h: display a help within the perl debugger sub p_b_wizard: not implemented sub p_list sub p_tree pretty print a tree sub p_dependencies pretty print the dependencies of a node sub p_node pretty prints a node

sub AddBreakpoint add a PBS breakpoint sub RemoveBreakpoints remove one or more PBS breakpoint according to the name regex passed as argument sub ListBreakpoints list all the breakpoints defined within PBS sub ActivateBreakpoints activates one or more PBS breakpoints sub DeactivateBreakpoints does the opposite of the above sub

ActivatePerlDebugger activates wether a breakpoint (or breapoints) jumps to the perl debbugger sub DeactivatePerlDebugger does the opposite of the above

<<less
Download (0.34MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1095 downloads
Text::Diff 0.35

Text::Diff 0.35


Text::Diff can perform diffs on files and record sets. more>>
Text::Diff can perform diffs on files and record sets.

SYNOPSIS

use Text::Diff;

## Mix and match filenames, strings, file handles, producer subs,
## or arrays of records; returns diff in a string.
## WARNING: can return B diffs for large files.
my $diff = diff "file1.txt", "file2.txt", { STYLE => "Context" };
my $diff = diff $string1, $string2, %options;
my $diff = diff *FH1, *FH2;
my $diff = diff &reader1, &reader2;
my $diff = diff @records1, @records2;

## May also mix input types:
my $diff = diff @records1, "file_B.txt";

diff() provides a basic set of services akin to the GNU diff utility. It is not anywhere near as feature complete as GNU diff, but it is better integrated with Perl and available on all platforms. It is often faster than shelling out to a systems diff executable for small files, and generally slower on larger files.

Relies on Algorithm::Diff for, well, the algorithm. This may not produce the same exact diff as a systems local diff executable, but it will be a valid diff and comprehensible by patch. We havent seen any differences between Algorithm::Diffs logic and GNU diffs, but we have not examined them to make sure they are indeed identical.

Note: If you dont want to import the diff function, do one of the following:

use Text::Diff ();

require Text::Diff;

Thats a pretty rare occurence, so diff() is exported by default.

<<less
Download (0.015MB)
Added: 2007-08-09 License: Perl Artistic License Price:
493 downloads
GXMame 0.35 beta2

GXMame 0.35 beta2


GXMame is a Gtk frontend for XMame. more>>
GXMame is a frontend for XMame using the GTK library, the goal is to provide the same GUI than mame32. For the moment it will just have the same gui, the final goal is to be able to share config files with Mame32k (or any version of mame32 that write config files instead of saving data into windows registry) allowing dual booter to have the same environment (favorite, timeplayed, last game selected, gui preference...) under windows and Linux.
I wanted to learn GTK and have a decent frontend for xmame, gnomame didnt work on my computer and I didnt like other front end in Tk, so I decided to start this project, just after I discovered gRustibus, the very good front-end from Kjetil Thuen. I took this front end as a model for the creation of GXMame Im not sure that I could have go so far and so quickly without this model.
Main features:
- Detailed view
- Small icons view
- Indented view (shows clones games under the original one)
- Font color and size selectable
- Icons support, .ico files or a zipped archive from Mamu or Mame32QA
- Tools bar
- Folder(filter) panel
- Screenshot panel
- Display snapshots, Flyers, Marquees, Cabinets, Titles.
- Support of zipped pictures
- Display mameinfo and history
- Status bar
- Support of catver to sort games by version and categories
- Random game selection
- Quick check: only check if a romname.zip file exist in roms folder (also works with clones)
- Audit of all roms
- Window with the properties of all games
- Audit of a single game
- Popup menu to easily access to most used functions
- Preferences for games(global and specific)
- Joystick support (new 386 1.x.x linux driver only)
- Creation of gamelist from xmame
- Multiples executables support
- Scalable icons
- Additionnal options string
- Sortable columns (in any views)
- Sortable selectable columns order (in detail view)
- List view
- Large icons view
- and lot of others...
<<less
Download (0.27MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
1573 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2