Main > Free Download Search >

Free dr sepulveda software for linux

dr sepulveda

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 30
Dr Fermi Tabulator 1.0

Dr Fermi Tabulator 1.0


A program for converting Ascii tabulature (for guitar, bass guitar and drums) to MIDI files. more>>
A program for converting Ascii tabulature (for guitar, bass guitar and drums) to MIDI files.

I can see at least 5 different (classes of)music applications:
Theres this piece of music notated in tablature that youve seen in the news and you want to see how it sounds. You usually have to modify very ittle of the original file (if it was precise enough) to do that.
Play along with chord changes or a rythm section: just program the chord change / a simple drum sequence / a simple bass line and improvise.
Practise a lick: program the lick, loop it in the sequencer, start at slow tempo and speed up slowly.
Compose a song: you can, with a certain amount of work, obtain a very crude demo of a song that you can show to your friends before rehearshing.
Convert tablature to standard notation using this program plus a commercial notation program, or this mid2tex program thats supposed to hang around somewhere.

<<less
Download (0.027MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
GD::Simple 2.35

GD::Simple 2.35


GD::Simple module is a simplified interface to GD library. more>>
GD::Simple module is a simplified interface to GD library.

SYNOPSIS

use GD::Simple;

# create a new image
$img = GD::Simple->new(400,250);

# draw a red rectangle with blue borders
$img->bgcolor(red);
$img->fgcolor(blue);
$img->rectangle(10,10,50,50);

# draw an empty rectangle with green borders
$img->bgcolor(undef);
$img->fgcolor(green);
$img->rectangle(30,30,100,100);

# move to (80,80) and draw a green line to (100,190)
$img->moveTo(80,80);
$img->lineTo(100,190);

# draw a solid orange ellipse
$img->moveTo(110,100);
$img->bgcolor(orange);
$img->fgcolor(orange);
$img->ellipse(40,40);

# draw a black filled arc
$img->moveTo(150,150);
$img->fgcolor(black);
$img->arc(50,50,0,100,gdNoFill|gdEdged);

# draw a string at (10,180) using the default
# built-in font
$img->moveTo(10,180);
$img->string(This is very simple);

# draw a string at (280,210) using 20 point
# times italic, angled upward 90 degrees
$img->moveTo(280,210);
$img->font(Times:italic);
$img->fontsize(20);
$img->angle(-90);
$img->string(This is very fancy);

# some turtle graphics
$img->moveTo(300,100);
$img->penSize(3,3);
$img->angle(0);
$img->line(20); # 20 pixels going to the right
$img->turn(30); # set turning angle to 30 degrees
$img->line(20); # 20 pixel line
$img->line(20);
$img->line(20);
$img->turn(-90); # set turning angle to -90 degrees
$img->line(50); # 50 pixel line

# draw a cyan polygon edged in blue
my $poly = new GD::Polygon;
$poly->addPt(150,100);
$poly->addPt(199,199);
$poly->addPt(100,199);
$img->bgcolor(cyan);
$img->fgcolor(blue);
$img->penSize(1,1);
$img->polygon($poly);

# convert into png data
print $img->png;

GD::Simple is a subclass of the GD library that shortens many of the long GD method calls by storing information about the pen color, size and position in the GD object itself. It also adds a small number of "turtle graphics" style calls for those who prefer to work in polar coordinates. In addition, the library allows you to use symbolic names for colors, such as "chartreuse", and will manage the colors for you.

The Pen

GD::Simple maintains a "pen" whose settings are used for line- and shape-drawing operations. The pen has the following properties:

fgcolor

The pen foreground color is the color of lines and the borders of filled and unfilled shapes.

bgcolor

The pen background color is the color of the contents of filled shapes.

pensize

The pen size is the width of the pen. Larger sizes draw thicker lines.

position

The pen position is its current position on the canvas in (X,Y) coordinates.

angle

When drawing in turtle mode, the pen angle determines the current direction of lines of relative length.

turn

When drawing in turtle mode, the turn determines the clockwise or counterclockwise angle that the pen will turn before drawing the next line.

font

The font to use when drawing text. Both built-in bitmapped fonts and TrueType fonts are supported.

fontsize

The size of the font to use when drawing with TrueType fonts.

One sets the position and properties of the pen and then draws. As the drawing progresses, the position of the pen is updated.

Methods

GD::Simple introduces a number of new methods, a few of which have the same name as GD::Image methods, and hence change their behavior. In addition to these new methods, GD::Simple objects support all of the GD::Image methods. If you make a method call that isnt directly supported by GD::Simple, it refers the request to the underlying GD::Image object. Hence one can load a JPEG image into GD::Simple and declare it to be TrueColor by using this call, which is effectively inherited from GD::Image:

my $img = GD::Simple->newFromJpeg(./myimage.jpg,1);

The rest of this section describes GD::Simple-specific methods.

$img->moveTo($x,$y)

This call changes the position of the pen without drawing. It moves the pen to position ($x,$y) on the drawing canvas.

$img->move($dx,$dy)
$img->move($dr)

This call changes the position of the pen without drawing. When called with two arguments it moves the pen $dx pixels to the right and $dy pixels downward. When called with one argument it moves the pen $dr pixels along the vector described by the current pen angle.

$img->lineTo($x,$y)

The lineTo() call simultaneously draws and moves the pen. It draws a line from the current pen position to the position defined by ($x,$y) using the current pen size and color. After drawing, the position of the pen is updated to the new position.

$img->line($dx,$dy)
$img->line($dr)

The line() call simultaneously draws and moves the pen. When called with two arguments it draws a line from the current position of the pen to the position $dx pixels to the right and $dy pixels down. When called with one argument, it draws a line $dr pixels long along the angle defined by the current pen angle.

$img->clear

This method clears the canvas by painting over it with the current background color.

$img->rectangle($x1,$y1,$x2,$y2)

This method draws the rectangle defined by corners ($x1,$y1), ($x2,$y2). The rectangles edges are drawn in the foreground color and its contents are filled with the background color. To draw a solid rectangle set bgcolor equal to fgcolor. To draw an unfilled rectangle (transparent inside), set bgcolor to undef.

$img->ellipse($width,$height)

This method draws the ellipse centered at the current location with width $width and height $height. The ellipses border is drawn in the foreground color and its contents are filled with the background color. To draw a solid ellipse set bgcolor equal to fgcolor. To draw an unfilled ellipse (transparent inside), set bgcolor to undef.

$img->arc($cx,$cy,$width,$height,$start,$end [,$style])

This method draws filled and unfilled arcs. See GD for a description of the arguments. To draw a solid arc (such as a pie wedge) set bgcolor equal to fgcolor. To draw an unfilled arc, set bgcolor to undef.

$img->polygon($poly)

This method draws filled and unfilled polygon using the current settings of fgcolor for the polygon border and bgcolor for the polygon fill color. See GD for a description of creating polygons. To draw a solid polygon set bgcolor equal to fgcolor. To draw an unfilled polygon, set bgcolor to undef.

$img->polyline($poly)

This method draws polygons without closing the first and last vertices (similar to GD::Image->unclosedPolygon()). It uses the fgcolor to draw the line.

$img->string($string)

This method draws the indicated string starting at the current position of the pen. The pen is moved to the end of the drawn string. Depending on the font selected with the font() method, this will use either a bitmapped GD font or a TrueType font. The angle of the pen will be consulted when drawing the text. For TrueType fonts, any angle is accepted. For GD bitmapped fonts, the angle can be either 0 (draw horizontal) or -90 (draw upwards).

For consistency between the TrueType and GD font behavior, the string is always drawn so that the current position of the pen corresponds to the bottom left of the first character of the text. This is different from the GD behavior, in which the first character of bitmapped fonts hangs down from the pen point.
This method returns a polygon indicating the bounding box of the rendered text. If an error occurred (such as invalid font specification) it returns undef and an error message in $@.

$metrics = $img->fontMetrics

($metrics,$width,$height) = GD::Simple->fontMetrics($font,$fontsize,$string)

This method returns information about the current font, most commonly a TrueType font. It can be invoked as an instance method (on a previously-created GD::Simple object) or as a class method (on the GD::Simple class).

When called as an instance method, fontMetrics() takes no arguments and returns a single hash reference containing the metrics that describe the currently selected font and size. The hash reference contains the following information:

xheight the base height of the font from the bottom to the top of
a lowercase m

ascent the length of the upper stem of the lowercase d

descent the length of the lower step of the lowercase j

lineheight the distance from the bottom of the j to the top of
the d

leading the distance between two adjacent lines

($delta_x,$delta_y)= $img->stringBounds($string)

This method indicates the X and Y offsets (which may be negative) that will occur when the given string is drawn using the current font, fontsize and angle. When the string is drawn horizontally, it gives the width and height of the strings bounding box.

$delta_x = $img->stringWidth($string)

This method indicates the width of the string given the current font, fontsize and angle. It is the same as ($img->stringBounds($string))[0]

($x,$y) = $img->curPos

Return the current position of the pen. Set the current position using moveTo().

$font = $img->font([$newfont] [,$newsize])

Get or set the current font. Fonts can be GD::Font objects, TrueType font file paths, or fontconfig font patterns like "Times:italic" (see fontconfig). The latter feature requires that you have the fontconfig library installed and are using libgd version 2.0.33 or higher.

As a shortcut, you may pass two arguments to set the font and the fontsize simultaneously. The fontsize is only valid when drawing with TrueType fonts.

$size = $img->fontsize([$newfontsize])

Get or set the current font size. This is only valid for TrueType fonts.

$size = $img->penSize([$newpensize])

Get or set the current pen width for use during line drawing operations.

$angle = $img->angle([$newangle])

Set the current angle for use when calling line() or move() with a single argument.

Here is an example of using turn() and angle() together to draw an octagon. The first line drawn is the downward-slanting top right edge. The last line drawn is the horizontal top of the octagon.

$img->moveTo(200,50);
$img->angle(0);
$img->turn(360/8);
for (1..8) { $img->line(50) }

$angle = $img->turn([$newangle])

Get or set the current angle to turn prior to drawing lines. This value is only used when calling line() or move() with a single argument. The turning angle will be applied to each call to line() or move() just before the actual drawing occurs.
Angles are in degrees. Positive values turn the angle clockwise.

$color = $img->fgcolor([$newcolor])

Get or set the pens foreground color. The current pen color can be set by (1) using an (r,g,b) triple; (2) using a previously-allocated color from the GD palette; or (3) by using a symbolic color name such as "chartreuse." The list of color names can be obtained using color_names().

$color = $img->bgcolor([$newcolor])

Get or set the pens background color. The current pen color can be set by (1) using an (r,g,b) triple; (2) using a previously-allocated color from the GD palette; or (3) by using a symbolic color name such as "chartreuse." The list of color names can be obtained using color_names().

$index = $img->translate_color(@args)

Translates a color into a GD palette or TrueColor index. You may pass either an (r,g,b) triple or a symbolic color name. If you pass a previously-allocated index, the method will return it unchanged.

$index = $img->alphaColor(@args,$alpha)

Creates an alpha color. You may pass either an (r,g,b) triple or a symbolic color name, followed by an integer indicating its opacity. The opacity value ranges from 0 (fully opaque) to 127 (fully transparent).
@names = GD::Simple->color_names

$translate_table = GD::Simple->color_names

Called in a list context, color_names() returns the list of symbolic color names recognized by this module. Called in a scalar context, the method returns a hash reference in which the keys are the color names and the values are array references containing [r,g,b] triples.

$gd = $img->gd

Return the internal GD::Image object. Usually you will not need to call this since all GD methods are automatically referred to this object.

($red,$green,$blue) = GD::Simple->HSVtoRGB($hue,$saturation,$value)

Convert a Hue/Saturation/Value (HSV) color into an RGB triple. The hue, saturation and value are integers from 0 to 255.

($hue,$saturation,$value) = GD::Simple->RGBtoHSV($hue,$saturation,$value)

Convert a Red/Green/Blue (RGB) value into a Hue/Saturation/Value (HSV) triple. The hue, saturation and value are integers from 0 to 255.

COLORS

This script will create an image showing all the symbolic colors.

#!/usr/bin/perl

use strict;
use GD::Simple;

my @color_names = GD::Simple->color_names;
my $cols = int(sqrt(@color_names));
my $rows = int(@color_names/$cols)+1;

my $cell_width = 100;
my $cell_height = 50;
my $legend_height = 16;
my $width = $cols * $cell_width;
my $height = $rows * $cell_height;

my $img = GD::Simple->new($width,$height);
$img->font(gdSmallFont);

for (my $c=0; $cfgcolor($color);
$img->rectangle(@topleft,@botright);
$img->moveTo($topleft[0]+2,$botright[1]+$legend_height-2);
$img->fgcolor(black);
$img->string($color);
}
}

