Main > Free Download Search >

Free figure fifteen 1.01 software for linux

figure fifteen 1.01

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 428
Filemerger 1.01

Filemerger 1.01


Filemerge is a tools that allows you to merge two files in to one big file. more>>
Filemerge is a tools that allows you to merge two files in to one big file. Filemerger will run under linux but will not work with Freebsd.
Usage:
fm [argument] file1 file2 newfile
-v Display the version of mlm
-? Display this help file.
Example:
This will read the file test1, test2 and write all the file contents to the file test3.
fm /root/test1 /root/test2 /root/test3
File test1:
Line 1
Line 2
File Test2
Line2
Line3
File Test3
line1
Line2
Line3
Enhancements:
- Changes were made to the help file.
<<less
Download (0.040MB)
Added: 2007-06-11 License: Freeware Price:
886 downloads
De-interlace 1.01

De-interlace 1.01


De-interlace plug-in does a simple interpolation between the odd or even fields in an image to correct this. more>>
When an image is taken from a video capture source (f.i. a freeze-frame), sometimes only either the odd or the even fields in the frame get captured, resulting in an image which, line by line, is data-black-data-black-etc.

De-interlace plug-in does a simple interpolation between the odd or even fields in an image to correct this.

<<less
Download (0.005MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1131 downloads
MySpace Feed 1.01

MySpace Feed 1.01


MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace. more>>
MySpace Feed tool lets you important headlines from your blog, LiveJournal, a news feed, or other source into your MySpace (or Friendster) page.

MySpace Feed converts the headline text into an image. We have a script that updates the images once a day.
<<less
Download (0.072MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1146 downloads
Sealing Wafter 1.01

Sealing Wafter 1.01


Sealing Wafter is an OpenBSD kernel module that detects nmap scans and prevents proper identification of open TCP ports. more>>
Sealing Wafter is an OpenBSD kernel module that detects nmap scans and prevents proper identification of open TCP ports.
Sealing Wafter module also gives protection against dsniff tcpkill RST packets by dropping them. More testing is needed to prevent breakage of network applications.
Enhancements:
- Wafter has been ported to NetBSD as a kernel patch.
- It now supports identification of most operating systems.
<<less
Download (0.015MB)
Added: 2006-11-12 License: BSD License Price:
1077 downloads
lupengo 1.01

lupengo 1.01


lupengo project is a classic arcade game. more>>
lupengo project is a classic arcade game.

lupengo is the most famous arcade game involving penguins, now without penguins, for one or two players (team).

An Amiga version is also available.

<<less
Download (0.21MB)
Added: 2006-11-30 License: LGPL (GNU Lesser General Public License) Price:
1058 downloads
Memoize 1.01

Memoize 1.01


Memoize - Make functions faster by trading space for time. more>>
Memoize - Make functions faster by trading space for time.

SYNOPSIS

# This is the documentation for Memoize 1.01
use Memoize;
memoize(slow_function);
slow_function(arguments); # Is faster than it was before

This is normally all you need to know. However, many options are available:

memoize(function, options...);

Options include:

NORMALIZER => function
INSTALL => new_name

SCALAR_CACHE => MEMORY
SCALAR_CACHE => [HASH, %cache_hash ]
SCALAR_CACHE => FAULT
SCALAR_CACHE => MERGE

LIST_CACHE => MEMORY
LIST_CACHE => [HASH, %cache_hash ]
LIST_CACHE => FAULT
LIST_CACHE => MERGE

`Memoizing a function makes it faster by trading space for time. It does this by caching the return values of the function in a table. If you call the function again with the same arguments, memoize jumps in and gives you the value out of the table, instead of letting the function compute the value all over again.

Here is an extreme example. Consider the Fibonacci sequence, defined by the following function:

# Compute Fibonacci numbers
sub fib {
my $n = shift;
return $n if $n < 2;
fib($n-1) + fib($n-2);
}

This function is very slow. Why? To compute fib(14), it first wants to compute fib(13) and fib(12), and add the results. But to compute fib(13), it first has to compute fib(12) and fib(11), and then it comes back and computes fib(12) all over again even though the answer is the same. And both of the times that it wants to compute fib(12), it has to compute fib(11) from scratch, and then it has to do it again each time it wants to compute fib(13). This function does so much recomputing of old results that it takes a really long time to run---fib(14) makes 1,200 extra recursive calls to itself, to compute and recompute things that it already computed.

This function is a good candidate for memoization. If you memoize the `fib function above, it will compute fib(14) exactly once, the first time it needs to, and then save the result in a table. Then if you ask for fib(14) again, it gives you the result out of the table. While computing fib(14), instead of computing fib(12) twice, it does it once; the second time it needs the value it gets it from the table. It doesnt compute fib(11) four times; it computes it once, getting it from the table the next three times. Instead of making 1,200 recursive calls to `fib, it makes 15. This makes the function about 150 times faster.

You could do the memoization yourself, by rewriting the function, like this:

# Compute Fibonacci numbers, memoized version
{ my @fib;
sub fib {
my $n = shift;
return $fib[$n] if defined $fib[$n];
return $fib[$n] = $n if $n < 2;
$fib[$n] = fib($n-1) + fib($n-2);
}
}

Or you could use this module, like this:

use Memoize;
memoize(fib);

# Rest of the fib function just like the original version.

This makes it easy to turn memoizing on and off.

Heres an even simpler example: I wrote a simple ray tracer; the program would look in a certain direction, figure out what it was looking at, and then convert the `color value (typically a string like `red) of that object to a red, green, and blue pixel value, like this:

for ($direction = 0; $direction < 300; $direction++) {
# Figure out which object is in direction $direction
$color = $object->{color};
($r, $g, $b) = @{&ColorToRGB($color)};
...
}

Since there are relatively few objects in a picture, there are only a few colors, which get looked up over and over again. Memoizing ColorToRGB sped up the program by several percent.

<<less
Download (0.046MB)
Added: 2007-05-24 License: Perl Artistic License Price:
886 downloads
Urluminator 1.01

Urluminator 1.01


Urluminator is a project which log URLs that urlsnarf sees to a database and view with a CGI script. more>>
Urluminator is a project which log URLs that urlsnarf sees to a database and view with a CGI script.
Urluminator uses urlsnarf to capture URLs that traverse the network and log them to a MySQL database. It also includes a CGI script that allows you to view and search the DB.
From the CGI you can also write out Excel Spreadsheets of the results.
Enhancements:
- Fixed bugs in urluminator.cgi
- Added urluminator.cron, a Cron job that will kill and restart urluminator
<<less
Download (0.007MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
933 downloads
Perl Doxygen Filter 1.01

Perl Doxygen Filter 1.01


Doxygen Filter is an input filter for Doxygen enabling support for Perl code documentation. more>>
Doxygen Filter project is an input filter for Doxygen enabling support for Perl code documentation.
Of course, Perl developers are used to use POD rather than some other code documentation tools.
However, most developers actually are not restricted to using one single language. Instead of using multiple code documentation systems one tends to use one tool for all - Doxygen is quite a powerful code documentation system that already has built-in support for multiple programming languages.
Unfortunately, Doxygen does not directly support Perl. Thus, Doxygen Filter has been written in order to be able to use Doxygen for generating code documentation for Perl projects, too.
Enhancements:
- This release makes huge efforts for automatically extracting namespace/class/method/function information and function argument lists of not explicitly documented entities.
- Non-Perl files are now passed as is to doxygen, or are run through appropriate filters like js2doxy or pas2dox.
- The release includes a Windows executable.
<<less
Download (0.023MB)
Added: 2006-02-02 License: Perl Artistic License Price:
770 downloads
AutoScan 1.01

AutoScan 1.01


AutoScan is a utility for network exploration (Samba and nessus client). more>>
AutoScan is a utility for network exploration.
The objective of the program is to post the list of all equipment connected to the network. A list of ports preset is scanned for each equipment.
Main features:
- Automatic network discovery
- Entire subnets can be scanned simultaneously without human intervention
- Addition time-reality of the new machines put on the network
- Detection of the OS, brand and model known (Possibility to add an unknown equipment in the database)
- Ability to save the network state
- A Samba share browser
- A Nessus client
- For each machine, one can launch a script (ex:ping, nmap) and display the result
- For each port, one can launch an application (ex:rdesktop for the terminal server service)
<<less
Download (14.7MB)
Added: 2007-06-02 License: GPL (GNU General Public License) Price:
967 downloads
IP accounter 1.01

IP accounter 1.01


IP accounter application measures and graphs traffic for IPv4 and IPv6 netfilter-based routers. more>>
IP accounter application measures and graphs traffic for IPv4 and IPv6 netfilter-based routers. Input data is accounted using several abstraction layers (routers, hosts, flows), and IPv6 traffic accounting may be mixed with IPv4.
Enhancements:
- The WEB frontend is still unavailable. There were some minor dificulties running ipaccounter. Still the main issue is when mysql server crashes. The traffic info is then lost until someone fixes it. Therefore it is advised to use some net watching software like Nagios. For further feature enchancements see the ChangeLog. 2006-09-02 by Ondra Ipaccounter-1.0 was released. Only WEB frontend is unavailable at the moment. The accounter is run on one machine. Namely maximus.spi-net.org. There were no fault ancountered so far, but its running only for one week.
<<less
Download (0.13MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
806 downloads
brip 1.01

brip 1.01


brip is a Bulk / stream Resolution of IP addresses and hostnames. more>>
brip is a Bulk / stream Resolution of IP addresses and hostnames.
Main features:
- Resolve IP addresses and/or hostnames in bulk
- Can read from STDIN, commandline or file
- Can be used for quick commandline lookups, like host, dig and nslookup
- Automatically detects which of the three is on your system, and uses whichever is available, in that order of preference
Usage: brip [ options ] [ { hostname | ipaddress } ]
Options:
-r Output is in hostname ipaddress format, the reverse of the default output (/etc/hosts format)
-s Output is in the form of a sed script, which can be used for bulk substitution within existing data (such as a log file).
If a hostname cannot be resolved in this mode, it is repeated back into the output, but in uppercase. This is done to offer some (possible) distinction for unresolvable hostnames without changing their value.
-F separator
Used in conjunction with the -s option, to assure proper delineation of hostnames or ipaddresses in data to which the sed substitutions are being applied
-R resolver
Specify a specific resolver, among host, dig or nslookup.
-v Run in verbose mode
-f inputfile
Read data from a file. Any trailing tokens on the commandline will be looked up along with the contents of the file.
ipaddress, hostname...
Any number of IP addresses and/or hostnames can appear on the commandline, and will be forward or reverse resolved as appropriate. If none are specified on the commandline, they will be read from STDIN.
<<less
Download (0.013MB)
Added: 2006-02-20 License: Freely Distributable Price:
1341 downloads
eArea 1.01

eArea 1.01


eArea is a simple cross-browser WYSIWYG text editor. more>>
eArea is a simple cross-browser WYSIWYG text editor. It works on Explorer, Firefox/Mozila and Safari/Konqueror.

eArea project even with OS X Dashboard widgets! If eArea comes across a browser it doesnt support (like Opera), it will display an ordinary < textarea > instead.

How does it work?

Putting eArea onto a webpage is really simple. All you need to do is upload the eArea folder to your website and paste a snippet of code into your HTML.

Everything about eArea is customisable: from what buttons are shown to the size of the text area and the style of the text in it. All from within the snippet of code in your HTML! You can even have as many eAreas on you pages as you like!
<<less
Download (0.030MB)
Added: 2006-05-05 License: LGPL (GNU Lesser General Public License) Price:
1268 downloads
Mcube 1.01

Mcube 1.01


Mcube is a 4x4x4 Rubiks Cube solver. more>>
Mcube project is a 4x4x4 Rubiks Cube solver.
Mcube solves 4x4x4 Rubiks Cubes. It is platform independent and supports both a pipable console-only format and a graphical format.
CGI version:
First finished release of mcube Solves 4x4x4 rubiks cube via a CGI web-based environment. The cube class can be used in other programs as well.
Command-line version:
This is the command-line version of the 4x4x4 solver. The algorithm is identical to the normal (CGI) version. Use this if you like do-it-yourself console programs.
Enhancements:
- Fixed concise() bug not updating mov[] correctly.
- Added "input page" generator on output page, for easier debugging.
<<less
Download (MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1048 downloads
Sub::Timebound 1.01

Sub::Timebound 1.01


Sub::Timebound is a Perl extension for timebound computations. more>>
Sub::Timebound is a Perl extension for timebound computations.

SYNOPSIS

use Sub::Timebound;

sub fun
{
my $i = shift;
if ($i =~ /7$/) {
die "Simulated internal errorn";
}
while ($i) {
$i--;
}
return "All is well";
}

my $x = timeboundretry(10, 3, 5, &fun, 10);
### Returns { value => ..., status => 0(FAILURE)/1(SUCCESS) }
### value is the return value of fun()

if ($x->{status}) {
# SUCCESS
$x->{value}
} else {
# FAILURE
}

Module exports "timeboundretry" - this is a wrapper that watches a function call.

my $x = timeboundretry([TimeAllocated], [NumberOfAttempts],
[PauseBetweenAttempts],[CodeRef],[Param1], [Param2], ...);


[TimeAllocated] - Seconds allocated to [CodeRef] to complete
[NumberOfAttempts] - Number of attempts made to [CodeRef]
[PauseBetweenAttempts] - Seconds to wait before making subsequent attempts
[CodeRef] - Reference to subroutine
[Param1]... - Parameters to subroutine

<<less
Download (0.004MB)
Added: 2007-05-03 License: Perl Artistic License Price:
905 downloads
CDriveBack 1.01

CDriveBack 1.01


CDriveBack project is a backup system. more>>
CDriveBack project is a backup system.
CDriveBacks design goal is to make a backup system so easy to use that the end users with no backup, eighty percent of XP Home users and thirty percent of home XP Professional users, take backups and can easily restore their system.
For example, backing up the C: drive to an area on the C: drive takes two steps:
- Boot the CDriveBack CD, when the first screen shows,
- Hit enter to backup the C: drive.
CDriveBack is:
- A Live CD, one that you can boot, requiring no installs, using,
- Linux 2.6.x, a recent version of the Linux operationg system, to run
- Dialog screens that manage backup files on your drives and
- Use DAR to backup the partition or drive to files, in turn using, when needed,
- Backing up older Windows drives as well as Linux formatted drives is built-in
- NTFS-3G, the NTFS Drive handling package. is used for NTFS drives.
Enhancements:
Bug fixes, all repaired:
- A full restore from a backup area with no differential backup files still asked for diff files with an akward message.
- Documentation dates and releases out of date.
- Startup session screen still referred to the release candidate.
Added:
- An optional "Force" setting for mounting NTFS disks from a Windows that is using chkdsk to always call the partition "dirty"
<<less
Download (100MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5