very easy to
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 289
Directory Assistant 2.0
Directory Assistant is an application for managing an LDAP address book. more>>
Directory Assistant is an application for managing an LDAP address book. The focus is to create a very easy to use program, with only the few but necessary features. The target of Directory Assistant is novice users that still need to keep their addresses in an LDAP server.
<<less Download (0.018MB)
Added: 2005-12-12 License: BSD License Price:
1418 downloads
Very Simple Network Monitor 2.0.0
Very Simple Network Monitor is a complete rewrite of project PHP Monitoring. more>>
Very Simple Network Monitor is a complete rewrite of project PHP Monitoring.
Its by default capable of monitoring via ping, UDP and TCP checks. Has builtin plugin system so customized scripts can be used to monitor whatever you like eg. oracle tablespaces, diskspace whatever; Alarms are also generated via plugins, it has standard EMAIL alarm, but can be customized to have snmp traps, or sms gateways or whatever.
Can store uptime reports in mysql and generated reports and uptimes in % availability per service.
Has one centralised html monitoring page with all alarms together for good overview.
Enhancements:
- reporting bug fixed
- alarm causes nmonitor to be locked bug fixed
- some other minor stuff I cant remember
- removed some typos from INSTALL doc:)
<<lessIts by default capable of monitoring via ping, UDP and TCP checks. Has builtin plugin system so customized scripts can be used to monitor whatever you like eg. oracle tablespaces, diskspace whatever; Alarms are also generated via plugins, it has standard EMAIL alarm, but can be customized to have snmp traps, or sms gateways or whatever.
Can store uptime reports in mysql and generated reports and uptimes in % availability per service.
Has one centralised html monitoring page with all alarms together for good overview.
Enhancements:
- reporting bug fixed
- alarm causes nmonitor to be locked bug fixed
- some other minor stuff I cant remember
- removed some typos from INSTALL doc:)
Download (0.11MB)
Added: 2006-12-27 License: Freeware Price:
1039 downloads
Very Strange Tunneling Tool 0.5.0
Very Strange Tunneling Tool (VSST) is a multi-protocol tunneling tool. more>>
Very Strange Tunneling Tool (VSST) is a multi-protocol tunneling tool. It accepts input by TCP stream sockets and FIFOs, and can send data via TCP, POP3, and ICMP tunneling.
HOW TO COMPILE
Run the following command:
OS | COMMAND
-----------------------
linux+bsd | make
solaris | make solaris[2]
other unix| try both :-)[1]
[1]: Give me root access to your box and I will port it. Im interested in porting vstt to Solaris x86, Solaris sparc, SGI IRIX, AIX, ...
[2]: Never tested since the hardware of my Solaris box is broken.
HOW TO INSTALL
Run make install
<<lessHOW TO COMPILE
Run the following command:
OS | COMMAND
-----------------------
linux+bsd | make
solaris | make solaris[2]
other unix| try both :-)[1]
[1]: Give me root access to your box and I will port it. Im interested in porting vstt to Solaris x86, Solaris sparc, SGI IRIX, AIX, ...
[2]: Never tested since the hardware of my Solaris box is broken.
HOW TO INSTALL
Run make install
Download (0.088MB)
Added: 2006-10-09 License: BSD License Price:
1117 downloads
Very restrictive set of firewall rules
Very restrictive set of firewall rules script is a sample firewall for ip_tables. more>>
Very restrictive set of firewall rules script is a sample firewall for ip_tables, the tool for doing firewalling and masquerading under the 2.3.x/2.4.x series of kernels.
Be warned, this is a very restrictive set of firewall rules (and they should be, for proper security). Anything that you do not _specifically_ allow is logged and dropped into /dev/null, so if youre wondering why something isnt working, check /var/log/messages.
This is about as close as you get to a secure firewall. Its nasty, its harsh, and it will make your machine nearly invisible to the rest of the internet world. Have fun.
To run this script you must chmod 700 iptables-script and then execute it. To stop it from running, run iptables -F
Sample:
#Point this to your copy of ip_tables
IPT="/usr/local/bin/iptables"
#Load the module.
modprobe ip_tables
#Flush old rules, delete the firewall chain if it exists
$IPT -F
$IPT -F -t nat
$IPT -X firewall
#Setup Masquerading. Change the IP to your internal network and uncomment
#this in order to enable it.
#$IPT -A POSTROUTING -t nat -s 192.168.1.0/24 -j MASQUERADE
#$IPT -P FORWARD ACCEPT
#echo 1 > /proc/sys/net/ipv4/ip_forward
#Set up the firewall chain
$IPT -N firewall
$IPT -A firewall -j LOG --log-level info --log-prefix "Firewall:"
$IPT -A firewall -j DROP
#Accept ourselves
$IPT -A INPUT -s 127.0.0.1/32 -d 127.0.0.1/32 -j ACCEPT
#If youre using IP Masquerading, change this IP to whatever your internl
#IP addres is and uncomment it
#$IPT -A INPUT -s 192.168.1.1/32 -d 0/0 -j ACCEPT
#Accept DNS, cause its warm and friendly
$IPT -A INPUT -p udp --source-port 53 -j ACCEPT
$IPT -A INPUT -p tcp --source-port 113 -j ACCEPT
$IPT -A INPUT -p tcp --destination-port 113 -j ACCEPT
#Allow ftp to send data back and forth.
$IPT -A INPUT -p tcp ! --syn --source-port 20 --destination-port 1024:65535 -j ACCEPT
#Accept SSH. Duh.
#$IPT -A INPUT -p tcp --destination-port 22 -j ACCEPT
#Send everything else ot the firewall.
$IPT -A INPUT -p icmp -j firewall
$IPT -A INPUT -p tcp --syn -j firewall
$IPT -A INPUT -p udp -j firewall
<<lessBe warned, this is a very restrictive set of firewall rules (and they should be, for proper security). Anything that you do not _specifically_ allow is logged and dropped into /dev/null, so if youre wondering why something isnt working, check /var/log/messages.
This is about as close as you get to a secure firewall. Its nasty, its harsh, and it will make your machine nearly invisible to the rest of the internet world. Have fun.
To run this script you must chmod 700 iptables-script and then execute it. To stop it from running, run iptables -F
Sample:
#Point this to your copy of ip_tables
IPT="/usr/local/bin/iptables"
#Load the module.
modprobe ip_tables
#Flush old rules, delete the firewall chain if it exists
$IPT -F
$IPT -F -t nat
$IPT -X firewall
#Setup Masquerading. Change the IP to your internal network and uncomment
#this in order to enable it.
#$IPT -A POSTROUTING -t nat -s 192.168.1.0/24 -j MASQUERADE
#$IPT -P FORWARD ACCEPT
#echo 1 > /proc/sys/net/ipv4/ip_forward
#Set up the firewall chain
$IPT -N firewall
$IPT -A firewall -j LOG --log-level info --log-prefix "Firewall:"
$IPT -A firewall -j DROP
#Accept ourselves
$IPT -A INPUT -s 127.0.0.1/32 -d 127.0.0.1/32 -j ACCEPT
#If youre using IP Masquerading, change this IP to whatever your internl
#IP addres is and uncomment it
#$IPT -A INPUT -s 192.168.1.1/32 -d 0/0 -j ACCEPT
#Accept DNS, cause its warm and friendly
$IPT -A INPUT -p udp --source-port 53 -j ACCEPT
$IPT -A INPUT -p tcp --source-port 113 -j ACCEPT
$IPT -A INPUT -p tcp --destination-port 113 -j ACCEPT
#Allow ftp to send data back and forth.
$IPT -A INPUT -p tcp ! --syn --source-port 20 --destination-port 1024:65535 -j ACCEPT
#Accept SSH. Duh.
#$IPT -A INPUT -p tcp --destination-port 22 -j ACCEPT
#Send everything else ot the firewall.
$IPT -A INPUT -p icmp -j firewall
$IPT -A INPUT -p tcp --syn -j firewall
$IPT -A INPUT -p udp -j firewall
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
984 downloads
Very Simple Control Protocol Daemon 0.1.7
Very Simple Control Protocol Daemon is a daemon for home automation tasks. more>>
Very Simple Control Protocol Daemon is a daemon for home automation tasks.
VSCP protocol is a very simple and free protocol for SOHO automation tasks & friends. The protocol is so easy that everyone can grasp the idea behind it in a few minutes.
Therefore its also very easy to construct and use VSCP aware modules and components. Nodes just start up and then serve the control solution reliable and stable for ever and ever and ever.
The protocol is free and is not designed to conquer the world and every Small Office and HOme. Very Simple Control Protocol Daemon is constructed just because its fun to make tiny little things work together.
Enhancements:
- The port was changed from 1681 to the IANA registered 9598. Scripts for Digitemp support and the first version of the ODIN database were added.
<<lessVSCP protocol is a very simple and free protocol for SOHO automation tasks & friends. The protocol is so easy that everyone can grasp the idea behind it in a few minutes.
Therefore its also very easy to construct and use VSCP aware modules and components. Nodes just start up and then serve the control solution reliable and stable for ever and ever and ever.
The protocol is free and is not designed to conquer the world and every Small Office and HOme. Very Simple Control Protocol Daemon is constructed just because its fun to make tiny little things work together.
Enhancements:
- The port was changed from 1681 to the IANA registered 9598. Scripts for Digitemp support and the first version of the ODIN database were added.
Download (240MB)
Added: 2006-03-15 License: GPL (GNU General Public License) Price:
1320 downloads
Aranha server monitor 0.1.0
Aranha server monitor is an application using rrdtool and XML-RPC to monitor servers with a XUL GUI. more>>
Aranha is an application that uses an XML-RPC layer to retrieve information from one or more servers. The type of information gathered is implemented via plugins, and can be displayed or archived in several different ways.
The data is gathered in Round Robin Databases (integrated with rrdtool) and can be accessed using a XUL interface available from the system. Plugins are very easy to write.
Configuration
To configure this module, either pass specific configuration values to
Makefile.PL like this:
perl Makefile.PL CONFIG_VAR="config val"
or
edit the %DEFAULTS variable on the toplevel Makefile.PL
Installation
To install this module type the following:
perl Makefile.PL
make
make test
make install
<<lessThe data is gathered in Round Robin Databases (integrated with rrdtool) and can be accessed using a XUL interface available from the system. Plugins are very easy to write.
Configuration
To configure this module, either pass specific configuration values to
Makefile.PL like this:
perl Makefile.PL CONFIG_VAR="config val"
or
edit the %DEFAULTS variable on the toplevel Makefile.PL
Installation
To install this module type the following:
perl Makefile.PL
make
make test
make install
Download (0.080MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1656 downloads
FlashUnity Client 0.3
FlashUnity is a channel-based approach to an XML flash communications server and chat room. more>>
FlashUnity is a channel-based approach to an XML flash communications server and chat room.
Using the concept of channels and filters the FlashUnity server becomes extremely flexible and very easy to extend. Also, by using channels it is possible to run multiple modular functions within the same server.
Filters allow you to prefilter input for all channels or provide other functionality to all channels. This is a total rewrite of CyberSS, and the APIs and XML have multiple major changes. Each module, filter, and the chat client are in their own seperate PEAR package.
Enhancements:
- Room changes now work properly, and there are Uselist updates.
- This is the final release before 1.0.
<<lessUsing the concept of channels and filters the FlashUnity server becomes extremely flexible and very easy to extend. Also, by using channels it is possible to run multiple modular functions within the same server.
Filters allow you to prefilter input for all channels or provide other functionality to all channels. This is a total rewrite of CyberSS, and the APIs and XML have multiple major changes. Each module, filter, and the chat client are in their own seperate PEAR package.
Enhancements:
- Room changes now work properly, and there are Uselist updates.
- This is the final release before 1.0.
Download (0.47MB)
Added: 2006-02-28 License: GPL (GNU General Public License) Price:
1335 downloads

Numerology Calculator for Linux 1.0
Type in a name,and the program will display the numeric equivalent. more>> Numero is a program to assist numerologers to calculate the numerical equivalents of names in the Latin alphabet. Numero is free software.
You can download the Linux version. Numero is very easy to use. Type in a name, and the program will display the numeric equivalent for each letter. You can view the results according to the Chaldean or Pythagorean system with one click of the mouse.<<less
Download (830KB)
Added: 2009-04-21 License: Freeware Price:
190 downloads
Linbox Directory Server 2.0.0
Linbox Directory Server (LDS), along with the Linbox Management Console (LMC). more>>
Linbox Directory Server (LDS), along with the Linbox Management Console (LMC), is a powerful system that allows developers, system administrators, and other software vendors to manage users, groups, and their associated policies in an LDAP server.
Linbox Directory Server is highly ergonomic interface design makes it very easy to use, and delegation of administration enables medium size organization to adopt LDS.
Enhancements:
- New features and improvements include DNS/DHCP management and a Norwegian translation.
- The new DNS/DHCP module allows you to manage DNS zones and DHCP subnets for a typical LAN environment.
<<lessLinbox Directory Server is highly ergonomic interface design makes it very easy to use, and delegation of administration enables medium size organization to adopt LDS.
Enhancements:
- New features and improvements include DNS/DHCP management and a Norwegian translation.
- The new DNS/DHCP module allows you to manage DNS zones and DHCP subnets for a typical LAN environment.
Download (MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
507 downloads

RegexSR for liunx 1.0.0
A tool to create and test complex regular expressions. more>> RegexSR is a very easy-to-use and powerful tool (written in Java) to create and test complex regular expressions.
The plugin system provides extra functionalities, such as transforming expressions into Java code, and allows the user to create his own extensions.
Features include testing regular expressions, handling text through regular expressions or plugins, renaming files, developing plugins, and managing expressions in the repository.<<less
Download (502KB)
Added: 2009-04-10 License: Freeware Price: Free
196 downloads
Metalklesk System Monitor Crystal 0.1
Metalklesk System Monitor Crystal is a SuperKaramba theme that monitors your nvidia GPU/ more>>
Metalklesk System Monitor Crystal is a SuperKaramba theme modified from the System Monitor Crystal Clear theme and nvidiaGPUsensorsV0.3 theme, in fact is a fusion but with some changes (it doesnt need nvclock for Nvidia cards to take the data).
You can adjust it just editing .theme file with your favorite text editor (e.g. Kate).
This version is in Spanish only, but its very easy to change to your language.
<<lessYou can adjust it just editing .theme file with your favorite text editor (e.g. Kate).
This version is in Spanish only, but its very easy to change to your language.
Download (0.74MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
933 downloads
Neural Network Framework 0.9.1
Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks. more>>
Neural Network Framework project is a C++ framework to develop, simulate, and analyze arbitrary complex neural networks.
The programmer can use the classes provided to create neural networks with arbitrary topology and mixed type of neurons. Its very easy to add customized neurons and layers.
Enhancements:
- A ScaleFunction that scales the input vector of a Cluster and a normalize method for RealVec were added.
- Two methods were added to the Random class to randomize RealVec and RealMat.
<<lessThe programmer can use the classes provided to create neural networks with arbitrary topology and mixed type of neurons. Its very easy to add customized neurons and layers.
Enhancements:
- A ScaleFunction that scales the input vector of a Cluster and a normalize method for RealVec were added.
- Two methods were added to the Random class to randomize RealVec and RealMat.
Download (0.12MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
880 downloads
RetroForth 9.3.0
RetroForth is a Forth-based development system for FreeBSD, Linux, BeOS, or Windows. more>>
RetroForth is a compact, open source Forth development system. RetroForth can be used under FreeBSD, Linux, BeOS, Windows, SCO OpenServer, or as an operating system.
It is easy very easy to learn, use, and extend with standard libraries like SDL, and it can also be used to create tight, stand-alone applications.
Main features:
- Small: Size RetroForth was designed to be a small Forth. As such, the source code is about 20 kilobytes in size, and most binaries take about 5 kilobytes.
- Portable: Despite being written in assembly language, RetroForth is very easy to port to new operating systems. As noted elsewhere, it runs on at least five major operating systems, and can be used as an OS. Thanks to optional use of libc, many other x86 operating systems should be able to use RetroForth with nothing more than a recompile of the source.
- Simplicity: A major aspect of our design philosophy is simplicity. We have designed RetroForth to be easy to learn and use, while not sacrificing its usefulness.
- Documentation: We provide a manual with every recent release. This is included in ASCII text and NoteBook formats. Other formats, including HTML, PDF, and PostScript will be supported in the near future.
- Support: Options We try to help developers using RetroForth as much as possible. We provide a Forum, Wiki, IRC channel, and a mailing list. Were quite willing to answer questions and listen to suggestions
<<lessIt is easy very easy to learn, use, and extend with standard libraries like SDL, and it can also be used to create tight, stand-alone applications.
Main features:
- Small: Size RetroForth was designed to be a small Forth. As such, the source code is about 20 kilobytes in size, and most binaries take about 5 kilobytes.
- Portable: Despite being written in assembly language, RetroForth is very easy to port to new operating systems. As noted elsewhere, it runs on at least five major operating systems, and can be used as an OS. Thanks to optional use of libc, many other x86 operating systems should be able to use RetroForth with nothing more than a recompile of the source.
- Simplicity: A major aspect of our design philosophy is simplicity. We have designed RetroForth to be easy to learn and use, while not sacrificing its usefulness.
- Documentation: We provide a manual with every recent release. This is included in ASCII text and NoteBook formats. Other formats, including HTML, PDF, and PostScript will be supported in the near future.
- Support: Options We try to help developers using RetroForth as much as possible. We provide a Forum, Wiki, IRC channel, and a mailing list. Were quite willing to answer questions and listen to suggestions
Download (0.027MB)
Added: 2007-04-23 License: Public Domain Price:
915 downloads
RateIt 0.1
RateIt is a GUI tool for performing subjective testing of audio samples based on the MUltiple Stimuli with Hidden Reference. more>>
RateIt is a GUI tool for performing subjective testing of audio samples based on the MUltiple Stimuli with Hidden Reference and Anchor (MUSHRA) methodology as specified in ITU-R recommendation BS.1534-1.
This project is dual-licensed under the General Public License (GPL) and the Mozilla Public License (MPL) version 1.1.
RateIt is written in C using libglade, which means that the user interface is very easy to customise. It currently uses sox for playback but support for libsndfile is planned (patches welcome).
<<lessThis project is dual-licensed under the General Public License (GPL) and the Mozilla Public License (MPL) version 1.1.
RateIt is written in C using libglade, which means that the user interface is very easy to customise. It currently uses sox for playback but support for libsndfile is planned (patches welcome).
Download (0.027MB)
Added: 2006-12-14 License: MPL (Mozilla Public License) Price:
1046 downloads
CBL ActiveRecord 20060323
CBL ActiveRecord is an O/R mapping library for PHP5.x. more>>
CBL ActiveRecord project is an O/R mapping library for PHP5.x. Active Record is an object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data.
Using this library, it becomes very easy to access the database.
- Development Status: Beta
- Intended Audience: Developers
- License: GNU Lesser General Public License (LGPL2.1orlater)
- Programming Language: PHP5, PHP5.1
- Translations: English, Japanese
<<lessUsing this library, it becomes very easy to access the database.
- Development Status: Beta
- Intended Audience: Developers
- License: GNU Lesser General Public License (LGPL2.1orlater)
- Programming Language: PHP5, PHP5.1
- Translations: English, Japanese
Download (0.019MB)
Added: 2006-04-14 License: LGPL (GNU Lesser General Public License) Price:
1288 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 very easy to 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