print $img->png;

<<less
Download (0.25MB)
Added: 2007-07-23 License: Perl Artistic License Price:
825 downloads
Anonym.OS LiveCD

Anonym.OS LiveCD


Anonym.OS is an OpenBSD 3.8 Live CD with strong tools for anonymizing and encrypting connections. more>>
Anonym.OS LiveCD is based on OpenBSD 3.8 with strong tools for anonymizing and encrypting connections.

Standard network applications are provided and configured to take advantage of the tor onion routing network.

Anonym.OS was first suggested by kaos.theory at Interzone 4 in Atlanta, March of 2005.

Nearly a year and a lot of marathon coding sessions later, its a reality and was released by elmore, fade, arcon, dr.kaos, digunix, atlas and beth of kaos.theory at Shmoocon 2006.
<<less
Download (549.1MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1380 downloads
EverCrack 1.1.0

EverCrack 1.1.0


EverCrack is a cryptanalysis engine. more>>
EverCrack project is a cryptanalysis engine. The overall design goal is to systematically break down complex ciphers into their simplex components for cryptanalysis (by the kernel).
The kernel consists of an algebraic design (comparison and reduction) for breaking uniliteral, monoalphabetic ciphers instantaneously.
Currently, it can break a 4000-word cipher in milliseconds. EverCrack currently has multi-language support for the user interface and cracking encryption in other language dictionaries (English, German, French, Spanish, Italian, Swedish, Dutch, and Portuguese).
Enhancements:
- The dictionary set has been changed to lists of words by exact pattern.
- This reduces the search space completely and increases the speed by approximately 30%.
- Older dictionaries will not work with this release.
<<less
Download (0.61MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1112 downloads
ZenEdu 0.3

ZenEdu 0.3


ZenEdu is a distribution whose main goal is to provide an easy-to-install, free operating system to nurseries ans schools. more>>
ZenEdu is a distribution whose main goal is to provide an easy-to-install, stable and free operating system to nurseries and primary schools. ZenEdu includes a good collection of teachers tools for their daily educational work as well as games dedicated to children.

This version of ZenEdu is based on Zenwalk Linux 4.0, with a number of applications removed and replaced with educational software, such as Dr Geo, GCompris, GNU Chess, OpenOffice.org, TuxMath, Tux Paint, Tuxtype, and many others. The distribution currently supports French only.

Zenwalk Linux (formerly Minislack) is a Slackware-based GNU/Linux operating system with a goal of being slim and fast by using only one application per task and with focus on graphical desktop and multimedia usage.

Zenwalk features the latest Linux technology along with a complete programming environment and libraries to provide an ideal platform for application programmers. Zenwalks modular approach also provides a simple way to convert Zenwalk Linux into a finely-tuned modern server (e.g. LAMP, messaging, file sharing).
<<less
Download (663MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1039 downloads
shwild.fnmatch 0.8.2

shwild.fnmatch 0.8.2


shwild.fnmatch is a platform-independent implementation of the UNIX function fnmatch(), implemented using the shwild, STLSoft. more>>
shwild.fnmatch project is a platform-independent implementation of the UNIX function fnmatch(), implemented using the shwild, STLSoft, and cstring libraries.

It is dependent on the shwild, STLSoft, and cstring libraries.

<<less
Download (0.32MB)
Added: 2007-03-01 License: BSD License Price:
968 downloads
shwild 0.9.5

shwild 0.9.5


shwild provides a platform-independent library for pattern matching. more>>
shwild provides a platform-independent library for pattern matching.
shwild is a simple, platform-independent library that implements shell-compatible wildcard pattern matching. It is implemented in C/C++, expressing a C API with a C++ wrapper.
Building:
Makefiles for all the main supported compilers are included in the subdirectories of the build directory. For example, the makefile for Borland C/C++ v5.6 is in build/vc6. Since Borland is only supported on Windows, there is a single makefile called makefile.
For compilers that are supported on more than one platform, there are several makefiles located in the build sub-directory.
For example, for GNU C/C++ v3.4 (in /build/gcc34) both makefile.unix and makefile.win32 are provided. Most make tools require that you explicitly specify the makefile name (using -f) to use such makefiles, e.g.
$ make -f makefile.unix.
This will build the shwild library, and the C test programs. It will also attempt to build the C++ test programs. Since the C++ mapping relies on the STLSoft libraries, the makefile will look for the environment variable STLSOFT: it specifies -I%STLSOFT%/include (Windows) / -I$STLSOFT/include (UNIX) to the compiler.
Enhancements:
- fixes to UNIX compilation
- STLSoft 1.9.1 beta 44 or later
- Open-RJ 1.6.1 or later (but only for Test programs)
<<less
Download (0.51MB)
Added: 2007-02-22 License: BSD License Price:
975 downloads
recls 1.8.10

recls 1.8.10


recls (recursive ls) is a platform-independent recursive search library. more>>
recls (recursive ls) is a platform-independent recursive search library.
This library came about as the first exemplar for my C/C++ Users Journal column, Positive Integration, which deals with issues of language integration between C/C++ and a host of other languages.
The library itself is implemented in C/C++, but presents a pure C API. It is compatible with UNIX and Win32 operating systems (though the FTP recursive searching is currently Win32-only), and is compatible with most popular C/C++ compilers, including:
- Borland (v5.51+)
- Comeau (v4.3.0.1+)
- Metrowerks CodeWarrior (v8.x+)
- Digital Mars (v8.40+)
- GCC (v3.2+)
- Intel (v7.0+)
- Microsoft Visual C++ (v6.0+)
Note that the base library requires components from the STLSoft libraries (which is another open-source library Im involved with).
In addition to the base library, there are mappings to several other languages/technologies. Currently these are
"regular" C++
- D
- COM
- .NET (C# and Managed C++)
- Perl
- Python
- Ruby
- STL
Enhancements:
- In the core, Recls_SearchFeedback() (and, hence, Recls_Search()) was fixed for the case when both searchRoot and pattern are NULL; general fixes were made for Unicode compilation.
- In recls/C++, fixes were made to namespace-exports for shims for Recls::Entry class.
- In recls/STL, general fixes were made for Unicode compilation.
<<less
Download (1.7MB)
Added: 2007-06-04 License: BSD License Price:
872 downloads
pythondr 0.0.1

pythondr 0.0.1


pythondr project is a simple python library for parsing the TV-channel info at http://dr.dk. more>>
pythondr project is a simple python library for parsing the TV-channel info at http://dr.dk.

<<less
Download (0.010MB)
Added: 2007-02-23 License: LGPL (GNU Lesser General Public License) Price:
973 downloads
SuperTreck 0.1

SuperTreck 0.1


Supertreck is a combination of subjects that tries to recreate in the writing-desk the style Star Treck. more>>
Supertreck is a combination of subjects that tries to recreate in the writing-desk the style Star Treck.

Installation:

1) Install e16 (or better)
2) Install the “Icars Dr 16” theme
3) From KDM, choose "e-KDE" as your session
4) Install the theme "Supertreck" and modify its colour setting for the title bar to "Graphire Orange"

