what company manufactures the powerpc family
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 841
Get Company Info 0.4
Get Company Info allows you to view the latest financial data and other company information in a separate tab. more>>
Get Company Info allows you to view the latest financial data and other company information in a separate tab.
Highlight a company name on your page with the mouse, right-click and choose Get Company Info. You will receive the latest financial data and other company information in a separate tab.
No need in ugly toolbars. Recognizes companies by both names and tickers.
<<lessHighlight a company name on your page with the mouse, right-click and choose Get Company Info. You will receive the latest financial data and other company information in a separate tab.
No need in ugly toolbars. Recognizes companies by both names and tickers.
Download (0.075MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
913 downloads
SiteInvoice Account Manager 2.0.1
SiteInvoice helps you manage your customer invoices in a simple and efficient manner. more>>
SiteInvoice project helps you manage your customer invoices in a simple and efficient manner.
Customers receive personalized email notices with invoices attached as PDFs, with reminders sent at 30, 45, and 60 days.
Handles multiple currencies and taxes. Never lose track of money you or your company are owed again.
<<lessCustomers receive personalized email notices with invoices attached as PDFs, with reminders sent at 30, 45, and 60 days.
Handles multiple currencies and taxes. Never lose track of money you or your company are owed again.
Download (0.33MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1238 downloads
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
MyNukeGenealogy 0.5.1.b
MyNukeGenealogy for PHPNuke or PostNuke is a plugin-module which helps building up a family or surname Web site. more>>
MyNukeGenealogy for PHPNuke or PostNuke is a plugin-module which helps building up a family or surname Web site.
It allows for displaying and editing genealogical data (individuals, families, events, notes, sources, etc.) and importing gedcom files (export functionalities will follow).
It has a flexible template system to customise the layout and design.
<<lessIt allows for displaying and editing genealogical data (individuals, families, events, notes, sources, etc.) and importing gedcom files (export functionalities will follow).
It has a flexible template system to customise the layout and design.
Download (0.35MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
661 downloads
myGifts 2.70 Alpha1
myGifts manages Xmas/birthday wish-lists or gift registries for weddings or newborns. more>>
myGifts project enable you, your family and your friends to share your xmas wish-lists, your gift registry for your wedding or a newborn.
People can add gifts to their lists and claim other peoples gifts, and it supports user groups to control who can and cannot see lists.
Main features:
- add gifts to their lists,
- decide who can(cannot) see them,
- add ideas to other lists,
- claim other people gifts.
<<lessPeople can add gifts to their lists and claim other peoples gifts, and it supports user groups to control who can and cannot see lists.
Main features:
- add gifts to their lists,
- decide who can(cannot) see them,
- add ideas to other lists,
- claim other people gifts.
Download (0.19MB)
Added: 2005-12-02 License: GPL (GNU General Public License) Price:
1423 downloads
Hardware lister B.02.11.01
Hardware Lister is a small tool to provide detailed information on the hardware configuration of the machine. more>>
lshw (Hardware Lister) is a small tool to provide detailed information on the hardware configuration of the machine.
Hardware lister can report exact memory configuration, firmware version, CPU version and speed, cache configuration, bus speed, mainboard configuration, etc. On DMI-capable x86 or EFI (IA-64) systems and on some PowerPC machines (PowerMac G4 is known to work).
Information can be output in plain text, XML or HTML.
It currently supports DMI (x86 and EFI only), OpenFirmware device tree (PowerPC only), PCI/AGP, ISA PnP (x86), CPUID (x86), IDE/ATA/ATAPI, PCMCIA (only tested on x86), USB and SCSI.
<<lessHardware lister can report exact memory configuration, firmware version, CPU version and speed, cache configuration, bus speed, mainboard configuration, etc. On DMI-capable x86 or EFI (IA-64) systems and on some PowerPC machines (PowerMac G4 is known to work).
Information can be output in plain text, XML or HTML.
It currently supports DMI (x86 and EFI only), OpenFirmware device tree (PowerPC only), PCI/AGP, ISA PnP (x86), CPUID (x86), IDE/ATA/ATAPI, PCMCIA (only tested on x86), USB and SCSI.
Download (1.1MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
819 downloads
PlanetMatter 2006_03_23_r02
PlanetMatter isa better choice to aggregate RSS and ATOM feeds of blogs, company news, databases, calendars, articles, and more! more>>
Wait no more for a usable system to create a centralized hub, so-called a planet site, of news feeds from selected Web sites, PlanetMatter provides a better choice to aggregate RSS and ATOM feeds of blogs, company news, databases, calendars, articles, and more!
Lastest news items are instantly aggregated and sequentially laid out in one page for readability. Moreover, "full-text" search facility effectively retrieves more related news items according to search terms (keywords).
Features:
PlanetMatter comes with complete feed management features such as
Add, pause, delete, edit feeds
Import feeds to OPML or text
Edit planet site configuration information
and much more!
Installation:
PlanetMatter is relatively easy to install. Please read the INSTALL file for details.
<<lessLastest news items are instantly aggregated and sequentially laid out in one page for readability. Moreover, "full-text" search facility effectively retrieves more related news items according to search terms (keywords).
Features:
PlanetMatter comes with complete feed management features such as
Add, pause, delete, edit feeds
Import feeds to OPML or text
Edit planet site configuration information
and much more!
Installation:
PlanetMatter is relatively easy to install. Please read the INSTALL file for details.
Download (0.088MB)
Added: 2006-08-03 License: Freeware Price:
1177 downloads
Take Out The Mouse 1.0
Take Out The Mouse is a very entertaining puzzle game where you must help a mouse to find the exit. more>>
Take Out The Mouse is a very entertaining puzzle game where you must help a mouse to find the exit.
This is the first game developed by Bertesh Studios, in 2001. Take Out The Mouse consist in a little mouse who has to find the exit of the different labyrinths by finding his delicious reward... the cheese.
The game has 2 difficulties. The first one is the "Easy" difficulty, where our only objective is to find the cheese before our time finishes. Once we have finish this difficulty, we will have access to the "Hard" difficulty, here besides of have to find the cheese before that our time ends, we must to eliminate all the bats that are inside the labyrinths with cakes first to be able to get access to the next level... but be careful, because this bats spit drops of blood that could damage the mouse and could cost him 1 live.
Take Out The Mouse counts with several labyrinths and funny music that we will listen during the whole game, getting a fun game for all the family.
<<lessThis is the first game developed by Bertesh Studios, in 2001. Take Out The Mouse consist in a little mouse who has to find the exit of the different labyrinths by finding his delicious reward... the cheese.
The game has 2 difficulties. The first one is the "Easy" difficulty, where our only objective is to find the cheese before our time finishes. Once we have finish this difficulty, we will have access to the "Hard" difficulty, here besides of have to find the cheese before that our time ends, we must to eliminate all the bats that are inside the labyrinths with cakes first to be able to get access to the next level... but be careful, because this bats spit drops of blood that could damage the mouse and could cost him 1 live.
Take Out The Mouse counts with several labyrinths and funny music that we will listen during the whole game, getting a fun game for all the family.
Download (1.5MB)
Added: 2007-04-20 License: Freeware Price:
917 downloads
MplayerXP 0.6.2
MplayerXP is a mplayer with extra performance. more>>
MplayerXP is a branch of the well known mplayer (http://mplayerhq.hu) which is based on the new (thread based) core. MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
The new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback.
This project is a media player for *nix systems. It was designed for Linux, but works on other unices like: FreeBSD, QNX.
MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
Enhancements:
- synchronized libloader with mplayerhq
- updated ffmpeg codecs (fixes some lacks of prev release)
- added support for new codecs
- fixed segfault in MPC demuxer
<<lessThe new core provides better CPU utilization and excellently improves performance of video decoding. Main goal of this project is to get monotonous CPU loading during movie playback.
This project is a media player for *nix systems. It was designed for Linux, but works on other unices like: FreeBSD, QNX.
MplayerXP project was designed for x86 architecture but was ported on DecAlpha, SUN, PowerPC.
Enhancements:
- synchronized libloader with mplayerhq
- updated ffmpeg codecs (fixes some lacks of prev release)
- added support for new codecs
- fixed segfault in MPC demuxer
Download (2.50MB)
Added: 2007-04-07 License: GPL (GNU General Public License) Price:
565 downloads
Computer History Graphing Project 0.9.2
Computer History Graphing Project is a computer family tree. more>>
Computer History Graphing Project is a computer family tree.
The Computer History Graphing Project is an attempt to graph every computer standard, every piece of hardware, every OS, and every computer language in one big family tree.
<<lessThe Computer History Graphing Project is an attempt to graph every computer standard, every piece of hardware, every OS, and every computer language in one big family tree.
Download (MB)
Added: 2006-10-04 License: GPL (GNU General Public License) Price:
1115 downloads
Project: Starfighter 1.1
Project: Starfighter is a 2D mission-based shoot-em-up game. more>>
After decades of war one company, who had gained powerful supplying both sides with weaponary, steps forwards and crushes both warring factions in one swift movement.
Using far superior weaponary and AI craft, the company was completely unstoppable and now no one can stand in their way.
Thousands began to perish under the iron fist of the company. The people cried out for a saviour, for someone to light this dark hour... and someone did.
Main features:
- 26 missions over 4 star systems
- Primary and Secondary Weapons (including a laser cannon and a charge weapon)
- A weapon powerup system
- Wingmates
- Missions with Primary and Secondary Objectives
- A Variety of Missions (Protect, Destroy, etc)
- 13 different music tracks
- Boss battles
<<lessUsing far superior weaponary and AI craft, the company was completely unstoppable and now no one can stand in their way.
Thousands began to perish under the iron fist of the company. The people cried out for a saviour, for someone to light this dark hour... and someone did.
Main features:
- 26 missions over 4 star systems
- Primary and Secondary Weapons (including a laser cannon and a charge weapon)
- A weapon powerup system
- Wingmates
- Missions with Primary and Secondary Objectives
- A Variety of Missions (Protect, Destroy, etc)
- 13 different music tracks
- Boss battles
Download (2.3MB)
Added: 2005-09-06 License: GPL (GNU General Public License) Price:
1508 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
Openads 2.3.35 Beta
Openads provides an open-source ad server, with an integrated banner management interface and tracking system for statistics. more>>
Openads provides an open-source ad server, with an integrated banner management interface and tracking system for statistics.
Openads is an open-source ad server, with an integrated banner management interface and tracking system for gathering statistics. With phpAdsNew you can easily rotate paid banners and your own in-house advertisements. You can even integrate banners from third party advertising companies.
Openads can handle different types of banners in various sizes. Thanks to our flexible delivery engine it can handle regular banners and buttons, pop-ups, text ads, DHTML banners and much more. phpAdsNew is the only ad server that can handle tracking of Flash banners which arent specially prepared.
Openads is the home of some of the most popular, online advertising software available anywhere in the world. Whether you want to take advantage of your website as a source of advertising revenue or if you want to take control and extend your online advertising portfolio, Openads provides you with a family of easy-to-use products backed by expertise from the world’s largest ad space community.
When you use an Openads product, you gain access to that community for support and advice, while your feedback contributes to the future development of the products. And as it is open source, Openads products are free to download and use.
<<lessOpenads is an open-source ad server, with an integrated banner management interface and tracking system for gathering statistics. With phpAdsNew you can easily rotate paid banners and your own in-house advertisements. You can even integrate banners from third party advertising companies.
Openads can handle different types of banners in various sizes. Thanks to our flexible delivery engine it can handle regular banners and buttons, pop-ups, text ads, DHTML banners and much more. phpAdsNew is the only ad server that can handle tracking of Flash banners which arent specially prepared.
Openads is the home of some of the most popular, online advertising software available anywhere in the world. Whether you want to take advantage of your website as a source of advertising revenue or if you want to take control and extend your online advertising portfolio, Openads provides you with a family of easy-to-use products backed by expertise from the world’s largest ad space community.
When you use an Openads product, you gain access to that community for support and advice, while your feedback contributes to the future development of the products. And as it is open source, Openads products are free to download and use.
Download (1.4MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
823 downloads
libstratanetsh 2.3.0
libstratanetsh is used in development of applications which require direct communication with a Foxmoxie Networks STRATA routers more>>
libstratanetsh project provides source-code to a library (formerly called libnetshclient) for use in the development of applications which require direct communication (using the netsh protocol) with a Foxmoxie Networks STRATA-family router, or any STRATA protocol-capable implementation.
This library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
<<lessThis library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
Download (0.015MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Connect-k 2.0
Connect-k is a framework for experimenting with and testing general AIs for games within the connect-k family. more>>
Connect-k project is a framework for experimenting with and testing general AIs for games within the connect-k family.
Connect-k family of games contains games defined by three parameters: k, p, and q. The game is played on a Go-style (but not necessarily size) board. There are two players, black and white, who take turn placing stones on the board. The first player (black) plays q stones on the first turn and each player then plays p stones on every succeeding turn. The first player to form a horizontal, vertical, or diagonal sequence of k stones wins.
The game family includes Tic-Tac-Toe, Go-moku without capture rules, and a new game, Connect-6. Connect-6 was formally introduced and analyzed by Dr. I-Chen Wu in a series of papers that attempted to show that the game is fair. This has not been decisively proven but appears to be the case.
The Connect-k program originated as a University of Minnesota undergraduate Artificial Intelligence course project for the Spring 2007 semester. Aside from me, the project group included Jeff Deitch, Gabe Emerson, and Erik Shimshock. We attempted to develop general game playing algorithms capable of playing any game within the Connect-k family. The Connect-k program we produced is currently the only open source program to play Connect-6.
<<lessConnect-k family of games contains games defined by three parameters: k, p, and q. The game is played on a Go-style (but not necessarily size) board. There are two players, black and white, who take turn placing stones on the board. The first player (black) plays q stones on the first turn and each player then plays p stones on every succeeding turn. The first player to form a horizontal, vertical, or diagonal sequence of k stones wins.
The game family includes Tic-Tac-Toe, Go-moku without capture rules, and a new game, Connect-6. Connect-6 was formally introduced and analyzed by Dr. I-Chen Wu in a series of papers that attempted to show that the game is fair. This has not been decisively proven but appears to be the case.
The Connect-k program originated as a University of Minnesota undergraduate Artificial Intelligence course project for the Spring 2007 semester. Aside from me, the project group included Jeff Deitch, Gabe Emerson, and Erik Shimshock. We attempted to develop general game playing algorithms capable of playing any game within the Connect-k family. The Connect-k program we produced is currently the only open source program to play Connect-6.
Download (0.19MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
837 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 what company manufactures the powerpc 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