1407 benedict canyon dr
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 33
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.
<<lessStandard 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.
Download (549.1MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1380 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
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
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
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
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
Gtk-engines 2.11.6
Gtk-engines is a package containing a number of sample themes for GTK+. more>>
Gtk-engines is a package containing a number of sample themes for GTK+.
Main features:
Free
- GNOME is Free Software and part of the GNU project, dedicated to giving users and developers the ultimate level of control over their desktops, their software, and their data. Find out more about the GNU project and Free Software at gnu.org.
Usable
- GNOME understands that usability is about creating software that is easy for everyone to use, not about piling on features. GNOMEs community of professional and volunteer usability experts have created Free Softwares first and only Human Interface Guidelines, and all core GNOME software is adopting these principles. Find out more about GNOME and usability at the GNOME Usability Project.
Accessible
- Free Software is about enabling software freedom for everyone, including users and developers with disabilities. GNOMEs Accessibility framework is the result of several years of effort, and makes GNOME the most accessible desktop for any Unix platform. Find out more at the GNOME Accessibility Project.
International
- GNOME is used, developed and documented in dozens of languages, and we strive to ensure that every piece of GNOME software can be translated into all languages. Find out more at the GNOME Translation Project.
Developer-friendly
- Developers are not tied to a single language with GNOME. You can use C, C++, Python, Perl, Java, even C#, to produce high-quality applications that integrate smoothly into the rest of your Unix or Linux desktop.
Organized
- GNOME strives to be an organized community, with a foundation of several hundred members, usability, accessibility, and QA teams, and an elected board. GNOME releases are defined by the GNOME Release Team and are scheduled to occur every six months.
Supported
- Beyond the worldwide GNOME Community, GNOME is supported by the leading companies in Linux and Unix, including HP, MandrakeSoft, Novell, Red Hat, and Sun. Find out more at foundation.gnome.org.
A community
- Perhaps more than anything else, GNOME is a worldwide community of volunteers who hack, translate, design, QA, and generally have fun together. Find out more at GNOME Developers site.
Enhancements:
- Clearlooks theme scrollbars are no longer colored (Bug #462723)
- Improved Gummy scale fill level drawing
- Clearlooks notebook fix for right to left langues
New and updated Translations:
- Ilkka Tuohela (fi)
- Simos Xenitellis (el)
- Dr.T.Vasudevan (ta)
<<lessMain features:
Free
- GNOME is Free Software and part of the GNU project, dedicated to giving users and developers the ultimate level of control over their desktops, their software, and their data. Find out more about the GNU project and Free Software at gnu.org.
Usable
- GNOME understands that usability is about creating software that is easy for everyone to use, not about piling on features. GNOMEs community of professional and volunteer usability experts have created Free Softwares first and only Human Interface Guidelines, and all core GNOME software is adopting these principles. Find out more about GNOME and usability at the GNOME Usability Project.
Accessible
- Free Software is about enabling software freedom for everyone, including users and developers with disabilities. GNOMEs Accessibility framework is the result of several years of effort, and makes GNOME the most accessible desktop for any Unix platform. Find out more at the GNOME Accessibility Project.
International
- GNOME is used, developed and documented in dozens of languages, and we strive to ensure that every piece of GNOME software can be translated into all languages. Find out more at the GNOME Translation Project.
Developer-friendly
- Developers are not tied to a single language with GNOME. You can use C, C++, Python, Perl, Java, even C#, to produce high-quality applications that integrate smoothly into the rest of your Unix or Linux desktop.
Organized
- GNOME strives to be an organized community, with a foundation of several hundred members, usability, accessibility, and QA teams, and an elected board. GNOME releases are defined by the GNOME Release Team and are scheduled to occur every six months.
Supported
- Beyond the worldwide GNOME Community, GNOME is supported by the leading companies in Linux and Unix, including HP, MandrakeSoft, Novell, Red Hat, and Sun. Find out more at foundation.gnome.org.
A community
- Perhaps more than anything else, GNOME is a worldwide community of volunteers who hack, translate, design, QA, and generally have fun together. Find out more at GNOME Developers site.
Enhancements:
- Clearlooks theme scrollbars are no longer colored (Bug #462723)
- Improved Gummy scale fill level drawing
- Clearlooks notebook fix for right to left langues
New and updated Translations:
- Ilkka Tuohela (fi)
- Simos Xenitellis (el)
- Dr.T.Vasudevan (ta)
Download (0.65MB)
Added: 2007-08-18 License: LGPL (GNU Lesser General Public License) Price:
801 downloads
B::CC 5.8.8
B::CC is Perl compilers optimized C translation backend. more>>
B::CC is Perl compilers optimized C translation backend.
SYNOPSIS
perl -MO=CC[,OPTIONS] foo.pl
This compiler backend takes Perl source and generates C source code corresponding to the flow of your program. In other words, this backend is somewhat a "real" compiler in the sense that many people think about compilers. Note however that, currently, it is a very poor compiler in that although it generates (mostly, or at least sometimes) correct code, it performs relatively few optimisations. This will change as the compiler develops. The result is that running an executable compiled with this backend may start up more quickly than running the original Perl program (a feature shared by the C compiler backend--see B::C) and may also execute slightly faster. This is by no means a good optimising compiler--yet.
OPTIONS
If there are any non-option arguments, they are taken to be names of objects to be saved (probably doesnt work properly yet). Without extra arguments, it saves the main program.
-ofilename
Output to filename instead of STDOUT
-v
Verbose compilation (currently gives a few compilation statistics).
--
Force end of options
-uPackname
Force apparently unused subs from package Packname to be compiled. This allows programs to use eval "foo()" even when sub foo is never seen to be used at compile time. The down side is that any subs which really are never used also have code generated. This option is necessary, for example, if you have a signal handler foo which you initialise with $SIG{BAR} = "foo". A better fix, though, is just to change it to $SIG{BAR} = &foo. You can have multiple -u options. The compiler tries to figure out which packages may possibly have subs in which need compiling but the current version doesnt do it very well. In particular, it is confused by nested packages (i.e. of the form A::B) where package A does not contain any subs.
-mModulename
Instead of generating source for a runnable executable, generate source for an XSUB module. The boot_Modulename function (which DynaLoader can look for) does the appropriate initialisation and runs the main part of the Perl source that is being compiled.
-D
Debug options (concatenated or separate flags like perl -D).
-Dr
Writes debugging output to STDERR just as its about to write to the programs runtime (otherwise writes debugging info as comments in its C output).
-DO
Outputs each OP as its compiled
-Ds
Outputs the contents of the shadow stack at each OP
-Dp
Outputs the contents of the shadow pad of lexicals as its loaded for each sub or the main program.
-Dq
Outputs the name of each fake PP function in the queue as its about to process it.
-Dl
Output the filename and line number of each original line of Perl code as its processed (pp_nextstate).
-Dt
Outputs timing information of compilation stages.
-f
Force optimisations on or off one at a time.
-ffreetmps-each-bblock
Delays FREETMPS from the end of each statement to the end of the each basic block.
-ffreetmps-each-loop
Delays FREETMPS from the end of each statement to the end of the group of basic blocks forming a loop. At most one of the freetmps-each-* options can be used.
-fomit-taint
Omits generating code for handling perls tainting mechanism.
-On
Optimisation level (n = 0, 1, 2, ...). -O means -O1. Currently, -O1 sets -ffreetmps-each-bblock and -O2 sets -ffreetmps-each-loop.
<<lessSYNOPSIS
perl -MO=CC[,OPTIONS] foo.pl
This compiler backend takes Perl source and generates C source code corresponding to the flow of your program. In other words, this backend is somewhat a "real" compiler in the sense that many people think about compilers. Note however that, currently, it is a very poor compiler in that although it generates (mostly, or at least sometimes) correct code, it performs relatively few optimisations. This will change as the compiler develops. The result is that running an executable compiled with this backend may start up more quickly than running the original Perl program (a feature shared by the C compiler backend--see B::C) and may also execute slightly faster. This is by no means a good optimising compiler--yet.
OPTIONS
If there are any non-option arguments, they are taken to be names of objects to be saved (probably doesnt work properly yet). Without extra arguments, it saves the main program.
-ofilename
Output to filename instead of STDOUT
-v
Verbose compilation (currently gives a few compilation statistics).
--
Force end of options
-uPackname
Force apparently unused subs from package Packname to be compiled. This allows programs to use eval "foo()" even when sub foo is never seen to be used at compile time. The down side is that any subs which really are never used also have code generated. This option is necessary, for example, if you have a signal handler foo which you initialise with $SIG{BAR} = "foo". A better fix, though, is just to change it to $SIG{BAR} = &foo. You can have multiple -u options. The compiler tries to figure out which packages may possibly have subs in which need compiling but the current version doesnt do it very well. In particular, it is confused by nested packages (i.e. of the form A::B) where package A does not contain any subs.
-mModulename
Instead of generating source for a runnable executable, generate source for an XSUB module. The boot_Modulename function (which DynaLoader can look for) does the appropriate initialisation and runs the main part of the Perl source that is being compiled.
-D
Debug options (concatenated or separate flags like perl -D).
-Dr
Writes debugging output to STDERR just as its about to write to the programs runtime (otherwise writes debugging info as comments in its C output).
-DO
Outputs each OP as its compiled
-Ds
Outputs the contents of the shadow stack at each OP
-Dp
Outputs the contents of the shadow pad of lexicals as its loaded for each sub or the main program.
-Dq
Outputs the name of each fake PP function in the queue as its about to process it.
-Dl
Output the filename and line number of each original line of Perl code as its processed (pp_nextstate).
-Dt
Outputs timing information of compilation stages.
-f
Force optimisations on or off one at a time.
-ffreetmps-each-bblock
Delays FREETMPS from the end of each statement to the end of the each basic block.
-ffreetmps-each-loop
Delays FREETMPS from the end of each statement to the end of the group of basic blocks forming a loop. At most one of the freetmps-each-* options can be used.
-fomit-taint
Omits generating code for handling perls tainting mechanism.
-On
Optimisation level (n = 0, 1, 2, ...). -O means -O1. Currently, -O1 sets -ffreetmps-each-bblock and -O2 sets -ffreetmps-each-loop.
Download (12.2MB)
Added: 2007-06-26 License: Perl Artistic License Price:
855 downloads
EvilEntity Linux 0.2.5
EvilEntity paves the road for a new generation of Linuxes to follow. more>>
EvilEntity is different. Very different! Designed with idealistic integrity, EvilEntity paves the road for a new generation of Linuxes to follow. We provide features without bloat.
This means performance, serious performance like no other OS currently offers. EvilEntity Linux is the development branch of a desktop Linux distribution designed specifically for the multimedia poweruser, videogamers, audio/video professionals, and speed freaks.
EvilEntity is a complete replacement for your current inferior OS. With EvilEntity installed you can be up and running, online, ripping MP3s, burning CDs, watching DVDs and TV, editing video and audio, and creating 3D models in minutes.
Installation:
1. Insert the EvilEntity CDROM, Reboot, and Press "Enter" at introduction screen to begin.
2. Wait
3. You will now see the startup screen
4. Select yes to Partition Setup question if your harddrive is not setup for Linux.
5. Partition hard drive with cfdisk
6. Partition your dark drive option - press "Yes"
7. Select the hard drive to be partitioned- type,"/dev/your device {ex. hda} "
8. Setup up a swap partition (128Mb) hda1 Primary Linux swap 128
9. Setup up a root partition- hda2 Boot Primary Linux 20003.89
10. Write changes to disk - select,"write" then type "yes"
11. Quit cfdisk - select "quit"
12. Format Swap - select partition - select yes
13. Format Root - select root partition - select yes
14. Select additional mount points
15. Format Partitions
16. Install
17. Hit enter a few times
18. wait *(DR-0.2.5 takes 3 minutes 47 seconds to install [Athlon1800+, 7200rpm hd, 52xCD])
19. Reboot
20. Remove CD
21. press enter to reboot
22. login root
23. setup Video, network, users with econfigure
24. login as new user
<<lessThis means performance, serious performance like no other OS currently offers. EvilEntity Linux is the development branch of a desktop Linux distribution designed specifically for the multimedia poweruser, videogamers, audio/video professionals, and speed freaks.
EvilEntity is a complete replacement for your current inferior OS. With EvilEntity installed you can be up and running, online, ripping MP3s, burning CDs, watching DVDs and TV, editing video and audio, and creating 3D models in minutes.
Installation:
1. Insert the EvilEntity CDROM, Reboot, and Press "Enter" at introduction screen to begin.
2. Wait
3. You will now see the startup screen
4. Select yes to Partition Setup question if your harddrive is not setup for Linux.
5. Partition hard drive with cfdisk
6. Partition your dark drive option - press "Yes"
7. Select the hard drive to be partitioned- type,"/dev/your device {ex. hda} "
8. Setup up a swap partition (128Mb) hda1 Primary Linux swap 128
9. Setup up a root partition- hda2 Boot Primary Linux 20003.89
10. Write changes to disk - select,"write" then type "yes"
11. Quit cfdisk - select "quit"
12. Format Swap - select partition - select yes
13. Format Root - select root partition - select yes
14. Select additional mount points
15. Format Partitions
16. Install
17. Hit enter a few times
18. wait *(DR-0.2.5 takes 3 minutes 47 seconds to install [Athlon1800+, 7200rpm hd, 52xCD])
19. Reboot
20. Remove CD
21. press enter to reboot
22. login root
23. setup Video, network, users with econfigure
24. login as new user
Download (702MB)
Added: 2005-05-16 License: GPL (GNU General Public License) Price:
1625 downloads
Zebedee 2.5.3
Zebedee is a simple program to establish an encrypted, compressed tunnel for TCP/IP or UDP data transfer between two systems. more>>
Zebedee is a simple program to establish an encrypted, compressed "tunnel" for TCP/IP or UDP data transfer between two systems.
This allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks.
Zebedee is made with next goals in mind:
Provide client and server functionality under both UNIX/Linux and Windows.
Be easy to install, use and maintain with little or no configuration required.
Have a small footprint, low wire protocol overhead and give significant traffic reduction by the use of compression.
Use only algorithms that are either unpatented or for which the patent has expired.
Be entirely free for commercial or non-commercial use and distributed under the term of the GNU General Public Licence (see LICENCE.txt for details).
For further information on how to use Zebedee see the filezebedee.html in the distribution (or the manual page for zebedee(1) under UNIX -- it is basically the same text). Example
configuration files are also provided.
Versions of Zebedee in the 2.4.x series are stable, "production" versions. The development series, containing new features, but less well tested is numbered 2.5.x.
Enhancements:
- Fix file descriptor leak when IP address lookup fails.
- Fix problem with running a server in "reverse" mode and detached -- only
- apparent on Windows.
- Add "maxconnections" to alleviate DoS attack.
- Check for target port 0 to avoid DoS.
- Linux 64-bit port (a result of the "Linux on POWER" contest) courtesy of
- Stew Benedict . Use the "linux64" OS target.
- Upgraded version of bzip2 and zlib.
<<lessThis allows data from, for example, telnet, ftp and X sessions to be protected from snooping. You can also use compression, either with or without data encryption, to gain performance over low-bandwidth networks.
Zebedee is made with next goals in mind:
Provide client and server functionality under both UNIX/Linux and Windows.
Be easy to install, use and maintain with little or no configuration required.
Have a small footprint, low wire protocol overhead and give significant traffic reduction by the use of compression.
Use only algorithms that are either unpatented or for which the patent has expired.
Be entirely free for commercial or non-commercial use and distributed under the term of the GNU General Public Licence (see LICENCE.txt for details).
For further information on how to use Zebedee see the filezebedee.html in the distribution (or the manual page for zebedee(1) under UNIX -- it is basically the same text). Example
configuration files are also provided.
Versions of Zebedee in the 2.4.x series are stable, "production" versions. The development series, containing new features, but less well tested is numbered 2.5.x.
Enhancements:
- Fix file descriptor leak when IP address lookup fails.
- Fix problem with running a server in "reverse" mode and detached -- only
- apparent on Windows.
- Add "maxconnections" to alleviate DoS attack.
- Check for target port 0 to avoid DoS.
- Linux 64-bit port (a result of the "Linux on POWER" contest) courtesy of
- Stew Benedict . Use the "linux64" OS target.
- Upgraded version of bzip2 and zlib.
Download (0.17MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1203 downloads
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
<<lessSciences 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
Download (693.7MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1239 downloads
THC-Shagg 0.2.0
THC-Shagg is a modular application to bruteforce check digit algorithms. more>>
THC-Shagg is a modular application to bruteforce check digit algorithms. THC-Shagg project can be used to gain information about serial numbers that use check digit algorithms.
Once THC-Shagg has analysed a set of serial numbers and found matching check digit algorithms, it is able to generate complete new serial numbers using a saved file containg the matched states.
This page demonstrates the use of THC-Shagg in "daily" life and lists some serial numbers, that have been successfully analysed using Shagg.
Development & Contributions
Youve found some serial numbers and were able to analyse the check digit algorithms using Shagg. Youve some new ideas, you know something about fresh or still un-implemented check digit algorithms. Contribute! And help us making THC Shagg more powerful. Feel free to drop an email to Plasmoid, plasmoid@thc.org.
If you are interested in joining THC, why not write some new classes for THC-Shagg or extend the current version to analyse Web session IDs or other serial numbers? The documented programming API to all classes and interfaces is available online. The source code for THC-Shagg is bundled with the current release, so that you can compile it yourself, if you want to.
How it works:
A check digit algorithm uses the digits of a serial number to construct a check digit, it is not necessary that the digits are numeric values, they can be extended to alpha-numeric values. THC-Shagg currently implements the following algorithms:
Full name Internal name
-------------------------------- ----------------
binary Modulus 7 DR Modulus 7
binary Modulus 9 DR Modulus 9
weighted Modulus 10 DR Modulus 10 Basic
weighted Modulus 10 Luhn Modulus 10 Luhn
weighted Modulus 10 IBM Modulus 10 CC
weighted Modulus 11 DSR Modulus 11
Future releases will implement more algorithms. To get a list of all available algorithms use the -A. For simplicity this version mixes binary and weighted algorithms, DR and DSR algorithms, future version of THC-Shagg may include separate options for binary, weighted, DR and DSR algorithms. As this is the first release, only the most common algorithms have been implemented.
For details on the concept of each algorithms consult the source code of THC-Shagg or browse the web, there are some good information covering these algorithms.
Most of the algorithms above operate using so called weights. Weights are just a sequence of numbers that are multiplied with the individual digits of the serial number to be checked. THC-Shagg generates all weights up to a specified length and checks the serial numbers against all of these weight using all algorithms.
Example: All weights up to length 3
1,2,3,4,5,6,7,8,9,
01,02,03,04,05,06,07,08,09,10,...99
001,002,003,004,005,006,007,...999
THC-Shagg ignores all weights that only consist of zeros because they result in fault-positives and are not used in check digit algorithms.
In order to find the position of a check digit, THC-Shagg splits the serial numbers into partitions. A partition has a head and a tail, these parts are ignored during analysis of the serial numbers. THC-Shagg generates all partitions up to a specified minimum length where length is the length of the part to be analyzed. The programs checks the serial number against these partitions using weights and algorithms.
<<lessOnce THC-Shagg has analysed a set of serial numbers and found matching check digit algorithms, it is able to generate complete new serial numbers using a saved file containg the matched states.
This page demonstrates the use of THC-Shagg in "daily" life and lists some serial numbers, that have been successfully analysed using Shagg.
Development & Contributions
Youve found some serial numbers and were able to analyse the check digit algorithms using Shagg. Youve some new ideas, you know something about fresh or still un-implemented check digit algorithms. Contribute! And help us making THC Shagg more powerful. Feel free to drop an email to Plasmoid, plasmoid@thc.org.
If you are interested in joining THC, why not write some new classes for THC-Shagg or extend the current version to analyse Web session IDs or other serial numbers? The documented programming API to all classes and interfaces is available online. The source code for THC-Shagg is bundled with the current release, so that you can compile it yourself, if you want to.
How it works:
A check digit algorithm uses the digits of a serial number to construct a check digit, it is not necessary that the digits are numeric values, they can be extended to alpha-numeric values. THC-Shagg currently implements the following algorithms:
Full name Internal name
-------------------------------- ----------------
binary Modulus 7 DR Modulus 7
binary Modulus 9 DR Modulus 9
weighted Modulus 10 DR Modulus 10 Basic
weighted Modulus 10 Luhn Modulus 10 Luhn
weighted Modulus 10 IBM Modulus 10 CC
weighted Modulus 11 DSR Modulus 11
Future releases will implement more algorithms. To get a list of all available algorithms use the -A. For simplicity this version mixes binary and weighted algorithms, DR and DSR algorithms, future version of THC-Shagg may include separate options for binary, weighted, DR and DSR algorithms. As this is the first release, only the most common algorithms have been implemented.
For details on the concept of each algorithms consult the source code of THC-Shagg or browse the web, there are some good information covering these algorithms.
Most of the algorithms above operate using so called weights. Weights are just a sequence of numbers that are multiplied with the individual digits of the serial number to be checked. THC-Shagg generates all weights up to a specified length and checks the serial numbers against all of these weight using all algorithms.
Example: All weights up to length 3
1,2,3,4,5,6,7,8,9,
01,02,03,04,05,06,07,08,09,10,...99
001,002,003,004,005,006,007,...999
THC-Shagg ignores all weights that only consist of zeros because they result in fault-positives and are not used in check digit algorithms.
In order to find the position of a check digit, THC-Shagg splits the serial numbers into partitions. A partition has a head and a tail, these parts are ignored during analysis of the serial numbers. THC-Shagg generates all partitions up to a specified minimum length where length is the length of the part to be analyzed. The programs checks the serial number against these partitions using weights and algorithms.
Download (0.13MB)
Added: 2006-03-08 License: GPL (GNU General Public License) Price:
1329 downloads
OpenLogos 1.0.1
OpenLogos project is a large and powerful machine translation system that supports German and English as source languages. more>>
OpenLogos project is a large and powerful machine translation system that supports German and English as source languages and major European languages such as French, Italian, Spanish, and Portuguese as target languages. Additional language pairs are in development.
The LOGOS Machine translation system is one of the largest and most powerful among the commercial machine translation systems. Various text documents in different formats can be submitted to the system and within a short amount of time are translated into different target languages.
The result, a raw translation, is already of high language quality. But if required, the result can be post-edited by a human translator. The user saves a significant amount of time and costs especially since the use of different document filters maintain the format of the original document to a high degree.
Currently German and English are the source languages available. The target languages for English include the major European languages (such as French, Italian, Spanish and Portuguese). Additional language pairs are in development.
The system "can learn" in the sense that a trained user quickly is able to maintain terminology and dictionaries and can also establish his own user dictionary. This is important if the text to be translated belongs to a subject area with specific terminology.
The system already has a complex hierarchical system of specialized dictionaries easily accessible for the user. Therefore, from its approach, the LOGOS engine is a "universal problem solving machine" which can process any text in any subject area. "Fine-tuning" or "specialization" is accomplished with the appropriate terminology work.
The LOGOS system had been developed over 30 years to its present form. It requires enormous efforts and resources to develop such a system and extend it, e.g. to new languages. This has the effect that translation systems for smaller languages are commercially less attractive and therefore often are neglected. The availability of the LOGOS system as open source can change this situation:
The LOGOS engine provides a general platform and base system for integrating language specific resources. This spares the effort of developing own base systems from scratch.
The open source nature makes it possible to further develop and improve the base system in an open community process in which everybody can participate and from which all can profit.
The effort of building new translation systems for new language pairs is substantially reduced.
Scientifically, a large high-quality, open domain translation system can boost further development of MT systems e.g. by providing evaluation base lines for new directions and approaches. LOGOS provides the necessary large-scale coverage for such use.
The availability of source code allows integration of new modules and components into the overall system and to combine it with other software systems in more innovative ways than in an black box manner. Especially, combining the fine-grained linguistic information contained in large-scale high-quality rule-based MT-systems with powerful statistical technologies which evolved over the last years appears as an attractive option under such an approach.
Enhancements:
- This version was ported from Windows and Oracle to Linux and PostgreSQL.
<<lessThe LOGOS Machine translation system is one of the largest and most powerful among the commercial machine translation systems. Various text documents in different formats can be submitted to the system and within a short amount of time are translated into different target languages.
The result, a raw translation, is already of high language quality. But if required, the result can be post-edited by a human translator. The user saves a significant amount of time and costs especially since the use of different document filters maintain the format of the original document to a high degree.
Currently German and English are the source languages available. The target languages for English include the major European languages (such as French, Italian, Spanish and Portuguese). Additional language pairs are in development.
The system "can learn" in the sense that a trained user quickly is able to maintain terminology and dictionaries and can also establish his own user dictionary. This is important if the text to be translated belongs to a subject area with specific terminology.
The system already has a complex hierarchical system of specialized dictionaries easily accessible for the user. Therefore, from its approach, the LOGOS engine is a "universal problem solving machine" which can process any text in any subject area. "Fine-tuning" or "specialization" is accomplished with the appropriate terminology work.
The LOGOS system had been developed over 30 years to its present form. It requires enormous efforts and resources to develop such a system and extend it, e.g. to new languages. This has the effect that translation systems for smaller languages are commercially less attractive and therefore often are neglected. The availability of the LOGOS system as open source can change this situation:
The LOGOS engine provides a general platform and base system for integrating language specific resources. This spares the effort of developing own base systems from scratch.
The open source nature makes it possible to further develop and improve the base system in an open community process in which everybody can participate and from which all can profit.
The effort of building new translation systems for new language pairs is substantially reduced.
Scientifically, a large high-quality, open domain translation system can boost further development of MT systems e.g. by providing evaluation base lines for new directions and approaches. LOGOS provides the necessary large-scale coverage for such use.
The availability of source code allows integration of new modules and components into the overall system and to combine it with other software systems in more innovative ways than in an black box manner. Especially, combining the fine-grained linguistic information contained in large-scale high-quality rule-based MT-systems with powerful statistical technologies which evolved over the last years appears as an attractive option under such an approach.
Enhancements:
- This version was ported from Windows and Oracle to Linux and PostgreSQL.
Download (7.4MB)
Added: 2006-01-09 License: GPL (GNU General Public License) Price:
1384 downloads
Bio::Ontology::GOterm 1.4
Bio::Ontology::GOterm is a representation of GO terms. more>>
Bio::Ontology::GOterm is a representation of GO terms.
SYNOPSIS
$term = Bio::Ontology::GOterm->new
( -go_id => "GO:0016847",
-name => "1-aminocyclopropane-1-carboxylate synthase",
-definition => "Catalysis of ...",
-is_obsolete => 0,
-comment => "" );
$term->add_definition_references( @refs );
$term->add_secondary_GO_ids( @ids );
$term->add_aliases( @aliases );
foreach my $dr ( $term->each_definition_reference() ) {
print $dr, "n";
}
# etc.
This is "dumb" class for GO terms (it provides no functionality related to graphs). Implements Bio::Ontology::TermI.
<<lessSYNOPSIS
$term = Bio::Ontology::GOterm->new
( -go_id => "GO:0016847",
-name => "1-aminocyclopropane-1-carboxylate synthase",
-definition => "Catalysis of ...",
-is_obsolete => 0,
-comment => "" );
$term->add_definition_references( @refs );
$term->add_secondary_GO_ids( @ids );
$term->add_aliases( @aliases );
foreach my $dr ( $term->each_definition_reference() ) {
print $dr, "n";
}
# etc.
This is "dumb" class for GO terms (it provides no functionality related to graphs). Implements Bio::Ontology::TermI.
Download (4.7MB)
Added: 2006-10-10 License: Perl Artistic License Price:
1112 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
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 1407 benedict canyon 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