dr
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 30
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
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.
<<lessI 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.
Download (0.027MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
Graph::Writer::DrGeo 0.01
Graph::Writer::DrGeo can save the graph output DrGeo scheme script. more>>
Graph::Writer::DrGeo can save the graph output DrGeo scheme script.
SYNOPSIS
my $g = new Graph;
# Add some vertices/edges to $g
my $writer = Graph::Writer::DrGeo->new();
$writer->write_graph($g,"graph.scm");
# graph.scm can be evaluated and rendered with Dr.Geo
Dr. Geo is a GTK interactive geometry software. It allows one to create geometric figure plus the interactive manipulation of such figure in respect with their geometric constraints. It is useable in teaching situation with students from primary or secondary level.
Besides the general file format, Dr.Geo also provide a dynamic graph definition using the language of Scheme. This module save any Graph object into Scheme language, which can be evaluated and rendered in Dr.Geo.
So far the default layout is the circle layout, more kind of layout could be added, and patches welcome.
<<lessSYNOPSIS
my $g = new Graph;
# Add some vertices/edges to $g
my $writer = Graph::Writer::DrGeo->new();
$writer->write_graph($g,"graph.scm");
# graph.scm can be evaluated and rendered with Dr.Geo
Dr. Geo is a GTK interactive geometry software. It allows one to create geometric figure plus the interactive manipulation of such figure in respect with their geometric constraints. It is useable in teaching situation with students from primary or secondary level.
Besides the general file format, Dr.Geo also provide a dynamic graph definition using the language of Scheme. This module save any Graph object into Scheme language, which can be evaluated and rendered in Dr.Geo.
So far the default layout is the circle layout, more kind of layout could be added, and patches welcome.
Download (0.008MB)
Added: 2006-07-19 License: Perl Artistic License Price:
1193 downloads
Games::Tournament::RoundRobin 0.01
Games::Tournament::RoundRobin is a Perl module for Round-Robin Tournament Schedule Pairings. more>>
Games::Tournament::RoundRobin is a Perl module for Round-Robin Tournament Schedule Pairings.
SYNOPSIS
$schedule = Games::Tournament::RoundRobin->new;
$pairings = $schedule->indexesInRound($roundm);
$round = $schedule->meeting($member1, [$member2, $member3]);
...
Every member of a league of 2n players can be paired with every other member in 2n-1 rounds.
If the league members are (Inf, 1 .. 2n-1), then in round i, i can be paired with Inf, and a can meet b, where a+b = 2i (mod 2n-1).
METHODS
new
Games::Tournament::RoundRobin->new( v => 5, league => [Ha, Be, He])
Games::Tournament::RoundRobin->new( league => {A => $a, B => $b, C => $c})
where v (optional) is the number of league members, and league (optional) is a list (or a hash) reference to the individual unique league members. One of v, or league (which takes precedence) is necessary, and if league is not given, the members are identified by the numbers 0 .. n-1.
If the league is a list (or hash) of n objects, they should be instances of a class that overloads both string quoting with a name method and arithmetical operations with an index method. The index method, called on the n objects in order, should return the n numbers, 0 .. n-1, and in that order if they are presented as an array. If they are presented as a hash, the hash is stored internally as an array and the keys are discarded.
If the league is a list of strings or numbers, indexes are constructed for the values on the basis of their positions in the list, and if a hash of strings or numbers, on the basis of the lexicographic order of their keys. Each string is expected to be unique.
If n is odd, an additional n-1, Bye or object (a Games::League::Member object, by default) member, depending on the type of the first member in the league, is added at the end and n is increased by 1.
indexesInRound
$schedule->indexesInRound($m)
Returns an array reference of the pairings in round $m. This method is useful if you are using numbers to represent your league members. It is not so useful if you are using strings or objects and you dont know their index numbers. Positions in the array represent members. The values represent their partners. Each member is thus represented twice.
roundsInTournament
$t = $schedule-> roundsInTournament;
$round1 = $t[0];
$inRound1FourthWith = $t->[0]->[3];
$inLastRoundLastWith = $$t[-1][-1];
Returns, as a reference to an array of arrays, the pairings in all rounds of the tournament. This method is useful if you are using the algorithm indexes.
partner
$schedule->partner($member, $m)
Returns the partner of $member in round $m.
membersInRound
$schedule->membersInRound($m)
Returns an hash reference of the pairings in round $m. This method is useful if you are using strings or objects. Keys in the hash represent league members. If the league members are objects, their names are used as keys. If 2 names are the same, the names are changed to $name.1, $name.2 etc. The values are their partners. Each player is thus represented twice.
memberSchedule
$schedule->memberSchedule($member)
Returns, as an array reference, the partners who $member is matched with in the order in which they meet, ie round by round.
meeting
$schedule->meeting($member,$partner)
Returns the rounds (TODO and the venue) at which $member meets $partner.
meetings
$schedule->meetings($member1,[$member2,$member3,...])
Returns, as an array reference, the rounds (TODO and the venue) at which $member1 meets $member2, $member3, ...
index
$schedule->index($member)
Returns $members index, the number which is used to pair it with other members. The index is the position, 0..n-1, of the $member in the league argument to the constructor (if an array) or the constructed array (if a hash.)
If $member is not a member of the array, or is itself an index, undef is returned.
member
$schedule->member($index)
$schedule->member($name)
$bye = $schedule->member( $schedule->size-1 )
Returns the member represented by $index, a number which ranges from 0..n-1, or by $name, a string. If there is no such member, undef is returned.
partners
$schedule->partners($index)
$schedule->partners($name)
Returns an array reference of all the partners of the $indexed or $named member, in index order, or the order in the league argument.
realPartners
$schedule->realPartners($index)
Returns an array reference of all the partners of the $indexed member, excluding the Bye member. Dont use this if you have no Bye member, as it just leaves off the last member.
size
$schedule->size
Returns the number of members in the round robin. Sometimes this may not be the same as the number of league members specified, because the array of league members takes precedence if supplied, and a bye is added if the number is odd.
rounds
$schedule->rounds
Returns the number of rounds in the round robin. This equals the number of league members, minus 1.
<<lessSYNOPSIS
$schedule = Games::Tournament::RoundRobin->new;
$pairings = $schedule->indexesInRound($roundm);
$round = $schedule->meeting($member1, [$member2, $member3]);
...
Every member of a league of 2n players can be paired with every other member in 2n-1 rounds.
If the league members are (Inf, 1 .. 2n-1), then in round i, i can be paired with Inf, and a can meet b, where a+b = 2i (mod 2n-1).
METHODS
new
Games::Tournament::RoundRobin->new( v => 5, league => [Ha, Be, He])
Games::Tournament::RoundRobin->new( league => {A => $a, B => $b, C => $c})
where v (optional) is the number of league members, and league (optional) is a list (or a hash) reference to the individual unique league members. One of v, or league (which takes precedence) is necessary, and if league is not given, the members are identified by the numbers 0 .. n-1.
If the league is a list (or hash) of n objects, they should be instances of a class that overloads both string quoting with a name method and arithmetical operations with an index method. The index method, called on the n objects in order, should return the n numbers, 0 .. n-1, and in that order if they are presented as an array. If they are presented as a hash, the hash is stored internally as an array and the keys are discarded.
If the league is a list of strings or numbers, indexes are constructed for the values on the basis of their positions in the list, and if a hash of strings or numbers, on the basis of the lexicographic order of their keys. Each string is expected to be unique.
If n is odd, an additional n-1, Bye or object (a Games::League::Member object, by default) member, depending on the type of the first member in the league, is added at the end and n is increased by 1.
indexesInRound
$schedule->indexesInRound($m)
Returns an array reference of the pairings in round $m. This method is useful if you are using numbers to represent your league members. It is not so useful if you are using strings or objects and you dont know their index numbers. Positions in the array represent members. The values represent their partners. Each member is thus represented twice.
roundsInTournament
$t = $schedule-> roundsInTournament;
$round1 = $t[0];
$inRound1FourthWith = $t->[0]->[3];
$inLastRoundLastWith = $$t[-1][-1];
Returns, as a reference to an array of arrays, the pairings in all rounds of the tournament. This method is useful if you are using the algorithm indexes.
partner
$schedule->partner($member, $m)
Returns the partner of $member in round $m.
membersInRound
$schedule->membersInRound($m)
Returns an hash reference of the pairings in round $m. This method is useful if you are using strings or objects. Keys in the hash represent league members. If the league members are objects, their names are used as keys. If 2 names are the same, the names are changed to $name.1, $name.2 etc. The values are their partners. Each player is thus represented twice.
memberSchedule
$schedule->memberSchedule($member)
Returns, as an array reference, the partners who $member is matched with in the order in which they meet, ie round by round.
meeting
$schedule->meeting($member,$partner)
Returns the rounds (TODO and the venue) at which $member meets $partner.
meetings
$schedule->meetings($member1,[$member2,$member3,...])
Returns, as an array reference, the rounds (TODO and the venue) at which $member1 meets $member2, $member3, ...
index
$schedule->index($member)
Returns $members index, the number which is used to pair it with other members. The index is the position, 0..n-1, of the $member in the league argument to the constructor (if an array) or the constructed array (if a hash.)
If $member is not a member of the array, or is itself an index, undef is returned.
member
$schedule->member($index)
$schedule->member($name)
$bye = $schedule->member( $schedule->size-1 )
Returns the member represented by $index, a number which ranges from 0..n-1, or by $name, a string. If there is no such member, undef is returned.
partners
$schedule->partners($index)
$schedule->partners($name)
Returns an array reference of all the partners of the $indexed or $named member, in index order, or the order in the league argument.
realPartners
$schedule->realPartners($index)
Returns an array reference of all the partners of the $indexed member, excluding the Bye member. Dont use this if you have no Bye member, as it just leaves off the last member.
size
$schedule->size
Returns the number of members in the round robin. Sometimes this may not be the same as the number of league members specified, because the array of league members takes precedence if supplied, and a bye is added if the number is odd.
rounds
$schedule->rounds
Returns the number of rounds in the round robin. This equals the number of league members, minus 1.
Download (0.010MB)
Added: 2007-01-05 License: Perl Artistic License Price:
1024 downloads
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
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).
<<lessThis 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).
Download (663MB)
Added: 2006-12-19 License: GPL (GNU General Public License) Price:
1039 downloads
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.
<<lessIt 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.
Download (1.3MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1233 downloads
DAEMon Raco Libraries 0.3
DAEMon Raco Libraries (DRLibs) is a collection of useful functions, objects, and routines for C++. more>>
DAEMon Raco Libraries (DRLibs) is a collection of useful functions, objects, and routines for C++.
Enhancements:
- This release adds new libraries to manage object lists: doublelist.dr.h, simplelist.dr.h, and sortedlist.dr.h.
<<lessEnhancements:
- This release adds new libraries to manage object lists: doublelist.dr.h, simplelist.dr.h, and sortedlist.dr.h.
Download (0.028MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
968 downloads
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.
<<lessThis 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.
Download (1.7MB)
Added: 2007-06-04 License: BSD License Price:
872 downloads
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)
<<lessshwild 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)
Download (0.51MB)
Added: 2007-02-22 License: BSD License Price:
975 downloads
FuseNRG 0.04
FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. more>>
FuseNRG allows you to mount Ahead Nero NRG files on your Unix system with FUSE. On the mounted directory, there will be an ISO file, equivalent to the original NRG file. Such ISO file can be mounted with fuseiso or burned to a CD with cdrecord or even Ahead Nero itself.
Advantages over nrg2iso:
it does not require extra disk space for the ISO file
it does not require extra memory for the ISO file
you dont have to wait for the file to be converted (conversion is done on the fly)
Example:
$mkdir ../testNRG
$ls -la ../testNRG
total 8
drwxr-xr-x 2 quinho quinho 4096 May 19 00:39 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
$./fusenrg ../neroImage.nrg ../testNRG
$ls -la ../testNRG
total 4
drwxr-xr-x 2 root root 0 Dec 31 1969 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 quinho quinho 21821596 May 18 23:05 neroImage.nrg.iso
$mkdir ../testISO
$fuseiso ../testNRG/neroImage.nrg.iso ../testISO
$ls -la ../testISO
total 5234
dr-xr-xr-x 1 root root 2048 May 18 21:25 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 root root 15157180 Apr 21 15:44 DVB-T.rar
-r--r--r-- 1 root root 65989 Apr 19 23:00 PriceList MSRP April 2007.pdf
-r--r--r-- 1 root root 782 May 15 17:48 Shortcut to My Bills from December.gnumeric.lnk
-r--r--r-- 1 root root 1978 Apr 14 17:52 Users Guide.lnk
-r--r--r-- 1 root root 34354 Mar 8 07:02 MySampleDocumentation 2.txt
$fusermount -u ../testISO
$fusermount -u ../testNRG
$rmdir ../testISO ../testNRG
<<lessAdvantages over nrg2iso:
it does not require extra disk space for the ISO file
it does not require extra memory for the ISO file
you dont have to wait for the file to be converted (conversion is done on the fly)
Example:
$mkdir ../testNRG
$ls -la ../testNRG
total 8
drwxr-xr-x 2 quinho quinho 4096 May 19 00:39 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
$./fusenrg ../neroImage.nrg ../testNRG
$ls -la ../testNRG
total 4
drwxr-xr-x 2 root root 0 Dec 31 1969 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 quinho quinho 21821596 May 18 23:05 neroImage.nrg.iso
$mkdir ../testISO
$fuseiso ../testNRG/neroImage.nrg.iso ../testISO
$ls -la ../testISO
total 5234
dr-xr-xr-x 1 root root 2048 May 18 21:25 .
drwxr-xr-x 16 quinho users 4096 May 19 00:39 ..
-r--r--r-- 1 root root 15157180 Apr 21 15:44 DVB-T.rar
-r--r--r-- 1 root root 65989 Apr 19 23:00 PriceList MSRP April 2007.pdf
-r--r--r-- 1 root root 782 May 15 17:48 Shortcut to My Bills from December.gnumeric.lnk
-r--r--r-- 1 root root 1978 Apr 14 17:52 Users Guide.lnk
-r--r--r-- 1 root root 34354 Mar 8 07:02 MySampleDocumentation 2.txt
$fusermount -u ../testISO
$fusermount -u ../testNRG
$rmdir ../testISO ../testNRG
Download (0.019MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
543 downloads
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"
<<lessInstallation:
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"
Download (0.70MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
922 downloads
EndoShield 1.2
Endoshield is a fully configurable easy to use firewall. more>>
Endoshield is a fully configurable easy to use firewall, which will run under the 2.2 Linux kernel (ipchains), or the 2.4 Linux Kernel (iptables). It is aimed at home users who have no knowledge of how to make their own firewalls, but can also be configured for server machines, or for machines running on a local network.
Endoshield can also be told to share your internet connection with other machines on you local network, providing home users with an easy and secure way to connect their network to the internet, without the risk of leaving unnecessary ports open.
The script itself is a modified version of firemasq, which was written by Dr Teeth, a member of the northern lights group.
<<lessEndoshield can also be told to share your internet connection with other machines on you local network, providing home users with an easy and secure way to connect their network to the internet, without the risk of leaving unnecessary ports open.
The script itself is a modified version of firemasq, which was written by Dr Teeth, a member of the northern lights group.
Download (0.003MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1199 downloads
CurlFtpFS 0.9.1
CurlFtpFS is a filesystem for acessing FTP hosts based on FUSE and libcurl. more>>
CurlFtpFS is a filesystem for acessing FTP hosts based on FUSE and libcurl. CurlFtpFS project automatically reconnects if the server times out.
Examples:
Using CurlFtpFS is quite simple. Take a look at this example:
$ mkdir sunet
$ curlftpfs ftp://ftp.sunet.se/ sunet/
$ cd sunet/
$ ls -l
total 0
dr-xr-xr-x 3 root root 96 Feb 23 2004 bin
dr-xr-xr-x 2 root root 72 Mar 2 2004 dev
dr-xr-xr-x 2 root root 48 Feb 23 2004 etc
dr-xr-xr-x 2 root root 120 Feb 23 2004 lib
-rw-r--r-- 1 root root 622187310 Mar 11 06:13 ls-lR
-rw-r--r-- 1 root root 76389037 Mar 11 06:15 ls-lR.gz
drwxrwxr-x 37 root root 1272 Feb 27 14:17 pub
dr-xr-xr-x 3 root root 72 Feb 23 2004 usr
<<lessExamples:
Using CurlFtpFS is quite simple. Take a look at this example:
$ mkdir sunet
$ curlftpfs ftp://ftp.sunet.se/ sunet/
$ cd sunet/
$ ls -l
total 0
dr-xr-xr-x 3 root root 96 Feb 23 2004 bin
dr-xr-xr-x 2 root root 72 Mar 2 2004 dev
dr-xr-xr-x 2 root root 48 Feb 23 2004 etc
dr-xr-xr-x 2 root root 120 Feb 23 2004 lib
-rw-r--r-- 1 root root 622187310 Mar 11 06:13 ls-lR
-rw-r--r-- 1 root root 76389037 Mar 11 06:15 ls-lR.gz
drwxrwxr-x 37 root root 1272 Feb 27 14:17 pub
dr-xr-xr-x 3 root root 72 Feb 23 2004 usr
Download (0.084MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
942 downloads
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.
<<lessThe 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.
Download (0.61MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1112 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 2
- 1
- 2
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above dr 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