toolbox
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 48
RF Toolbox 3.2.0
RF Toolbox is an antenna design and electronics/electrical tool package. more>>
RF Toolbox is an antenna design and electronics/electrical tool package. It takes you step by step through the design of the following types of antennas:
* Dipole
* Fat Dipole
* Yagi
* J-Pole
* Super J-Pole
* Log Periodic
* Cubic Quad
* Vertical
* helical
It also performs the following calculations:
* Transmission Line Calculator
* Coil Design
* LC Filter Design
* Transmission Line Loss
* L Matching Networks
* Pi Matching Networks
* Impedance Calculations
* Wire Gauge and Resistance and Voltage Drop
* Wire Inductance Calculations
With the transmission line calculator, you can select the type of line, length, operating frequency, and calculate the losses, as well as the SWR and losses from SWR due to impedance mismatch. The load impedance can also be calculated from the measured impedance at the line input.
<<less* Dipole
* Fat Dipole
* Yagi
* J-Pole
* Super J-Pole
* Log Periodic
* Cubic Quad
* Vertical
* helical
It also performs the following calculations:
* Transmission Line Calculator
* Coil Design
* LC Filter Design
* Transmission Line Loss
* L Matching Networks
* Pi Matching Networks
* Impedance Calculations
* Wire Gauge and Resistance and Voltage Drop
* Wire Inductance Calculations
With the transmission line calculator, you can select the type of line, length, operating frequency, and calculate the losses, as well as the SWR and losses from SWR due to impedance mismatch. The load impedance can also be calculated from the measured impedance at the line input.
Download (1.6MB)
Added: 2005-08-30 License: GPL (GNU General Public License) Price:
856 downloads
ORFEO Toolbox 1.2.0
ORFEO Toolbox (OTB) is a high resolution remote sensing image processing library. more>>
ORFEO Toolbox (OTB) is a high resolution remote sensing image processing library. It contains a set of algorithmic components which allow the user to capitalize on methodological know how, and therefore use an incremental approach to profit from the results of methodological research. The project is made of a set of basic elements (a C++ class API) and utilities (independent programs built upon the base API).
Enhancements:
- This release adds various bugfixes, support for VC++ 7.1 and 8.0, Cygwin, and MinGW, several new image formats (Erdas HFA, Lum), multiscale analysis (morphological pyramid) and spatial reasoning (RCC8), improvement of the visualization, and new applications.
<<lessEnhancements:
- This release adds various bugfixes, support for VC++ 7.1 and 8.0, Cygwin, and MinGW, several new image formats (Erdas HFA, Lum), multiscale analysis (morphological pyramid) and spatial reasoning (RCC8), improvement of the visualization, and new applications.
Download (MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
955 downloads
Stylus Toolbox 0.2.7
Stylus Toolbox is a printer utility for Epson Stylus inkjet printers. more>>
Stylus Toolbox is a printer utility for Epson Stylus inkjet printers that is designed to replace the Epson Printer Utility that comes with the Epson drivers for the Windows platform on Linux, Mac OS X, FreeBSD and other Unix and Unix-like operating systems that are supported by the Python programming language and the Gutenprint inkjet drivers.
This project is a graphical (GUI) front-end for Gutenprints escputil command-line Epson printer utility. As a reult, it supports all printers supported by escputil and Gutenprint, including many recent-model Epson Stylus and Epson Photo printers.
<<lessThis project is a graphical (GUI) front-end for Gutenprints escputil command-line Epson printer utility. As a reult, it supports all printers supported by escputil and Gutenprint, including many recent-model Epson Stylus and Epson Photo printers.
Download (0.031MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1091 downloads
Script::Toolbox 0.19
Script::Toolbox is a Perl framework for the daily business scripts. more>>
Script::Toolbox is a Perl framework for the daily business scripts.
SYNOPSIS
use Script::Toolbox qw(:all);
or
use Script::Toolbox qw(Open Log Exit Table Usage Dir File System)
$e = Script::Toolbox->new();
#
# logging
#
Log( "log message" ); # log to STDERR
Log( "log message", STDERR ); # log to STDERR
Log( "log message", STDOUT ); # log to STDOUT
Log( "log message", /tmp/x ); # log to /tmp/x
Log( "log message", new IO::File "/tmp/XXX" ); # log to /tmp/XXX
Script::Toolbox->new({logdir=>{mod=>=s,desc=>Log directory,
mand=>1,default=>/var/log}});
Log( "log message" ); # log to /var/log/ .log
Log( "log message",syslog,severity,tag ); # log via syslogd
#
# print formatted tables like:
# print join "n", @{$t};
$t = $e->Table( [ "1;2;3","44;55;66","7.77;8.88;9.99" ] );
$t = $e->Table( [ "1|2|3","44|55|66","7.77|8.88|9.99" ], |);
$t = $e->Table( [ This is the title,
[ --H1--, --H2--,--H3--],
[ 11:11:11, 33.456, cc ],
[ 12:23:00, 2222222, 3 ],
[ 11:11, 222, 3333333333333333 ]);
$t = $e->Table({ title => Hash example,
head => [Col1, Col2, Col3],
data => [[ 11:11:11, 33.456, cc ],
[ 12:23:00, 2222222, 3 ],
[ 11:11, 222, 3333333333333333 ]]});
$t = $e->Table({ title => Hash with automatic column heads (F1,F2,F3),
data =>[{F1=>aaaa,F2=>bbb,F3=>c},
{F1=>dd ,F2=>ee ,F3=>f}]});
#
# command line options
#
$tb=Script::Toolbox->new({file=>{mod=>=s,desc=>Description,
mand=>1,default=>/bin/cat}});
$file = tb->GetOpt(file); # depricated, use the following
$file = tb->{file};
$old = tb->SetOpt(newFile);
Usage(); # print a usage message for all options
# if available print also the POD
Usage(This is additional text for the usage);
#
# Directory handling
#
$arrRef = Dir(/tmp ); # all except . and ..
$arrRef = Dir(/tmp, .*patt ); # all matching patt
$arrRef = Dir(/tmp, !.*patt ); # all not matching patt
#
# File handling
#
$arrRef = File(path/to/file); # read file into array
$arrRef = File("/bin/ps |"); # read comand STDOUT into array
File( "> path/to/file", override the old content );
File( "path/to/file", append this to the file );
File( "path/to/file", $arrRef ); # append array elements
File( "path/to/file", $arrRef, $recSep ); # append array elements
File( "path/to/file", $hashRef, $recSep, $fieldSep); # append as key value lines
File( "| /bin/cat", "Hello world.n" );
$fileHandle = TmpFile(); # open new temporary file
$arrRef = TmpFile($fileHandle) # read temp whole file
#
# Miscelleanous
#
Exit( 1, "Exit message" ); # exit with returncode 1,
# write exit message via Log()
$fh = Open( "> /tmp/xx" ); # return an IO::File object with
# /tmp/xx opened for write
# die with logfile entry if failed
$fh = Open( "/bin/ps |" ); # return an IO::File object
# die with logfile entry if failed
$rc = System("/bin/ls") # execute a system command and
# report its output into the
# logfile.
$now = Now();
printf "Day:%d Mon:%d Year:%d Wday:%d Yday:%d IsDST:%d Sec:%d Min:%d Hour:%d",
$now->{mday},
$now->{mon},
$now->{year},
$now->{wday},
$now->{yday},
$now->{isdst},
$now->{sec},
$now->{min},
$now->{hour};
$now = Now("%A, %B %d, %Y"); # Monday, October 10, 2005
=head1 ABSTRACT
This module should be a "swiss army knife" for the daily tasks. The main goals are command line processing, automatic usage messages, signal catching (with logging), simple logging, simple data formatting, simple directory and file processing.
<<lessSYNOPSIS
use Script::Toolbox qw(:all);
or
use Script::Toolbox qw(Open Log Exit Table Usage Dir File System)
$e = Script::Toolbox->new();
#
# logging
#
Log( "log message" ); # log to STDERR
Log( "log message", STDERR ); # log to STDERR
Log( "log message", STDOUT ); # log to STDOUT
Log( "log message", /tmp/x ); # log to /tmp/x
Log( "log message", new IO::File "/tmp/XXX" ); # log to /tmp/XXX
Script::Toolbox->new({logdir=>{mod=>=s,desc=>Log directory,
mand=>1,default=>/var/log}});
Log( "log message" ); # log to /var/log/ .log
Log( "log message",syslog,severity,tag ); # log via syslogd
#
# print formatted tables like:
# print join "n", @{$t};
$t = $e->Table( [ "1;2;3","44;55;66","7.77;8.88;9.99" ] );
$t = $e->Table( [ "1|2|3","44|55|66","7.77|8.88|9.99" ], |);
$t = $e->Table( [ This is the title,
[ --H1--, --H2--,--H3--],
[ 11:11:11, 33.456, cc ],
[ 12:23:00, 2222222, 3 ],
[ 11:11, 222, 3333333333333333 ]);
$t = $e->Table({ title => Hash example,
head => [Col1, Col2, Col3],
data => [[ 11:11:11, 33.456, cc ],
[ 12:23:00, 2222222, 3 ],
[ 11:11, 222, 3333333333333333 ]]});
$t = $e->Table({ title => Hash with automatic column heads (F1,F2,F3),
data =>[{F1=>aaaa,F2=>bbb,F3=>c},
{F1=>dd ,F2=>ee ,F3=>f}]});
#
# command line options
#
$tb=Script::Toolbox->new({file=>{mod=>=s,desc=>Description,
mand=>1,default=>/bin/cat}});
$file = tb->GetOpt(file); # depricated, use the following
$file = tb->{file};
$old = tb->SetOpt(newFile);
Usage(); # print a usage message for all options
# if available print also the POD
Usage(This is additional text for the usage);
#
# Directory handling
#
$arrRef = Dir(/tmp ); # all except . and ..
$arrRef = Dir(/tmp, .*patt ); # all matching patt
$arrRef = Dir(/tmp, !.*patt ); # all not matching patt
#
# File handling
#
$arrRef = File(path/to/file); # read file into array
$arrRef = File("/bin/ps |"); # read comand STDOUT into array
File( "> path/to/file", override the old content );
File( "path/to/file", append this to the file );
File( "path/to/file", $arrRef ); # append array elements
File( "path/to/file", $arrRef, $recSep ); # append array elements
File( "path/to/file", $hashRef, $recSep, $fieldSep); # append as key value lines
File( "| /bin/cat", "Hello world.n" );
$fileHandle = TmpFile(); # open new temporary file
$arrRef = TmpFile($fileHandle) # read temp whole file
#
# Miscelleanous
#
Exit( 1, "Exit message" ); # exit with returncode 1,
# write exit message via Log()
$fh = Open( "> /tmp/xx" ); # return an IO::File object with
# /tmp/xx opened for write
# die with logfile entry if failed
$fh = Open( "/bin/ps |" ); # return an IO::File object
# die with logfile entry if failed
$rc = System("/bin/ls") # execute a system command and
# report its output into the
# logfile.
$now = Now();
printf "Day:%d Mon:%d Year:%d Wday:%d Yday:%d IsDST:%d Sec:%d Min:%d Hour:%d",
$now->{mday},
$now->{mon},
$now->{year},
$now->{wday},
$now->{yday},
$now->{isdst},
$now->{sec},
$now->{min},
$now->{hour};
$now = Now("%A, %B %d, %Y"); # Monday, October 10, 2005
=head1 ABSTRACT
This module should be a "swiss army knife" for the daily tasks. The main goals are command line processing, automatic usage messages, signal catching (with logging), simple logging, simple data formatting, simple directory and file processing.
Download (0.018MB)
Added: 2007-04-11 License: Perl Artistic License Price:
927 downloads
Apache Toolbox 1.5.72
Apache Toolbox is an Apache compilation toolbox. more>>
Apache Toolbox provides a means to easily compile Apache with SSL, PHP (v4 or v3), MySQL, APC (Alternative PHP Cache), mod_auth_nds, mod_dynvhost, WebDAV, mod_fastcgi, mod_gzip, mod_layout, mod_throttle, mod_accessref, mod_auth_sys, mod_bandwidth, mod_auth_ldap, mod_roaming, mod_perl, Jakarta, OpenLDAP, mod_dtcl, mod_python, mod_frontpage, mod_relocate, mod_backhand, mod_trigger, mod_watch, mod_filter, libcurl for PHP, MING for PHP, mod_auth_mysql, mod_auth_samba, mod_index_rss, mod_random [by Brian Aker], mod_allowdev, mod_auth_cookie, mod_auth_cookie_file, mod_auth_external, mod_auth_inst, mod_auth_system, mod_eaccess, mod_bandwidth, mod_cgisock, mod_urlcount, mod_disallow_id, mod_peephole, mod_put, mod_qs2ssi, mod_session, mod_cvs, mod_macro, mod_random, mod_ip_forwarding, mod_ticket, mod_monitor, jakarta-tomcat, jakarta-ant, jakarta-servletapi, Java Development Kit, Java API for XML Parsing, Java Secure Sockets Extension, mod_pcgi2, apache IPv6 patch, and the latest gd libraries with PNG/JPEG/Freetype2/Zlib support.
You can also hack apaches internal settings so it will report a differnet version of httpd all together, improve your security.
Includes support for mod_access, mod_asis, mod_auth_db, mod_autoindex, mod_digest, mod_example, mod_imap, mod_log_agent, mod_mime, mod_negotiation, mod_setenvif, mod_status, mod_usertrack, mod_actions, mod_auth, mod_auth_dbm, mod_cern_meta, mod_dir, mod_expires, mod_include, mod_log_config, mod_mime_magic, mod_proxy, mod_unique_id, mod_vhost_alias, mod_alias, mod_auth_anon, mod_auth_digest, mod_cgi, mod_env, mod_headers, mod_info, mod_log_referer, mod_mmap_static, mod_rewrite, and mod_speling, which come default with apache.
It is fully customizable and menu driven. Everything is compiled from source. It checks for RPMs that might cause problems and uses wget to automatically download the source if its missing.
<<lessYou can also hack apaches internal settings so it will report a differnet version of httpd all together, improve your security.
Includes support for mod_access, mod_asis, mod_auth_db, mod_autoindex, mod_digest, mod_example, mod_imap, mod_log_agent, mod_mime, mod_negotiation, mod_setenvif, mod_status, mod_usertrack, mod_actions, mod_auth, mod_auth_dbm, mod_cern_meta, mod_dir, mod_expires, mod_include, mod_log_config, mod_mime_magic, mod_proxy, mod_unique_id, mod_vhost_alias, mod_alias, mod_auth_anon, mod_auth_digest, mod_cgi, mod_env, mod_headers, mod_info, mod_log_referer, mod_mmap_static, mod_rewrite, and mod_speling, which come default with apache.
It is fully customizable and menu driven. Everything is compiled from source. It checks for RPMs that might cause problems and uses wget to automatically download the source if its missing.
Download (0.09MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1661 downloads
Scilab Image Processing Toolbox 0.4.0
Scilab Image Processing Toolbox is an imaging, computer vision, and shape analysis package for SciLab. more>> <<less
Download (3.9MB)
Added: 2006-04-15 License: GPL (GNU General Public License) Price:
1321 downloads
WaveTools 1.0
WaveTools is a library consisting of 8 programs for manipulating mono WAV Files. more>>
WaveTools is a library consisting of 8 programs for manipulating mono WAV Files which I have written for an audiology project at the Technical University of Vienna some years ago as a toolbox for generating and preprocessing small test samples, so this is probably not for making music with (unless youre doing some real hardcore Techno), but if you want to write your own effect filters or sound analysis tools and dont want to mess around with format conversions or standard input filters, or if you just want to arrange some WAVs for your voice modem, you might find this useful.
WaveTools have been developed under Linux/gcc, but should compile on any platform which has an ANSI C compiler (except wview, of course).
Enhancements:
- Dropped binary DOS support (due to lack of DOS compiler; you can still try to build your own DOS binaries if you have a sufficiently old watcom compiler available.)
- fixed bug in wcat.c when converting to lower sample rates
- Dokumentation is now in PDF Format (still German only, though)
- If you have trouble compiling, try deleting the wview entry from the exec: tag in the Makefile. Unless youre into computer archeology, svgalib should be really obsolete by now.
<<lessWaveTools have been developed under Linux/gcc, but should compile on any platform which has an ANSI C compiler (except wview, of course).
Enhancements:
- Dropped binary DOS support (due to lack of DOS compiler; you can still try to build your own DOS binaries if you have a sufficiently old watcom compiler available.)
- fixed bug in wcat.c when converting to lower sample rates
- Dokumentation is now in PDF Format (still German only, though)
- If you have trouble compiling, try deleting the wview entry from the exec: tag in the Makefile. Unless youre into computer archeology, svgalib should be really obsolete by now.
Download (0.053MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1599 downloads
cpptools 0.1.6
cpptools is a set of tools for C/C++ development. more>>
This project aims to create a toolbox for C/C++ development. Among them, we intend to deploy a lint, a code beautifier, some refactoring tools, and any other that may shrink a month long task into a key hit.
Cpptools is a set of tools for C/C++ development. It tries to simplify many common development tasks. It is intended to support code generation, code analysis, code refactoring and system documentation.
Main features:
- Cpptools is coded almost exclusively in Python. It is platform independent, running on any platform that supports Python.
- It uses Graphviz to render vectorial diagrams.
CppClassHierarchy parses source files and generates class hierarchy diagrams, showing inheritance relationships and some cases of template instantiations.
Syntax
CppClassHierarchy.py [-f format] [-o output] [sourcefiles ...]
-f Specifies output format. There are two valid formats: xml and dot). Default = dot.
-o Sets output filename. If -o is omitted, information will be sent to standard output.
<<lessCpptools is a set of tools for C/C++ development. It tries to simplify many common development tasks. It is intended to support code generation, code analysis, code refactoring and system documentation.
Main features:
- Cpptools is coded almost exclusively in Python. It is platform independent, running on any platform that supports Python.
- It uses Graphviz to render vectorial diagrams.
CppClassHierarchy parses source files and generates class hierarchy diagrams, showing inheritance relationships and some cases of template instantiations.
Syntax
CppClassHierarchy.py [-f format] [-o output] [sourcefiles ...]
-f Specifies output format. There are two valid formats: xml and dot). Default = dot.
-o Sets output filename. If -o is omitted, information will be sent to standard output.
Download (0.058MB)
Added: 2005-04-22 License: GPL (GNU General Public License) Price:
1646 downloads
Netwox 5.35
Netwox is a toolbox that helps to find and solve networks problems. more>>
Netwox is a toolbox that helps to find and solve networks problems.
Main features:
- sniff, spoof
- clients, servers
- DNS, FTP, HTTP, IRC, NNTP, SMTP, SNMP, SYSLOG, TELNET, TFTP
- scan, ping, traceroute
- etc.
Netwox contains 217 tools using network library netwib. Some tools are only a simplified implementation, while others are very sophisticated.
Netwox project is available under the GNU GPL License.
Netwag is a graphical front-end to netwox.
<<lessMain features:
- sniff, spoof
- clients, servers
- DNS, FTP, HTTP, IRC, NNTP, SMTP, SNMP, SYSLOG, TELNET, TFTP
- scan, ping, traceroute
- etc.
Netwox contains 217 tools using network library netwib. Some tools are only a simplified implementation, while others are very sophisticated.
Netwox project is available under the GNU GPL License.
Netwag is a graphical front-end to netwox.
Download (2.5MB)
Added: 2006-10-07 License: GPL (GNU General Public License) Price:
1113 downloads
Search::Tools 0.01
Search::Tools are tools for building search applications. more>>
Search::Tools are tools for building search applications.
SYNOPSIS
use Search::Tools;
my $re = Search::Tools->regexp(query => the quick brown fox);
my $snipper = Search::Tools->snipper(query => $re);
my $hiliter = Search::Tools->hiliter(query => $re);
for my $result (@search_results)
{
print $hiliter->light( $snipper->snip( $result->summary ) );
}
Search::Tools is a set of utilities for building search applications. Rather than adhering to a particular search application, the goal of Search::Tools is to provide general-purpose methods for common search application features. Think of Search::Tools like a toolbox rather than a hammer.
Examples include:
Parsing search queries for the meaningful keywords
Rich regular expressions for locating keywords in the original indexed documents
Contextual snippets showing query keywords
Highlighting of keywords in context
Search::Tools is derived from some of the features in HTML::HiLiter and SWISH::HiLiter, but has been re-written with an eye to accomodating more general purpose features.
<<lessSYNOPSIS
use Search::Tools;
my $re = Search::Tools->regexp(query => the quick brown fox);
my $snipper = Search::Tools->snipper(query => $re);
my $hiliter = Search::Tools->hiliter(query => $re);
for my $result (@search_results)
{
print $hiliter->light( $snipper->snip( $result->summary ) );
}
Search::Tools is a set of utilities for building search applications. Rather than adhering to a particular search application, the goal of Search::Tools is to provide general-purpose methods for common search application features. Think of Search::Tools like a toolbox rather than a hammer.
Examples include:
Parsing search queries for the meaningful keywords
Rich regular expressions for locating keywords in the original indexed documents
Contextual snippets showing query keywords
Highlighting of keywords in context
Search::Tools is derived from some of the features in HTML::HiLiter and SWISH::HiLiter, but has been re-written with an eye to accomodating more general purpose features.
Download (0.038MB)
Added: 2006-08-31 License: Perl Artistic License Price:
1149 downloads
Bibirmer Toolbar 1.0.1.29
Bibirmer Toolbar will improve your browsers capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products features & prices. more>>
Bibirmer Toolbar 1.0.1.29 will improve your browser's capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products' features & prices.
Major Features:
- Search box for all the major search engines (Google, Yahoo, MSN, Ask.com, Dmoz.org) + Price Comparison Engine. Find lowest prices and availability from online stores.
- Get notified when you receive new e-mails to your POP3, Yahoo!, Gmail, or Hotmail accounts.
- Includes Popup blocker, cookie cleaner, history cleaner, and cache cleaner.
- Online Dictionary,Wikipedia search (free encyclopedia), Images Search, Job Search, News, Quotes, Weather, Blog Search, Maps, find domain name and more in next versions.
- Music Search, Movies Search, Books Search,Software Search.
- Auctions Search, Search Customer Reviews, Answer your question, Amazon Search, Shopping.com Search, Chitika eMiniMalls Search.
- ToolBox Includes:
- WhoIs (Lists contact info for a domain/IP),
- DNS Report (See if there are problems with your DNS hosting),
- Geolocation (find the city and country of an IP),
- Traceroute (Traces the route packets take to this host),
- Ping (Shows how long it takes for packets to reach a host.),
- Keyword Selector Tool (How many times that term was searched on last month),
- Google cash tool (Google indexed pages by different datacenters)
- Domain History (view archived versions of Web sites)
- E-mail Test
- My IP Address tool
Requirements:
- Mozilla Firefox
Added: 2008-05-26 License: MPL Price: FREE
59 downloads
colorname 0.1
colorname is both a plugin for The Gimp as well as a standalone tool that tries to assign a name to a color, using external colo more>>
colorname is both a plugin for The Gimp as well as a standalone tool that tries to assign a name to a color, using external color definitions and linear algebra.
For this it calculates the euclidean distance between the currently selected color and all predefined colors, either in the RGB or HSV color space.
This project is licensed under the GPLv3.
Usage:
Standalone
Just start colorname.py
Gimp plugin
Once installed you can find colorname in the GIMP under: ”< Toolbox >/Xtns/Colorname”
<<lessFor this it calculates the euclidean distance between the currently selected color and all predefined colors, either in the RGB or HSV color space.
This project is licensed under the GPLv3.
Usage:
Standalone
Just start colorname.py
Gimp plugin
Once installed you can find colorname in the GIMP under: ”< Toolbox >/Xtns/Colorname”
Download (0.030MB)
Added: 2007-08-14 License: GPL v3 Price:
804 downloads
Lcrzoex 5.34.0
Lcrzoex is a toolbox for network administrators and network hackers. more>>
Lcrzoex is a toolbox for network administrators and network hackers which contains over 400 utilities to test an Ethernet/IP network. Each one can be compiled alone and modified to match your needs. Lcrzoex works on Linux, Windows, FreeBSD, OpenBSD, and Solaris.
Toolbox netwox helps to find and solve network problems :
- sniff, spoof
- clients, servers
- DNS, FTP, HTTP, IRC, NNTP, SMTP, SNMP, SYSLOG, TELNET, TFTP
- scan, ping, traceroute
- etc.
Netwox contains 221 tools using network library netwib. Some tools are only a simplified implementation, but others are very sophisticated.
<<lessToolbox netwox helps to find and solve network problems :
- sniff, spoof
- clients, servers
- DNS, FTP, HTTP, IRC, NNTP, SMTP, SNMP, SYSLOG, TELNET, TFTP
- scan, ping, traceroute
- etc.
Netwox contains 221 tools using network library netwib. Some tools are only a simplified implementation, but others are very sophisticated.
Download (2.6MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1216 downloads
LibModbus 0.0.1
LibModbus is a simple modbus toolbox for Linux. more>>
LibModbus is a simple modbus toolbox for Linux. LibModbus contents master, slave and serial port configuration routines.
Installing:
type : make install
Linking with your program:
After installing libmodbus, just type #include on the top of your program and compile it with the following line :
gcc -o my_program my_program.c -lmodbus
Technical description:
Libmodbus is a dynamic library, you can easily link it with your own program. It use linux thread library for more efficiency.
Today libmodus is on 0.0.1 version, maybe there is a lot of bugs and things to change. Write to me if you found one.
This library is under GPL (GNU Public Licence). You can download, use and copping it. You can also modifying program sources.
Libmodbus and all other software and programs on this website are free and distributed without any warranty.
<<lessInstalling:
type : make install
Linking with your program:
After installing libmodbus, just type #include on the top of your program and compile it with the following line :
gcc -o my_program my_program.c -lmodbus
Technical description:
Libmodbus is a dynamic library, you can easily link it with your own program. It use linux thread library for more efficiency.
Today libmodus is on 0.0.1 version, maybe there is a lot of bugs and things to change. Write to me if you found one.
This library is under GPL (GNU Public Licence). You can download, use and copping it. You can also modifying program sources.
Libmodbus and all other software and programs on this website are free and distributed without any warranty.
Download (0.035MB)
Added: 2006-05-25 License: GPL (GNU General Public License) Price:
1252 downloads
Komodo Edit (Linux/x86 libstdc++6) 5.1.1
Komodo Edit is a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology. Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. more>>
Komodo Edit (Linux/x86 libstdc++6) 5.1.1 offers an effective tool which functions as a free, open source, multi-platform, multi-language editor for dynamic languages and Ajax technology, including Perl, PHP, Python, Ruby and Tcl; plus support for browser-side code including JavaScript, CSS, HTML and XML.
Background syntax checking and syntax coloring catch errors immediately, while autocomplete and calltips guide you as you write. Available on Windows, Mac OS X and Linux. XPI extensions allow you to create your own plug-ins. XPI extension support provides the same capability as Firefox.
Major Features:
- Multi-language editor
- Multi-language support: Advanced support for:
-
- Browser-side languages: CSS, HTML, JavaScript and XML
- Server-side languages: Perl, PHP, Python, Ruby and Tcl
- Web template languages: RHTML, Template-Toolkit, HTML-Smarty and Django
- Autocomplete
-
- Call Tips
- Autocomplete and calltips
- Write code faster and shorten the learning curve with code completion that guides you as you work
- CSS, HTML, JavaScript, Perl, PHP, Python, Ruby, Tcl, XML and XSLT.
- Schema-based XML/HTML completion
- Multiple-language file support, such as CSS and JavaScript completion in HTML
- Support for adding third-party libraries
- Interpreter version differentiation of built-in and standard library information
- Multi-language file support
-
- Correct syntax coloring of multi-language files and templated files, common in many web programming frameworks. Add custom language support (User-Defined Languages or UDL, used to provide support for RHTML, Template-Toolkit, HTML-Mason, Smarty and Django).
- Standard editing features
-
- Code commenting, auto-indent and outdent, block selection, incremental search, reflow paragraph, join lines, enter next character as raw literal, repeat next keystroke and clean line endings on "save".
- Syntax checking
-
- Instant feedback for all fully-supported languages.
- Syntax coloring
-
- Spot errors easily and improve readability and context, even in multi-language files (unique to Komodo!).
- Vi emulation
-
- Modal Vi keybindings emulate navigation, text insertion and command behavior. Custom commands can be implemented by adding Komodo macros to a Vi Commands Toolbox folder.
- Emacs keybindings
-
- Emacs-like keybinding scheme supports new editor features modeled on Emacs, such as transient marks (similar to the Emacs "mark ring"), repeat next command and reflow paragraph.
- HTML preview
-
- Check HTML, XML and CSS files side-by-side or in a browser, using arbitrary files or URLs.
- Multilingual Input Method Editor (IME) support
-
- Use your standard keyboard to enter multi-byte characters, such as Simplified Chinese, Japanese and Korean.
- Code snippets
-
- Store any piece of code for reuse.
- Code folding
-
- Work quickly and efficiently with large sections of code.
- Multi-document editing
-
- Easily work on multiple documents simultaneously using multiple tab groups, split view, and cross-document search.
- Tutorials
-
- Easily master editing features.
- Project manager: Convenient, flexible organization of all project elements.
- Live Folders
-
- Project view displays the current contents of corresponding file system directory.
- Virtual Folders
-
- Explicitly maintained multi-purpose containers for any project or Toolbox component, containing pointers to selected components from different file system locations.
- Toolbox
- Store it
-
- Store virtually anything, including configurable "Run" commands, macros, code snippets, URLs, Live and Virtual Folders, templates, menus, toolbars and remote files.
- Share it
-
- Share a Toolbox with networked team members or distribute valuable Toolbox items to other Komodo users with the import/export function.
- Extensibility: XPI Extensions
- Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM
- Create your own plug-ins. XPI extension support provides the same capability as Firefox, with all standard Mozilla APIs based on XUL, XBL, and XPCOM
Enhancements:
- Editor History
- Hyperlinks
- Fast-open dialog
- Find highlighting
Requirements:
- Red Hat Enterprise Linux 5 or later
- CentOS 5.0 or later
- Fedora Core 8 or later
- OpenSUSE 10.2 or later
- Ubuntu 7.04 or later
- hx86 or x86_64 architecture
- 500 MHz or faster processor
- 512 MB RAM (1 GB+ recommended)
- 200 MB hard disk space
WareSeeker Editor
Download (37.23MB)
Added: 2009-04-07 License: Freeware Price: $0.00
465 downloads
Other version of Komodo Edit
Price: $0.00
License:Freeware
License:Freeware
License:Freeware
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 toolbox 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