<<less
Download (0.70MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
DjVu Libre 3.5

DjVu Libre 3.5


DjVu is a Web-centric format and software platform for distributing documents and images. more>> <<less
Download (1.8MB)
Added: 2005-05-31 License: GPL (GNU General Public License) Price:
1623 downloads
KnoSciences 1.0

KnoSciences 1.0


KnoSciences is a Knoppix-based bootable CD with a collection of GNU/Linux software, automatic hardware detection. more>>
KnoSciences is a Knoppix bootable CD with a collection of GNU/Linux software, automatic hardware detection, and support for many graphics cards, sound cards, SCSI and USB devices and other peripherals. KnoSciences is not necessary to install anything.
Sciences SoftwareMain features:
Workstation software
- Evince
- FileRunner
- Firefox
- Gimp
- Gnumeric
- Kate
- Krusader
- Lyx
- NVU
- OpenOffice
- Rox-filer
- Scite
- Scribus
- Texmacs
- VLC media player
- VNC
- Xfce4
- XMMS
- Xpdf
Java software
- Edugraphe
- Geogebra
- Geonext
- JasTEX
- Java C.a.R
- NonEuclid
- NumericalChameleon
- Mathoscope
- Optikal
- Populus
- XLogo
Mathematical Software
- Xabacus
- Declic (french)
- Dr Geo
- Geomview
- Xeukleides
- Galculator
- Geg
- Giac/Xcas
- Gnuplot
- Grace
- Graphthing
- Kali
- Kseg
- Maxima
- PARI/GP
- Scilab
- Yacas
- XaoS
Sciences Software
- Audacity
- Chemeq
- Chemtool
- Dozzzaqueux (french)
- Formol
- Ghemical
- GNUcap
- GPeriodic
- KStars
- LibComedi
- Open Babel
- OptGeo (french)
- Oregano
- TkGate
- PyMOL
Systeme Software
- CUPS - Common Unix Printing
- Debian
- GCC (gcc & g++)
- KNOPPIX
- Perl
- Python
- QTParted
- TCC
- Xsane
- knoppix-installer
<<less
Download (693.7MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1239 downloads
Geo::Google 0.02

Geo::Google 0.02


Geo::Google is a Perl module to perform geographical queries using Google Maps. more>>
Geo::Google is a Perl module to perform geographical queries using Google Maps.

SYNOPSIS

use strict;
use Data::Dumper;
use Geo::Google;

#My office
my $gonda_addr = 695 Charles E Young Dr S, Westwood, CA 90024;
#Stans Donuts
my $stans_addr = 10948 Weyburn Ave, Westwood, CA 90024;

#Instantiate a new Geo::Google object.
my $geo = Geo::Google->new();

#Create Geo::Google::Location objects. These contain
#latitude/longitude coordinates, along with a few other details
#about the locus.
my ( $gonda ) = $geo->location( address => $gonda_addr );
my ( $stans ) = $geo->location( address => $stans_addr );
print $gonda->latitude, " / ", $gonda->longitude, "n";
print $stans->latitude, " / ", $stans->longitude, "n";

#Create a Geo::Google::Path object.
my ( $donut_path ) = $geo->path($gonda,$stans);

#A path contains a series of Geo::Google::Segment objects with
#text labels representing turn-by-turn driving directions between
#the two loci.
my @segments = $donut_path->segments();

#This is the human-readable directions for the first leg of the
#journey.
print $segments[0]->text(),"n";

#Geo::Google::Segment objects contain a series of
#Geo::Google::Location objects -- one for each time the segment
#deviates from a straight line to the end of the segment.
my @points = $segments[1]->points;
print $points[0]->latitude, " / ", $points[0]->longitude, "n";

#Now how about some coffee nearby?
my @coffee = $geo->near($stans,coffee);
#Too many. How about some Coffee Bean & Tea Leaf?
@coffee = grep { $_->title =~ /Coffee.*?Bean/i } @coffee;

#Still too many. Lets find the closest with a little trig and
#a Schwartzian transform
my ( $coffee ) = map { $_->[1] }
sort { $a->[0] $b->[0] }
map { [ sqrt(
($_->longitude - $stans->longitude)**2
+
($_->latitude - $stans->latitude)**2
), $_ ] } @coffee;

Geo::Google provides access to the map data used by the popular Google Maps web application.

<<less
Download (0.010MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1068 downloads
retroshare 0.2.1 RC4

retroshare 0.2.1 RC4


retroshare provides a private P2P file sharing software. more>>
retroshare provides a private P2P file sharing software.
Retroshare is a cross-platform private P2P sharing program. It lets you share securely to your friends, using a web-of-trust to authenticate peers and OpenSSL to encrypt all communication. RetroShare provides filesharing, chat, messages, and channels.
Main features:
- A Private Peer to Peer Network which allows you to share information with only the people you want to.
- Reliable Identification and Authentication of your friends.
- Plus an Introduction Scheme which connects you to the friends of your friends, and facilitates network growth.
- Encrypted Communication, ensuring all shared information is known only to you and your peers.
- A Communication Platform which can potentially support services such as Secure Email, File Sharing, Video or Voice over IP and Messaging
- A Decentralised Social Sharing Network designed **For the People**
- with no dependancies on any corporate system or central servers.
Enhancements:
- First release with Web of Trust Authentication!
- Downloads are automatically resumed
- New Directory search interface.
<<less
Download (4.2MB)
Added: 2007-04-26 License: LGPL (GNU Lesser General Public License) Price:
942 downloads
Zebra 0.94

Zebra 0.94


Zebra is a multi-server routing protocol that provides TCP/IP based routing protocols. more>>
Zebra is a multi-server routing protocol that provides TCP/IP based routing protocols. Its meant to be used as a route server and router reflector. Not just a toolkit, it provides full routing power under a new architecture. The user can dynamically change configuration and use command line completion and history from the terminal interface.
It supports BGP-4 protocol as described in RFC1771 (A Border Gateway Protocol 4) as well as RIPv1, RIPv2 and OSPFv2. Unlike traditional, monolithic architectures and even the so-called "new modular architectures" that remove the burden of processing routing functions from the cpu and utilize special ASIC chips instead, Zebra software offers true modularity.
Zebra is unique in its design because it has a process for each protocol.
Main features:
- Due to the multiprocess nature of the Zebra software, it is easily upgraded and maintained. Each protocol can be upgraded separately, leaving the other protocols and the router online. This will save network administrators time in upgrading and maintenance.
-
- Packet routing is carried out at a faster rate than with traditional software. Zebra software allows routers to transfer more data quicker. The need for the ability to transfer large amounts of data quickly is increasing as the internet grows and global networks form. Zebra software will meet that need.
-
- In the event of failure of any of the software modules, the router can remain online and the other protocol daemons will continue to operate. The failure can then be diagnosed and corrected without taking the router offline.
Enhancements:
- Do not listen other processs netlink message.
- "bgp log-neighbor-changes" is added.
- "set ip next-hop peer-address" is added.
- Community delete bug is fixed.
- Fix bug of router-id display
- Option parameter length bug is fixed.
- Point-to-Multipoint support.
- OSPF MD5 authentication bug is fixed.
- OSPF NSSA bug is fixed.
- NSM event schedule bug is fixed.
- Update Opaque LSA patch.
- When write queue becomes empty stop write timer.
- Update to the latest Oharas code. DR election bug is fixed.
- Update link-local address on interface creation
- Update for IPv6 handling
- Make all protocol DEFUN/ALIAS consistent
- Fix route-map problem
- Fix vty bug cause daemon crash.
<<less
Download (1.3MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1233 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2