family
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 181
Relations::Family 0.94
Relations::Family is a DBI/DBD::mysql Relational Query Engine module. more>>
Relations::Family is a DBI/DBD::mysql Relational Query Engine module.
SYNOPSIS
# DBI, Relations::Family Script that creates some queries.
#!/usr/bin/perl
use DBI;
use Relations::Family;
$dsn = "DBI:mysql:finder";
$username = "root";
$password = ;
$dbh = DBI->connect($dsn,$username,$password,{PrintError => 1, RaiseError => 0});
$abstract = new Relations::Abstract($dbh);
$family = new Relations::Family($abstract);
$family->add_member(-name => account,
-label => Cust. Account,
-database => finder,
-table => account,
-id_field => acc_id,
-query => {-select => {id => acc_id,
label => "concat(cust_name, - ,balance)"},
-from => [account,customer],
-where => "customer.cust_id=account.cust_id",
-order_by => "cust_name"});
$family->add_member(-name => customer,
-label => Customer,
-database => finder,
-table => customer,
-id_field => cust_id,
-query => {-select => {id => cust_id,
label => cust_name},
-from => customer,
-order_by => "cust_name"});
$family->add_member(-name => purchase,
-label => Purchase,
-database => finder,
-table => purchase,
-id_field => pur_id,
-query => {-select => {id => pur_id,
label => "concat(
cust_name,
- ,
date_format(date, %M %D, %Y)
)"},
-from => [purchase,
customer],
-where => customer.cust_id=purchase.cust_id,
-order_by => [date desc,
cust_name]});
$family->add_lineage(-parent_name => customer,
-parent_field => cust_id,
-child_name => purchase,
-child_field => cust_id);
$family->add_rivalry(-brother_name => customer,
-brother_field => cust_id,
-sister_name => account,
-sister_field => cust_id);
$family->set_chosen(-label => Customer,
-ids => 2,4);
$available = $family->get_available(-label => Purchase);
print "Found $available->{count} Purchases:n";
foreach $id (@{$available->{ids_array}}) {
print "Id: $id Label: $available->{labels_hash}->{$id}n";
}
$family->add_value(-name => Cust. Account,
-sql => "concat(cust_name, - ,balance)",
-member_names => customer,account);
$family->add_value(-name => Paid,
-sql => "if(balance > 0,NO,YES)",
-member_names => account);
$family->add_value(-name => Customer,
-sql => cust_name,
-member_names => customer);
$family->add_value(-name => Purchase,
-sql => "concat(
cust_name,
- ,
date_format(date, %M %D, %Y)
)",
-member_names => purchase,customer);
$reunion = $family->get_reunion(-data => Paid,Purchase,
-use_labels => Customer,
-order_by => Customer,Purchase);
$matrix = $abstract->select_matrix(-query => $reunion);
print "Found " . scalar @$matrix . " Values:n";
foreach $row (@$matrix) {
print "Customer: $row->{Customer}n";
print "Purchase: $row->{Purchase}n";
print "Paid: $row->{Paid}nn";
}
$dbh->disconnect();
<<lessSYNOPSIS
# DBI, Relations::Family Script that creates some queries.
#!/usr/bin/perl
use DBI;
use Relations::Family;
$dsn = "DBI:mysql:finder";
$username = "root";
$password = ;
$dbh = DBI->connect($dsn,$username,$password,{PrintError => 1, RaiseError => 0});
$abstract = new Relations::Abstract($dbh);
$family = new Relations::Family($abstract);
$family->add_member(-name => account,
-label => Cust. Account,
-database => finder,
-table => account,
-id_field => acc_id,
-query => {-select => {id => acc_id,
label => "concat(cust_name, - ,balance)"},
-from => [account,customer],
-where => "customer.cust_id=account.cust_id",
-order_by => "cust_name"});
$family->add_member(-name => customer,
-label => Customer,
-database => finder,
-table => customer,
-id_field => cust_id,
-query => {-select => {id => cust_id,
label => cust_name},
-from => customer,
-order_by => "cust_name"});
$family->add_member(-name => purchase,
-label => Purchase,
-database => finder,
-table => purchase,
-id_field => pur_id,
-query => {-select => {id => pur_id,
label => "concat(
cust_name,
- ,
date_format(date, %M %D, %Y)
)"},
-from => [purchase,
customer],
-where => customer.cust_id=purchase.cust_id,
-order_by => [date desc,
cust_name]});
$family->add_lineage(-parent_name => customer,
-parent_field => cust_id,
-child_name => purchase,
-child_field => cust_id);
$family->add_rivalry(-brother_name => customer,
-brother_field => cust_id,
-sister_name => account,
-sister_field => cust_id);
$family->set_chosen(-label => Customer,
-ids => 2,4);
$available = $family->get_available(-label => Purchase);
print "Found $available->{count} Purchases:n";
foreach $id (@{$available->{ids_array}}) {
print "Id: $id Label: $available->{labels_hash}->{$id}n";
}
$family->add_value(-name => Cust. Account,
-sql => "concat(cust_name, - ,balance)",
-member_names => customer,account);
$family->add_value(-name => Paid,
-sql => "if(balance > 0,NO,YES)",
-member_names => account);
$family->add_value(-name => Customer,
-sql => cust_name,
-member_names => customer);
$family->add_value(-name => Purchase,
-sql => "concat(
cust_name,
- ,
date_format(date, %M %D, %Y)
)",
-member_names => purchase,customer);
$reunion = $family->get_reunion(-data => Paid,Purchase,
-use_labels => Customer,
-order_by => Customer,Purchase);
$matrix = $abstract->select_matrix(-query => $reunion);
print "Found " . scalar @$matrix . " Values:n";
foreach $row (@$matrix) {
print "Customer: $row->{Customer}n";
print "Purchase: $row->{Purchase}n";
print "Paid: $row->{Paid}nn";
}
$dbh->disconnect();
Download (0.049MB)
Added: 2007-06-08 License: Perl Artistic License Price:
868 downloads
XHTML Family Tree Generator 2.3.2
XHTML Family Tree Generator is a CGI Perl script that will create views of a family tree from a supplied data file. more>>
XHTML Family Tree Generator project is a CGI Perl script together with some Perl modules that will create views of a family tree from a supplied data file. The data file is a simple text or Excel file listing the family members, parents, and other details.
It is possible to show a tree of ancestors and descendants for any person, showing any number of generations. Other facilities are provided for showing email directories, birthday reminders, facehall, and more. It has a simple configuration, makes heavy use of CGI (and other CPAN modules), generates valid XHTML, and has support for Unicode and multiple languages.
Enhancements:
- Italian support was added.
<<lessIt is possible to show a tree of ancestors and descendants for any person, showing any number of generations. Other facilities are provided for showing email directories, birthday reminders, facehall, and more. It has a simple configuration, makes heavy use of CGI (and other CPAN modules), generates valid XHTML, and has support for Unicode and multiple languages.
Enhancements:
- Italian support was added.
Download (0.64MB)
Added: 2007-03-24 License: GPL (GNU General Public License) Price:
955 downloads
AsmFile 0.9.15
AsmFile is a small and fast file manager written in assembler. more>>
AsmFile is a small and fast file manager written in assembler.
AsmFile project uses a two pane interface like "mc" and other file managers. AsmFile runs in a console or a terminal window.
Assembly has been ignored by much of the Unix/Linux community and is almost never found in desktop applications. Some of the reasons for this are historical and related to portability. Other reasons include negative images of assembly and lack of tools. Today a small niche exists for assembly on the desktop. This will be explored here along with the supporting tools.
The resources section provides links to more information and places to discuss assembler topics. Of special interest to the author is a section of predictions and history. A email list for programmers interested in Desktop assembly is described in the resources section.
The AsmIDE family of programs are currently underdevelopment and some have reached a useful state.
<<lessAsmFile project uses a two pane interface like "mc" and other file managers. AsmFile runs in a console or a terminal window.
Assembly has been ignored by much of the Unix/Linux community and is almost never found in desktop applications. Some of the reasons for this are historical and related to portability. Other reasons include negative images of assembly and lack of tools. Today a small niche exists for assembly on the desktop. This will be explored here along with the supporting tools.
The resources section provides links to more information and places to discuss assembler topics. Of special interest to the author is a section of predictions and history. A email list for programmers interested in Desktop assembly is described in the resources section.
The AsmIDE family of programs are currently underdevelopment and some have reached a useful state.
Download (0.32MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1395 downloads
atmelprog 1.1
atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). more>>
atmelprog is an Atmel AT89Cx051 microcontroller programmer (device schematics included). atmelprog allows writing and erasing flash, as well as verification of data written.
Main features:
- supports all AT89Cx051 family chips (MCS-51 compatibile)
- allows writing data to the microcontroller
- supports data verification during write
- allows reading data from microcontroller to file
- allows erasing flash
Enhancements:
- added diagnostic mode (-t)
- more readable code (use #defined pin values)
<<lessMain features:
- supports all AT89Cx051 family chips (MCS-51 compatibile)
- allows writing data to the microcontroller
- supports data verification during write
- allows reading data from microcontroller to file
- allows erasing flash
Enhancements:
- added diagnostic mode (-t)
- more readable code (use #defined pin values)
Download (0.058MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1325 downloads
AIM 1.5
AIM is an instant messenger. more>>
"You don`t have to be an America Online member to experience the immediate cross-Internet communication made possible by AOL Instant Messenger.
This program allows Internet users to communicate via private, personalized text messages.
The program indicates when friends, family members, and business colleagues are online, making Internet communications faster, easier, and more efficient.
AOL Instant Messenger combines AOL`s popular Buddy List and Instant Message features, enabling users to send and respond to messages immediately."
Enhancements:
- Improved Popups Preferences
- Support for @mac.com addresses
- The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
- File Transfer (with Drag&Drop support)
- Displays idle time
- Ability to install anywhere. (Extract everything into a single directory and then run aim with option "--install_dir %path" where %path is the path to directory containing all the libraries)
<<lessThis program allows Internet users to communicate via private, personalized text messages.
The program indicates when friends, family members, and business colleagues are online, making Internet communications faster, easier, and more efficient.
AOL Instant Messenger combines AOL`s popular Buddy List and Instant Message features, enabling users to send and respond to messages immediately."
Enhancements:
- Improved Popups Preferences
- Support for @mac.com addresses
- The wireless icon is the visual indication on the buddy list that a buddy is using a mobile device.
- File Transfer (with Drag&Drop support)
- Displays idle time
- Ability to install anywhere. (Extract everything into a single directory and then run aim with option "--install_dir %path" where %path is the path to directory containing all the libraries)
Download (1.07MB)
Added: 2005-04-25 License: LGPL (GNU Lesser General Public License) Price:
1714 downloads
Java::Build 0.05
Java::Build is a family of modules which you can use instead of Ant. more>>
Java::Build is a family of modules which you can use instead of Ant.
SYNOPSIS
use Java::Build::JVM; # access to the javac compiler in one jvm
use Java::Build::Tasks; # some helpful methods similar to Ant tasks
my $source_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.java$/ ],
);
my $dirty_sources = what_needs_compiling(
SOURCE_FILE_LIST => $source_files,
);
if (@$dirty_sources) {
my $compiler = Java::Ant::JVM->getCompiler();
$compiler->destination($base_dir);
$compiler->classpath($base_dir);
$compiler->compile($dirty_sources);
my $class_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.class$/ ],
EXCLUDE_PATTERNS => [ qr/Test/ ],
EXCLUDE_DEFAULTS => 1,
STRIP_BASE_DIR => 1,
);
jar(
JAR_FILE => $jar_file_name,
FILE_LIST => $class_files,
BASE_DIR => $some_path,
);
}
ABSTRACT
This family of modules helped me move away from Ant to a proper scripting language, namely Perl. With it you can use a single JVM for compiling your java programs. It provides many useful methods to help you build lists of files, package them with jar, etc. Currently the modules are unix centric. If you make them work elsewhere, please send in patches.
<<lessSYNOPSIS
use Java::Build::JVM; # access to the javac compiler in one jvm
use Java::Build::Tasks; # some helpful methods similar to Ant tasks
my $source_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.java$/ ],
);
my $dirty_sources = what_needs_compiling(
SOURCE_FILE_LIST => $source_files,
);
if (@$dirty_sources) {
my $compiler = Java::Ant::JVM->getCompiler();
$compiler->destination($base_dir);
$compiler->classpath($base_dir);
$compiler->compile($dirty_sources);
my $class_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.class$/ ],
EXCLUDE_PATTERNS => [ qr/Test/ ],
EXCLUDE_DEFAULTS => 1,
STRIP_BASE_DIR => 1,
);
jar(
JAR_FILE => $jar_file_name,
FILE_LIST => $class_files,
BASE_DIR => $some_path,
);
}
ABSTRACT
This family of modules helped me move away from Ant to a proper scripting language, namely Perl. With it you can use a single JVM for compiling your java programs. It provides many useful methods to help you build lists of files, package them with jar, etc. Currently the modules are unix centric. If you make them work elsewhere, please send in patches.
Download (0.030MB)
Added: 2007-04-20 License: Perl Artistic License Price:
917 downloads
Asianux 2.0
Asianux is a Linux server operating system which is co-developed by Chinese Leading Linux vendor Red Flag Software Co., Ltd. more>>
Asianux is a Linux server operating system which is co-developed by Chinese Leading Linux vendor Red Flag Software Co., Ltd. and Japanese Linux vendor Miracle Linux Corporation and Korean Linux software vendor Haansoft, INC, aiming at the common-standard enterprise Linux platform for Enterprise systems in Asia.
It provides enterprise customers with high reliability, scalability, manageability and better hardware & software compatibility.
Asianux certification partner program will invite more hardware and software products to be certified on Asianux, and it will definitely help to reduce developing and certificating resources and provide Linux with high quality and low cost.
Red Flag Software, Miracle Linux, and Haansoft INC. will distribute and market Asianux without any modifications in each Linux distribution package in China, Japan and Korea. New products such as Red Flag 5 Family , Miracle Linux V4.0 and Haansoft Linux 2005 will be based on Asianux and each will be bundled with localized features in each country.
<<lessIt provides enterprise customers with high reliability, scalability, manageability and better hardware & software compatibility.
Asianux certification partner program will invite more hardware and software products to be certified on Asianux, and it will definitely help to reduce developing and certificating resources and provide Linux with high quality and low cost.
Red Flag Software, Miracle Linux, and Haansoft INC. will distribute and market Asianux without any modifications in each Linux distribution package in China, Japan and Korea. New products such as Red Flag 5 Family , Miracle Linux V4.0 and Haansoft Linux 2005 will be based on Asianux and each will be bundled with localized features in each country.
Download (660MB)
Added: 2005-09-07 License: GPL (GNU General Public License) Price:
1517 downloads
VisLib 2.1.0
VisLib is a GTK application for visualizing, editing, and searching hierarchically-organized couples of visual and textual info. more>>
VisLib is a GTK application for visualizing, editing, and searching hierarchically-organized couples of visual and textual information, from family or holiday photographs, desktop backgrounds, digital comics, to material samples or bacterial cultures photographs.
Enhancements:
- Record and category edition works. File saving in VLB-1 format works.
- Categories and record reordering tools were added and work.
- The edit menu has been completed.
- The full loop between file creation, filling, edition and saving is operational.
<<lessEnhancements:
- Record and category edition works. File saving in VLB-1 format works.
- Categories and record reordering tools were added and work.
- The edit menu has been completed.
- The full loop between file creation, filling, edition and saving is operational.
Download (0.59MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1479 downloads
CeaMuS 2.0.6
CeaMuS is a simple, powerful way to build a web site. more>>
CeaMuS is a simple, powerful way to build a web site. CeaMuS project is a light weight Content Management System to help you edit web pages and build image galleries.
Who Can Benefit From CeaMuS
- Web Designers who want to make maintaining client sites faster and easier
- Web Site Owners who want to maintain their own web sites
- Bloggers who want a site that doesnt look like every other blog on the net
- Churchs and non-profit organizations who need to update sites frequently, often with whatever labor happens to be available
- Dog, horse and cat breeders, who need to update photos and breeding information regularly
- Families who want to share photos and vacation experiences with family and friends
- Small Businesses selling their products on the web
<<lessWho Can Benefit From CeaMuS
- Web Designers who want to make maintaining client sites faster and easier
- Web Site Owners who want to maintain their own web sites
- Bloggers who want a site that doesnt look like every other blog on the net
- Churchs and non-profit organizations who need to update sites frequently, often with whatever labor happens to be available
- Dog, horse and cat breeders, who need to update photos and breeding information regularly
- Families who want to share photos and vacation experiences with family and friends
- Small Businesses selling their products on the web
Download (14.8MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1193 downloads
Compiz 0.5.2
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. more>>
Compiz is a compositing window manager that uses 3D graphics acceleration via OpenGL. The project provides various new graphical effects and features on any desktop environment, including Gnome and KDE.
- Window management has never looked so enticing: Through OpenGL accelerated compositing, Compiz provides tons of new visual effects. Its also flexible enough so you could easily add more through a plugin system.
- Compiz is compatible: Any X Window System based desktop environment, including (but not limited to) Gnome and KDE, is supported.
Main features:
- Easily extendible through plugins.
- A growing, friendly community of users.
- Increases productivity and enjoyment.
- Impress your family and friends.
- Compiz is actively developed.
<<less- Window management has never looked so enticing: Through OpenGL accelerated compositing, Compiz provides tons of new visual effects. Its also flexible enough so you could easily add more through a plugin system.
- Compiz is compatible: Any X Window System based desktop environment, including (but not limited to) Gnome and KDE, is supported.
Main features:
- Easily extendible through plugins.
- A growing, friendly community of users.
- Increases productivity and enjoyment.
- Impress your family and friends.
- Compiz is actively developed.
Download (1.7MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
876 downloads
KaraivTV 0.5
KaraivTV is SuperKaramba theme designed for controlling a TV card controlled by an ivtv family (ivtvdriver.org) of drivers. more>>
KaraivTV is SuperKaramba theme designed for controlling a TV card controlled by an ivtv family (ivtvdriver.org) of drivers.
The peculiar points of this family of cards are:
1. that they have a hardware MPEG2 encoder that outputs the video and audio as an MPEG2 compressed stream. This means that you can watch output of the card in ANY MPEG2 player. (or Kaffeine in my/this case)
2. ivTv drivers come with command line utilities - ivtvctl and ivtv-tune - that allow to set frequency(ivtvctl) and channel(ivtv-tune) from command line.
As a result, you can watch the video in one application, while controlling the channel from another. This applet IS that "another" application. (In other words, KaraivTV is a wrapper for ivtvctl and ivtv-tune commands.)
USAGE:
1. Run the applet (double-click the file you download from here, or double-click karaivtv.theme if you extracted the skz)
2. Go into config menu (right click) to choose the frequency storage engine. (see Setting Channel Frequencies bellow)
3. Enter the channel number in the middle section, press enter.
4. Click (double-click) the "power button" to start TV viewing in Kaffeine.
5. Kaffeine Tips
"U" key - mute
"M" key - removes menus/buttons > just video screen.
INSTALLATION:
1. Save the karaivtv-0.4.skz file you downloaded from here.
2. Double-click it.
SETTING CHANNEL FREQUENCIES
This applet relies on 2 methods of knowing the frequency for a channel.
- It can read the Channel - Frequency pairs from a file and feed the frequency to the ivtvctl directly, or
- It can rely on ivtv-tune util for choosing the frequency for a given channel. (ivtv-tune WILL need to know a broadcasting standard)
To switch between the two modes, look int the config menu (right-click on the applet) If you chose the "ivtv-tune", you will have to tell it what standard to use.
Why dont I just use the ivtv-util? For some (many?) regions ivtv-tune has broken / non-existent tables. (Example: us-cable-hrc is absent in ver. 0.7) So, I have to use the file with custom freqs.
<<lessThe peculiar points of this family of cards are:
1. that they have a hardware MPEG2 encoder that outputs the video and audio as an MPEG2 compressed stream. This means that you can watch output of the card in ANY MPEG2 player. (or Kaffeine in my/this case)
2. ivTv drivers come with command line utilities - ivtvctl and ivtv-tune - that allow to set frequency(ivtvctl) and channel(ivtv-tune) from command line.
As a result, you can watch the video in one application, while controlling the channel from another. This applet IS that "another" application. (In other words, KaraivTV is a wrapper for ivtvctl and ivtv-tune commands.)
USAGE:
1. Run the applet (double-click the file you download from here, or double-click karaivtv.theme if you extracted the skz)
2. Go into config menu (right click) to choose the frequency storage engine. (see Setting Channel Frequencies bellow)
3. Enter the channel number in the middle section, press enter.
4. Click (double-click) the "power button" to start TV viewing in Kaffeine.
5. Kaffeine Tips
"U" key - mute
"M" key - removes menus/buttons > just video screen.
INSTALLATION:
1. Save the karaivtv-0.4.skz file you downloaded from here.
2. Double-click it.
SETTING CHANNEL FREQUENCIES
This applet relies on 2 methods of knowing the frequency for a channel.
- It can read the Channel - Frequency pairs from a file and feed the frequency to the ivtvctl directly, or
- It can rely on ivtv-tune util for choosing the frequency for a given channel. (ivtv-tune WILL need to know a broadcasting standard)
To switch between the two modes, look int the config menu (right-click on the applet) If you chose the "ivtv-tune", you will have to tell it what standard to use.
Why dont I just use the ivtv-util? For some (many?) regions ivtv-tune has broken / non-existent tables. (Example: us-cable-hrc is absent in ver. 0.7) So, I have to use the file with custom freqs.
Download (0.025MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1221 downloads
PIC USB Framework 1.1
PIC USB Framework is a USB application framework dedicated to Linux. more>>
PIC USB Framework is a USB application framework dedicated to Linux (on the host side) and to the PIC 18F4550 family of microcontrollers (on the device side).
PUF includes: a bootloader that can flash the PIC application through the USB, a PIC demo and its corresponding application on the host side, and docker, the host-side flash programming utility.
The PUF also contains gputils and sdcc as cross-building tools, and odyssey 0.4vasco as a parallel port PIC programmer.
Enhancements:
- sdcc optimization flags are now switched on by default.
- A component library (including a console mechanism and a small real time scheduler) has been added to help building user applications.
- Tools have been upgraded to automake 1.9.6, autoconf 2.59d, sdcc snapshot 4482, odyssey 0.5, and gputils 0.13.4.
- The applications size has been optimized.
<<lessPUF includes: a bootloader that can flash the PIC application through the USB, a PIC demo and its corresponding application on the host side, and docker, the host-side flash programming utility.
The PUF also contains gputils and sdcc as cross-building tools, and odyssey 0.4vasco as a parallel port PIC programmer.
Enhancements:
- sdcc optimization flags are now switched on by default.
- A component library (including a console mechanism and a small real time scheduler) has been added to help building user applications.
- Tools have been upgraded to automake 1.9.6, autoconf 2.59d, sdcc snapshot 4482, odyssey 0.5, and gputils 0.13.4.
- The applications size has been optimized.
Download (4.3MB)
Added: 2007-01-01 License: LGPL (GNU Lesser General Public License) Price:
1032 downloads
LibKMid 0.9.5
LibKMid is a library that implements features to play MIDI events on MIDI devices. more>>
LibKMid is a library that implements features to play MIDI events on MIDI devices. LibKMid also includes easy-to-use functions if all you want is play MIDI files in your application (for example, background music in a game), and a console MIDI player. The API is well documented, and the design is very simple for the most common uses.
LibKMid uses the OSS drivers to support External MIDI synthesizers, AWE, GUS and FM synths, along with soundcards from the SB Live family.
You can add easily support for any other MIDI device you may find (but Im afraid there isnt any left), MIDI Mappers (in the same format as MIDI mappers from KMid), and a MIDI file player engine that is able to play MIDI files even if theyre really corrupted or broken.
Perhaps the main thing about LibKMid is that its optimized to take up as little resources as possible, so playing a complex MIDI on my computer (a K6/200) takes approximately 0.1% of the CPU.
<<lessLibKMid uses the OSS drivers to support External MIDI synthesizers, AWE, GUS and FM synths, along with soundcards from the SB Live family.
You can add easily support for any other MIDI device you may find (but Im afraid there isnt any left), MIDI Mappers (in the same format as MIDI mappers from KMid), and a MIDI file player engine that is able to play MIDI files even if theyre really corrupted or broken.
Perhaps the main thing about LibKMid is that its optimized to take up as little resources as possible, so playing a complex MIDI on my computer (a K6/200) takes approximately 0.1% of the CPU.
Download (0.15MB)
Added: 2006-03-31 License: LGPL (GNU Lesser General Public License) Price:
1304 downloads
VirtualBox 1.4.0
VirtualBox application is a family of powerful x86 virtualization products for enterprise as well as home use. more>>
VirtualBox application is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU Public License (GPL). See "About VirtualBox" for an introduction; see "InnoTek" for more about our company.
Presently, VirtualBox runs on Windows and Linux 32-bit hosts and supports a large number of guest operating systems including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista), DOS/Windows 3.x, Linux (2.4 and 2.6), and OpenBSD.
VirtualBox is being actively developed with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. VirtualBox is a community effort backed by a dedicated company: everyone is encouraged to contribute while InnoTek ensures the product always meets professional quality criteria.
<<lessPresently, VirtualBox runs on Windows and Linux 32-bit hosts and supports a large number of guest operating systems including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista), DOS/Windows 3.x, Linux (2.4 and 2.6), and OpenBSD.
VirtualBox is being actively developed with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. VirtualBox is a community effort backed by a dedicated company: everyone is encouraged to contribute while InnoTek ensures the product always meets professional quality criteria.
Download (13MB)
Added: 2007-06-06 License: Other/Proprietary License Price:
1147 downloads
GnomeICU 0.99.12
GnomeICU is one of the most popular UN*X-based ICQ programs in the world. more>>
GnomeICU project is one of the most popular UN*X-based ICQ programs in the world. Internet chatting has quickly become one of the most popular uses of the Internet - second only to Email.
Instant messaging allows users to communicate in real time with friends, family members, and coworkers in an efficient, unobtrusive manner.
Main features:
- Server-side list storage
- Basic messaging
- File transfer (temporarily broken due to protocol change)
- Contact history
- Visible/Invisible/Ignore lists
- Ability to interface ICU from the command line
- Icon themes
- and many, many more.
<<lessInstant messaging allows users to communicate in real time with friends, family members, and coworkers in an efficient, unobtrusive manner.
Main features:
- Server-side list storage
- Basic messaging
- File transfer (temporarily broken due to protocol change)
- Contact history
- Visible/Invisible/Ignore lists
- Ability to interface ICU from the command line
- Icon themes
- and many, many more.
Download (1.8MB)
Added: 2006-10-26 License: GPL (GNU General Public License) Price:
1094 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 family 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