lynns legacy 1.1
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1352
Lynns Legacy 1.1
Lynns Legacy is an action-adventure game. more>>
Lynns Legacy is an action-adventure game. Lynn the mercenary is on a quest to figure who tried to kill her and why.
Follow Lynn the mercenary as she recollects the mysterious mission that nearly took her life. Travel through multiple overworld areas, (forest, towns, desert, mountains) and boldly step into uncharted dimensions in search of memory!
<<lessFollow Lynn the mercenary as she recollects the mysterious mission that nearly took her life. Travel through multiple overworld areas, (forest, towns, desert, mountains) and boldly step into uncharted dimensions in search of memory!
Download (5.1MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1076 downloads
Dune Legacy 0.94.1
Dune Legacy is a free clone of Dune2. more>>
Dune Legacy is a free clone of Dune2.
Updated clone of Westood Studios dune2. Uses original dune2 data files (not included) to provide original dune2 graphics and sounds.
New features include multiple unit selection/control, high resolution support, multiplayer gaming via tcp/ip, in game.
<<lessUpdated clone of Westood Studios dune2. Uses original dune2 data files (not included) to provide original dune2 graphics and sounds.
New features include multiple unit selection/control, high resolution support, multiplayer gaming via tcp/ip, in game.
Download (1.0MB)
Added: 2006-07-23 License: GPL (GNU General Public License) Price:
1198 downloads
DooM Legacy 1.42
DooM Legacy is an enhanced port of id Softwares Doom. more>>
We have always dreamed of DOOM sources being released! How much days have we been talking about the features wed put in it.
In the middle of 1997, we heard a rumour that the sources of DOOM would be released. Some months later the miracle happened: during December 1997, id Software made the full source code of DOOM public.
KEEP THE BEST OF DOOM: Simple and fast. We wont add a thousands options that complicate the game and make the deathmatch slow down.
NO CHANGE TO THE GAMEPLAY: At least there will be an original gameplay mode.
USER FRIENDLY AND AIMED AT THE PLAYERS: We do Legacy for the people who PLAY and enjoy DOOM today. We wont make an adventure game out of DOOM, damn!
NO CHEATS IN MULTIPLAYER.
<<lessIn the middle of 1997, we heard a rumour that the sources of DOOM would be released. Some months later the miracle happened: during December 1997, id Software made the full source code of DOOM public.
KEEP THE BEST OF DOOM: Simple and fast. We wont add a thousands options that complicate the game and make the deathmatch slow down.
NO CHANGE TO THE GAMEPLAY: At least there will be an original gameplay mode.
USER FRIENDLY AND AIMED AT THE PLAYERS: We do Legacy for the people who PLAY and enjoy DOOM today. We wont make an adventure game out of DOOM, damn!
NO CHEATS IN MULTIPLAYER.
Download (1.62MB)
Added: 2005-04-01 License: GPL (GNU General Public License) Price:
1703 downloads
The Black Legacy 0.9.9
The Black Legacy is an online RPG game project that uses OpenGL and the SDL libraries. more>>
The Black Legacy is an online RPG game project that uses OpenGL and the SDL libraries.
Enhancements:
- The game style was changed.
- A full playable level, volumetric weapons, ray casting collision, optimized collision using OBB+Ray cast, character rotation on shot mode, two animations per character at a time, blood, shields, gun properties, and a compass were added.
<<lessEnhancements:
- The game style was changed.
- A full playable level, volumetric weapons, ray casting collision, optimized collision using OBB+Ray cast, character rotation on shot mode, two animations per character at a time, blood, shields, gun properties, and a compass were added.
Download (40.5MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1159 downloads
syncopt 1.1
syncopt is a flexible and simple approach to package install. more>>
The syncopt script and its associated work practices are yet another approach to the standard sysadmin problem of keeping multiple machines software installations up to date.
It is independent of the vendors packaging scheme and thus you can use either your vendors system or syncopt, or both!
The core notion is that the install is done once on a central machine and then syncopt takes care of attaching that to every client, often via cron.
- easy to use
- flexible enough to permit control of what is installed locally on a machine and what is served remotely from a central server (for disc space or other reasons)
- keep out of the way of the ``vendors namespace, to avoid treading on the vendors install and conversely to protect our additions from damage by vendor upgrades and patches.
Main features:
lightweight
- If a package is not to be installed local to a client then the burden is usually just two symlinks on the client.
optional
- You can install packages with syncopt or with the vendors packaging scheme, or both!
permits trial installs
- Under syncopt you can install multiple versions of the same package for trial or legacy purposes.
centralised
- The default package version is controlled by a symlink on the master host; change that and all the clients will follow suit next time they run syncopt.
customisable
- Clients can control which packages are local and also override which version is their default for a given package.
Using
Local Package Install
As a consequence, to make an instance of something local to a client machine (lets call it pkg, release version), remove the local symlink:
$ rm /opt/pkg-version
Make a stub directory:
$ mkdir /opt/pkg-version
Alternatively, just edit the .syncopt file and add this line:
pkg-version local
Run syncopt:
$ syncopt -x
That syncs everything. You can just do the new package like this:
$ syncopt -x pkg pkg-version
which syncs the generic (unversioned) link and the version specific local directory.
Undoing a Local Package Install
To make a once-local copy remote, remove the local copy:
$ rm -rf /opt/pkg-version
Also, if you edited the .syncopt file as above, remove that line.
Run syncopt:
$ syncopt -x pkg pkg-version
Bringing a Client into Sync after a New Package Install
To set up a new clients /opt directory after a fresh install:
$ mkdir /opt # if necessary
$ syncopt -x
/opt/.syncopt
The behaviour deduced from the presence or absence of a directory can be overridden with the /opt/.syncopt file, which contains line of the form:
pkg version
to make version the default package version on this particular machine, or
pkg local
to force a package to be local on this machine, or
pkg-version local
to make a particular version local, or
pkg nosync
to not run syncopt on it at all.
<<lessIt is independent of the vendors packaging scheme and thus you can use either your vendors system or syncopt, or both!
The core notion is that the install is done once on a central machine and then syncopt takes care of attaching that to every client, often via cron.
- easy to use
- flexible enough to permit control of what is installed locally on a machine and what is served remotely from a central server (for disc space or other reasons)
- keep out of the way of the ``vendors namespace, to avoid treading on the vendors install and conversely to protect our additions from damage by vendor upgrades and patches.
Main features:
lightweight
- If a package is not to be installed local to a client then the burden is usually just two symlinks on the client.
optional
- You can install packages with syncopt or with the vendors packaging scheme, or both!
permits trial installs
- Under syncopt you can install multiple versions of the same package for trial or legacy purposes.
centralised
- The default package version is controlled by a symlink on the master host; change that and all the clients will follow suit next time they run syncopt.
customisable
- Clients can control which packages are local and also override which version is their default for a given package.
Using
Local Package Install
As a consequence, to make an instance of something local to a client machine (lets call it pkg, release version), remove the local symlink:
$ rm /opt/pkg-version
Make a stub directory:
$ mkdir /opt/pkg-version
Alternatively, just edit the .syncopt file and add this line:
pkg-version local
Run syncopt:
$ syncopt -x
That syncs everything. You can just do the new package like this:
$ syncopt -x pkg pkg-version
which syncs the generic (unversioned) link and the version specific local directory.
Undoing a Local Package Install
To make a once-local copy remote, remove the local copy:
$ rm -rf /opt/pkg-version
Also, if you edited the .syncopt file as above, remove that line.
Run syncopt:
$ syncopt -x pkg pkg-version
Bringing a Client into Sync after a New Package Install
To set up a new clients /opt directory after a fresh install:
$ mkdir /opt # if necessary
$ syncopt -x
/opt/.syncopt
The behaviour deduced from the presence or absence of a directory can be overridden with the /opt/.syncopt file, which contains line of the form:
pkg version
to make version the default package version on this particular machine, or
pkg local
to force a package to be local on this machine, or
pkg-version local
to make a particular version local, or
pkg nosync
to not run syncopt on it at all.
Download (0.010MB)
Added: 2005-04-07 License: Freely Distributable Price:
1660 downloads
Ubuntu Lite 1.1
Ubuntu Lites idea is to bring the power of Ubuntu across to the users of Legacy systems. more>>
Ubuntu Lites idea is to bring the power of Ubuntu across to the users of Legacy systems. So not just to make a small linux as this has been done before (Puppy Linux, Damn Small linux, the Rule Project). Nor to make a useable linux based desktop Operating system (that has been done with Ubuntu Linux, Beatrix).
The idea is to bring the power of Ubuntu to the typical users of Legacy hardware (ie the grandma who gets an old P2 set up for her but does not know how to use it).
So to this end the Operating system needs to be:
* Easily used by people with minimal computer skills
* Useable on a resurected system (see system specifications below)
* and is able to satisfy a typical users requirement of Applications and functionality.
These are the three core aims of the Ubuntu Lite Project.
We will also provide development guides to anyone who wants to trim down their versions or help others use linux on reconditioned hardware. I hope that you enjoy Ubuntu Lite and that you find it useful.
<<lessThe idea is to bring the power of Ubuntu to the typical users of Legacy hardware (ie the grandma who gets an old P2 set up for her but does not know how to use it).
So to this end the Operating system needs to be:
* Easily used by people with minimal computer skills
* Useable on a resurected system (see system specifications below)
* and is able to satisfy a typical users requirement of Applications and functionality.
These are the three core aims of the Ubuntu Lite Project.
We will also provide development guides to anyone who wants to trim down their versions or help others use linux on reconditioned hardware. I hope that you enjoy Ubuntu Lite and that you find it useful.
Download (215MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
2023 downloads
FLAT::Legacy::FA::RE 0.1
FLAT::Legacy::FA::RE is a regular expression base class. more>>
FLAT::Legacy::FA::RE is a regular expression base class.
SYNOPSIS
use FLAT::Legacy::FA::RE;
use FLAT::Legacy::FA::NFA;
my $re = RE->new();
$re->set_re(a|b|(hi)*);
my $nfa = $re->to_nfa();
print $nfa->info(); # see stuff on NFA
my $dfa = $nfa->to_dfa();
print $dfa->info(); # see stuff on DFA
my @removed = $dfa->minimize();
print $dfa->info(); # see stuff on minimized DFA
print "Removed ".($#removed+1)." statesn";
This module implements a regular expression parser, and supports the conversion of a RE to a deterministic finite automata. A homegrown recursive descent parser is used to build the parse tree, and the method used to conver the regular expression to a DFA uses no intermediate NFA.
Recursive Descent-safe Regex Grammar:
R -> O
O -> CO
O -> | CO | epsilon
C -> SC
C -> .SC | epsilon
S -> LS
S -> *S | epsilon
L -> a | b | c |..| 0 | 1 | 2 |..| (R) | epsilon
Terminal symbols: a,b,c,..,z,0,1,2,..,9,|,*,(,)
NOTE: Concatenation operator, ., is not a terminal symbol and should not be included in the regex
FAQ: Q: Does this support Perl regular expressions?
A: No, just the regular expression using the terminal symbols listed above.
<<lessSYNOPSIS
use FLAT::Legacy::FA::RE;
use FLAT::Legacy::FA::NFA;
my $re = RE->new();
$re->set_re(a|b|(hi)*);
my $nfa = $re->to_nfa();
print $nfa->info(); # see stuff on NFA
my $dfa = $nfa->to_dfa();
print $dfa->info(); # see stuff on DFA
my @removed = $dfa->minimize();
print $dfa->info(); # see stuff on minimized DFA
print "Removed ".($#removed+1)." statesn";
This module implements a regular expression parser, and supports the conversion of a RE to a deterministic finite automata. A homegrown recursive descent parser is used to build the parse tree, and the method used to conver the regular expression to a DFA uses no intermediate NFA.
Recursive Descent-safe Regex Grammar:
R -> O
O -> CO
O -> | CO | epsilon
C -> SC
C -> .SC | epsilon
S -> LS
S -> *S | epsilon
L -> a | b | c |..| 0 | 1 | 2 |..| (R) | epsilon
Terminal symbols: a,b,c,..,z,0,1,2,..,9,|,*,(,)
NOTE: Concatenation operator, ., is not a terminal symbol and should not be included in the regex
FAQ: Q: Does this support Perl regular expressions?
A: No, just the regular expression using the terminal symbols listed above.
Download (0.032MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
SugarCRM 4.5.1
SugarCRM is the premier commercial open source customer relationship management application provider. more>>
SugarCRM project is the premier commercial open source customer relationship management application provider, breaking the rules set by conventional CRM solutions.
The limitations of traditional CRM software can be summarized by the lack of flexibility, high costs, and closed-source structure which is embedded into the traditional product offerings. This has led to a failure rate of over 70% with traditional CRM implementations.
SugarCRM provides a powerful solution built on a pure open source stack, offering functionality constructed by the best open source CRM experts from around the world. The Sugar Suite is SugarCRMs vanguard CRM solution that understands todays business demands.
SugarCRM provides a complete set of solutions to deliver the best CRM solution based on your needs. These include:
Main features:
- Low acquisition cost
- Low total cost of ownership (TCO)
- Fast and easy user adoption
- Flexible solution to blend with current business processes
- Open standards for low cost integration with legacy systems
<<lessThe limitations of traditional CRM software can be summarized by the lack of flexibility, high costs, and closed-source structure which is embedded into the traditional product offerings. This has led to a failure rate of over 70% with traditional CRM implementations.
SugarCRM provides a powerful solution built on a pure open source stack, offering functionality constructed by the best open source CRM experts from around the world. The Sugar Suite is SugarCRMs vanguard CRM solution that understands todays business demands.
SugarCRM provides a complete set of solutions to deliver the best CRM solution based on your needs. These include:
Main features:
- Low acquisition cost
- Low total cost of ownership (TCO)
- Fast and easy user adoption
- Flexible solution to blend with current business processes
- Open standards for low cost integration with legacy systems
Download (MB)
Added: 2007-02-25 License: MPL (Mozilla Public License) Price:
619 downloads
ifstat 1.1
ifstat is a tool to report network interface bandwith just like vmstat/iostat do for other system counters. more>>
ifstat is a tool to report network interface bandwith just like vmstat/iostat do for other system counters. It can monitor local interfaces by polling the kernel counters, or remote hosts interfaces using SNMP.
fstat gathers these statistics from the kernel internal counters, which is highly operating system dependent.
Right now, the following systems are supported:
Linux >= 2.2.0 (through /proc/net/dev file).
FreeBSD >= 2.2 (using the ifmib(4) interface).
Solaris >= 5.6 (using the kstat(3K) interface).
IRIX and OpenBSD (using the SIOCGIFDATA ioctl).
NetBSD and Darwin (using the route(4) sysctl interface).
Other BSDs (using the kvm(3) interface).
Digital Unix (OSF/1), Tru64, and Aix (using the legacy kmem interface).
HP-UX (using the DPLI streams interface).
Win32 native or through Cygwin (using the GetIfTable call).
If the net-snmp (or ucd-snmp) library is available, ifstat can use it to gather statistics from remote equipments (hosts, routers, switches...) or even the local host if a SNMP daemon is running.
ifstats functionnalities can as a static application. To use it, you just have to pass --enable-library while configuring ifstat.
Enhancements:
- Digital Unix (OSF/1) and Tru64 support.
- AIX support (tested on AIX v4.3).
- HP-UX support with DLPI streams interface. (sample code contributed by Jean-Marc Saffroy )
- Win32 support (native or with cygwin) with GetIfTable interface. (sample code contributed by Alexandre Raclot )
- Use net-snmp-config if present to find out SNMP flags.
<<lessfstat gathers these statistics from the kernel internal counters, which is highly operating system dependent.
Right now, the following systems are supported:
Linux >= 2.2.0 (through /proc/net/dev file).
FreeBSD >= 2.2 (using the ifmib(4) interface).
Solaris >= 5.6 (using the kstat(3K) interface).
IRIX and OpenBSD (using the SIOCGIFDATA ioctl).
NetBSD and Darwin (using the route(4) sysctl interface).
Other BSDs (using the kvm(3) interface).
Digital Unix (OSF/1), Tru64, and Aix (using the legacy kmem interface).
HP-UX (using the DPLI streams interface).
Win32 native or through Cygwin (using the GetIfTable call).
If the net-snmp (or ucd-snmp) library is available, ifstat can use it to gather statistics from remote equipments (hosts, routers, switches...) or even the local host if a SNMP daemon is running.
ifstats functionnalities can as a static application. To use it, you just have to pass --enable-library while configuring ifstat.
Enhancements:
- Digital Unix (OSF/1) and Tru64 support.
- AIX support (tested on AIX v4.3).
- HP-UX support with DLPI streams interface. (sample code contributed by Jean-Marc Saffroy )
- Win32 support (native or with cygwin) with GetIfTable interface. (sample code contributed by Alexandre Raclot )
- Use net-snmp-config if present to find out SNMP flags.
Download (0.019MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1223 downloads
MILA::Transliterate 0.01
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Cent more>>
MILA::Transliterate is a Perl Module for transliterating text from Hebrew to various transliterations used in the Knowledge Center for Processing Hebrew (MILA) and vise versa.
SYNOPSIS
use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);
# note that the reverse transliteration does NOT maintain final Hebrew letters!
Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).
This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.
This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.
<<lessSYNOPSIS
use MILA::Transliterate qw((hebrew2treebank hebrew2erel hebrew2fsma);
my $erel_transliterated = hebrew2erel($utf8_encoded_hebrew_text);
my $treebank_transliterated = hebrew2treebank($utf8_encoded_hebrew_text);
my $fsma_transliterated = hebrew2fsma($utf8_encoded_hebrew_text);
# note that the reverse transliteration does NOT maintain final Hebrew letters!
Before UNICODE was widely used, applications that were manipulating Hebrew text usually used some transliteration into ASCII characters instead of using Hebrew letters. This was particularly true for software developed in the academia. MILA is a nick name for the Knowledge Center for Processing Hebrew (see: http://mila.cs.technion.ac.il/).
This knowledge center develops software and standards that result from research in natural language processing for Hebrew. As a result, some legacy software also needs to be maintained and such legacy software usually used transliteration.
This module contains mapping from UTF-8 encoded Hebrew to the various transliteration schemes that MILA needs to support and also contains the reversed mapping.
Download (0.004MB)
Added: 2007-03-05 License: Perl Artistic License Price:
964 downloads
Gajim 0.11.1
Gajim is a Jabber client written in PyGTK. more>>
Gajim is a Jabber client written in PyGTK.
Gajim does not require GNOME to run, eventhough it exists with it nicely. Gajim is released under the GNU General Public License.
Main features:
- Tabbed chat windows
- Groupchat support (with MUC protocol)
- Emoticons, URL grabber
- Systray icon
- TLS & GPG support (with SSL legacy support)
- Transport Registration support
- Service Discovery including Nodes
- Multiple accounts support
- Gajim is available in English, French, German, Russian, Spanish, Polish, Portugese, Greek and Bulgarian
<<lessGajim does not require GNOME to run, eventhough it exists with it nicely. Gajim is released under the GNU General Public License.
Main features:
- Tabbed chat windows
- Groupchat support (with MUC protocol)
- Emoticons, URL grabber
- Systray icon
- TLS & GPG support (with SSL legacy support)
- Transport Registration support
- Service Discovery including Nodes
- Multiple accounts support
- Gajim is available in English, French, German, Russian, Spanish, Polish, Portugese, Greek and Bulgarian
Download (1.8MB)
Added: 2007-02-19 License: (FDL) GNU Free Documentation License Price:
980 downloads
XIAN 1.1
XIAN (a cross-layer Interface for wireless ad-hoc networks) is a generic interface for experimenting cross-layer. more>>
XIAN (a cross-layer Interface for wireless ad-hoc networks) is a generic interface for experimenting cross-layer designs with legacy 802.11 networking cards using the MadWifi driver on Linux platforms.
It can be used as a service by other network layers or system components to access information about the configuration and performance of MAC/PHY layers. The interface is fully implemented and is available for Linux over the MadWifi 802.11 driver.
Enhancements:
- Last Madwifi (BSD branch) drivers support
- Linux kernel 2.6 support
- Additionnal code example using XIAN (command line tools, QT widget, ...)
<<lessIt can be used as a service by other network layers or system components to access information about the configuration and performance of MAC/PHY layers. The interface is fully implemented and is available for Linux over the MadWifi 802.11 driver.
Enhancements:
- Last Madwifi (BSD branch) drivers support
- Linux kernel 2.6 support
- Additionnal code example using XIAN (command line tools, QT widget, ...)
Download (2.2MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
999 downloads
L4/Iguana 1.0
Iguana is designed as a base for the provision of operating system (OS) services for embedded systems. more>>
Iguana is designed as a base for the provision of operating system (OS) services for embedded systems. Among others, it provides the underlying OS for Wombat, our version of paravirtualised Linux designed to provide legacy support for embedded systems.
Iguana runs on top of the L4 microkernel, presently the Version 4 API as implemented by L4Ka::Pistachio. L4/Iguana is designed to support a painless transition to the new security-oriented API being developed for L4.
While it borrows many ideas from the Mungi operating system, Iguanas target domain of embedded systems requires a different approach to a number of issues. The main characteristics of Iguanas design are:
- Iguana complements, rather than hides the underlying L4 API. It provides services virtually every OS environment requires, such as memory and protection management, and a device driver framework;
- the memory and cache footprints of Iguana are kept small;
- low-overhead sharing of data is supported;
- Iguana supports the separation of protection and translation, by encouraging a non-overlapping address-space layout. This means that Iguana-based systems can be readily deployed on processors without virtual memory, and can also obtain the best possible performance on the ARM7 and ARM9 cores widely used in embedded systems.
<<lessIguana runs on top of the L4 microkernel, presently the Version 4 API as implemented by L4Ka::Pistachio. L4/Iguana is designed to support a painless transition to the new security-oriented API being developed for L4.
While it borrows many ideas from the Mungi operating system, Iguanas target domain of embedded systems requires a different approach to a number of issues. The main characteristics of Iguanas design are:
- Iguana complements, rather than hides the underlying L4 API. It provides services virtually every OS environment requires, such as memory and protection management, and a device driver framework;
- the memory and cache footprints of Iguana are kept small;
- low-overhead sharing of data is supported;
- Iguana supports the separation of protection and translation, by encouraging a non-overlapping address-space layout. This means that Iguana-based systems can be readily deployed on processors without virtual memory, and can also obtain the best possible performance on the ARM7 and ARM9 cores widely used in embedded systems.
Download (52.3MB)
Added: 2005-11-25 License: Other/Proprietary License with Source Price:
1433 downloads
Bky 1.1.0
Bky is a minimalistic, distributed Version Control System/Source Code Management tool. more>>
Bky is a minimalistic, distributed Version Control System/Source Code Management tool. Bky uses rsync as a backend to store revisions as complete trees, optimizing the size by storing unchanged files as hard links.
Main features:
Distributed
- The repository is not stored in a central server as in CVS or Subversion, but as a subdirectory inside your working directory, like Arch, Darcs or Linus Torvalds git. Developers communicate via patches.
Cheap branches
- Just copy your tree to another directory and youve started a new branch.
- Old history is easily pruned Legacy revisions can just be deleted or moved to another place with your usual filesystem tools.
Safety
- Any given revision under the repository is a directory with all your files that can be used, copied or stored as-is.
Repository is easily manipulable
- As every revision is stored as plain files, you can delete, add or modify files, or update the commit message without interfering.
No need for special commands to put files under version control
- Just create a file in your working directory and it will automatically be version-controlled. Uninteresting files as object files, libraries or other generated files are automatically ignored. Also, there is support for .cvsignore files.
Small dependencies
- Bky is a shell script. It needs rsync, diff and the usual Unix basic tools. You also need a filesystem that support hard and symbolic links. Thats it. Its just a version control system.
Enhancements:
- This release includes a script to convert a bky repository into a git one.
<<lessMain features:
Distributed
- The repository is not stored in a central server as in CVS or Subversion, but as a subdirectory inside your working directory, like Arch, Darcs or Linus Torvalds git. Developers communicate via patches.
Cheap branches
- Just copy your tree to another directory and youve started a new branch.
- Old history is easily pruned Legacy revisions can just be deleted or moved to another place with your usual filesystem tools.
Safety
- Any given revision under the repository is a directory with all your files that can be used, copied or stored as-is.
Repository is easily manipulable
- As every revision is stored as plain files, you can delete, add or modify files, or update the commit message without interfering.
No need for special commands to put files under version control
- Just create a file in your working directory and it will automatically be version-controlled. Uninteresting files as object files, libraries or other generated files are automatically ignored. Also, there is support for .cvsignore files.
Small dependencies
- Bky is a shell script. It needs rsync, diff and the usual Unix basic tools. You also need a filesystem that support hard and symbolic links. Thats it. Its just a version control system.
Enhancements:
- This release includes a script to convert a bky repository into a git one.
Download (0.011MB)
Added: 2007-08-13 License: BSD License Price:
491 downloads
SRP 2.1.1
The Secure Remote Password protocol is the core technology behind the Stanford SRP Authentication Project. more>>
The Secure Remote Password protocol is the core technology behind the Stanford SRP Authentication Project. The Project is an Open Source initiative that integrates secure password authentication into existing networking applications.
The Projects primary purpose is to improve password security by making strong password authentication technology a standard part of deployed real-world systems. This is accomplished by making this technology an easy-to-use, hassle-free alternative to weak and vulnerable legacy password authentication schemes. SRP makes these objectives possible because it offers a unique combination of password security, user convenience, and freedom from restrictive licenses.
This site serves as the semi-official home of the SRP distribution, which contains secure versions of Telnet and FTP. In addition, it contains links to a number of SRP-related projects, products (both commercial and non-commercial), and research on the Web.
SRP is a secure password-based authentication and key-exchange protocol. It solves the problem of authenticating clients to servers securely, in cases where the user of the client software must memorize a small secret (like a password) and carries no other secret information, and where the server carries a verifier for each user, which allows it to authenticate the client but which, if compromised, would not allow the attacker to impersonate the client. In addition, SRP exchanges a cryptographically-strong secret as a byproduct of successful authentication, which enables the two parties to communicate securely.
Enhancements:
- (telnet) Security fixes for vulnerabilities:
- CAN-2005-0468 Multiple Telnet Client env_opt_add() Buffer Overflow Vulnerability
- CAN-2005-0469 Multiple Telnet Client slc_add_reply() Buffer Overflow Vulnerability
- (libsrp) Change default group parameter test strategy to accept only parameters on the built-in list. Fix originally suggested by Bodo Moeller, University of Calgary.
- (libsrp) Fixed big in BigIntegerCmpInt when built against OpenSSL.
- (telnet) Use header file to declare errno when available.
- (all) Added support for GNU crypto (gcrypt).
<<lessThe Projects primary purpose is to improve password security by making strong password authentication technology a standard part of deployed real-world systems. This is accomplished by making this technology an easy-to-use, hassle-free alternative to weak and vulnerable legacy password authentication schemes. SRP makes these objectives possible because it offers a unique combination of password security, user convenience, and freedom from restrictive licenses.
This site serves as the semi-official home of the SRP distribution, which contains secure versions of Telnet and FTP. In addition, it contains links to a number of SRP-related projects, products (both commercial and non-commercial), and research on the Web.
SRP is a secure password-based authentication and key-exchange protocol. It solves the problem of authenticating clients to servers securely, in cases where the user of the client software must memorize a small secret (like a password) and carries no other secret information, and where the server carries a verifier for each user, which allows it to authenticate the client but which, if compromised, would not allow the attacker to impersonate the client. In addition, SRP exchanges a cryptographically-strong secret as a byproduct of successful authentication, which enables the two parties to communicate securely.
Enhancements:
- (telnet) Security fixes for vulnerabilities:
- CAN-2005-0468 Multiple Telnet Client env_opt_add() Buffer Overflow Vulnerability
- CAN-2005-0469 Multiple Telnet Client slc_add_reply() Buffer Overflow Vulnerability
- (libsrp) Change default group parameter test strategy to accept only parameters on the built-in list. Fix originally suggested by Bodo Moeller, University of Calgary.
- (libsrp) Fixed big in BigIntegerCmpInt when built against OpenSSL.
- (telnet) Use header file to declare errno when available.
- (all) Added support for GNU crypto (gcrypt).
Download (1.4MB)
Added: 2006-07-13 License: BSD License Price:
1199 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 lynns legacy 1.1 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