family budget
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 211
MyBudget 0.6.2
MyBudget is a software for design your own personal budget and keep track of your finances. more>>
The aim of the program is to make it as easy as possible for people to do their own personal budgets and keep track of their finances.
Main features:
- Create a budget and organize budget items into categories.
- Nominate budget items to be paid from either a cash account or via a "Direct Debit" account which allows you to save for big ticket items and ensure timely payment of scheduled bills.
- Automatically calculates how much money you must put aside each fortnight to meet all your "Direct Debit" obligations.
- Automatically tells you how much money you must have in Direct Debit account to meet your obligatory payments on any particular date.
- Record and save expenses against each of your budget categories.
- Track how your expenses relate to your budget so you can determine if you are over or under-spending in any of your categories.
- Sort your records into categories or by date.
- Comes with realistic example to show how things work.
- Allows you to export any of your reports, records, budget and Direct Debit status to the Gnumeric Spreadsheet program where they can be either printed or used for more detailed analysis.
- Allows you to export any of your reports, records, budget and Direct Debit status to the AbiWord WordProcessor program where they can be printed or incorporated into a report.
<<lessMain features:
- Create a budget and organize budget items into categories.
- Nominate budget items to be paid from either a cash account or via a "Direct Debit" account which allows you to save for big ticket items and ensure timely payment of scheduled bills.
- Automatically calculates how much money you must put aside each fortnight to meet all your "Direct Debit" obligations.
- Automatically tells you how much money you must have in Direct Debit account to meet your obligatory payments on any particular date.
- Record and save expenses against each of your budget categories.
- Track how your expenses relate to your budget so you can determine if you are over or under-spending in any of your categories.
- Sort your records into categories or by date.
- Comes with realistic example to show how things work.
- Allows you to export any of your reports, records, budget and Direct Debit status to the Gnumeric Spreadsheet program where they can be either printed or used for more detailed analysis.
- Allows you to export any of your reports, records, budget and Direct Debit status to the AbiWord WordProcessor program where they can be printed or incorporated into a report.
Download (1.5MB)
Added: 2005-08-08 License: GPL (GNU General Public License) Price:
1540 downloads
Qt MySQL Budget 0.10
Qt MySQL Budget is a GUI that allows the creation of a personal budget. more>>
Qt MySQL Budget project is a GUI that allows the creation of a personal budget.
The basic layout is a month selector, a tab for your allocations (budget), a tab for your expenses, and a tab showing the totals.
It has a very simple design allowing the quick creation and updating of budgets to help individuals plot and track their monthly sending.
<<lessThe basic layout is a month selector, a tab for your allocations (budget), a tab for your expenses, and a tab showing the totals.
It has a very simple design allowing the quick creation and updating of budgets to help individuals plot and track their monthly sending.
Download (0.30MB)
Added: 2006-01-31 License: GPL (GNU General Public License) Price:
1372 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
Budget4All 1.4.7
Budget4All is designed as a Java desktop software for helping you manage your personal or family budget in order to forecast your cashflow, in an easy but powerful way. more>> <<less
Added: 2009-02-19 License: Other/Proprietary Li... Price: FREE
1 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
Open Blue Lab 1.1.7 (Financial / Budget)
Open Blue Lab is an enterprise resource planning system. more>>
Open Blue Lab is an enterprise resource planning system.
Whatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Main features:
- to collaborate and communicate better
- to manage your personal time
- to schedule your appointments
- to define and track personal and group project
- to manage your content (asset, document, ...)
- to manage your customer relationship
- to make coffee (not yet, next release maybe
We want to develop a product, free, that fits exactly your needs, so read this web site and take time to indicate us your requirements. They will appear on our todo list, maybe in a long time, but they will. Then, you may incitate people to contribute in your direction by sponsoring somebody to achieve it.
This product is completely free. You can even package it and sell it. If you wonder what is our business model, you can ask to the forum.
Built on java technology, you may download the GUI installer, double-click and use it (with all your entreprise) through your preferred browser, whatever your environment is.
Built on XML and REST technology, you may integrate (in synchronous or asynchronous mode) it very easily in your environment too.
Enhancements:
- In this version, the visibility of attributes was changed from "public" to "private".
- All entities (classes, attributes, and methods) are documented in order to allow HTML documentation generation.
- Finally, iReport reporting has been integrated.
<<lessWhatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Main features:
- to collaborate and communicate better
- to manage your personal time
- to schedule your appointments
- to define and track personal and group project
- to manage your content (asset, document, ...)
- to manage your customer relationship
- to make coffee (not yet, next release maybe
We want to develop a product, free, that fits exactly your needs, so read this web site and take time to indicate us your requirements. They will appear on our todo list, maybe in a long time, but they will. Then, you may incitate people to contribute in your direction by sponsoring somebody to achieve it.
This product is completely free. You can even package it and sell it. If you wonder what is our business model, you can ask to the forum.
Built on java technology, you may download the GUI installer, double-click and use it (with all your entreprise) through your preferred browser, whatever your environment is.
Built on XML and REST technology, you may integrate (in synchronous or asynchronous mode) it very easily in your environment too.
Enhancements:
- In this version, the visibility of attributes was changed from "public" to "private".
- All entities (classes, attributes, and methods) are documented in order to allow HTML documentation generation.
- Finally, iReport reporting has been integrated.
Download (0.008MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
811 downloads
Google APIlity 1.10.3
Google APIlity PHP Library provides an object-oriented way to easily access and manage the Google AdWords API from within PHP. more>>
Google APIlity PHP Library provides an object-oriented way to easily access and manage the Google AdWords API from within PHP. This comes along with an abstraction from the SOAP and WSDL details.
With the AdWords API you can not only manage and organize your accounts more efficiently, easily and smoothly, but also more creatively. Using the API, you can create your own report-pulling software, synchronize your bids with your warehousing or have your own mass uploading tool control your accounts.
Enhancements:
- Bug fix in Criterion.php where in case of activated budget optimizer the MaxCPC field could not be muted (no it can be null). (Thanks to Wei for the bug report and the bug fix.)
- Bug fix in nusoap.php where the EUR sign got munged when the file was saved UTF8-encoded (Thanks to Tom Churm for the bug report and the bug fix.)
- Changed the NuSOAP debugging level which should solve memory leaks (Thanks to Phil and Chronofish for the bug report and fix)
- Fixed the docs (removed old creative service stuff) (Thanks to Mark for the remark)
<<lessWith the AdWords API you can not only manage and organize your accounts more efficiently, easily and smoothly, but also more creatively. Using the API, you can create your own report-pulling software, synchronize your bids with your warehousing or have your own mass uploading tool control your accounts.
Enhancements:
- Bug fix in Criterion.php where in case of activated budget optimizer the MaxCPC field could not be muted (no it can be null). (Thanks to Wei for the bug report and the bug fix.)
- Bug fix in nusoap.php where the EUR sign got munged when the file was saved UTF8-encoded (Thanks to Tom Churm for the bug report and the bug fix.)
- Changed the NuSOAP debugging level which should solve memory leaks (Thanks to Phil and Chronofish for the bug report and fix)
- Fixed the docs (removed old creative service stuff) (Thanks to Mark for the remark)
Download (0.59MB)
Added: 2007-06-22 License: BSD License Price:
858 downloads
Hardware::iButton 0.03
Hardware::iButton is a Perl module that allows to talk to DalSemi iButtons via a DS2480 serial widget. more>>
Hardware::iButton is a Perl module that allows to talk to DalSemi iButtons via a DS2480 serial widget.
SYNOPSIS
use Hardware::iButton::Connection;
$c = new Hardware::iButton::Connection "/dev/ttyS0";
@b = $c->scan();
foreach $b (@b) {
print "family: ",$b->family(), "serial number: ", $b->serial(),"n";
print "id: ",$b->id(),"n"; # id = family . serial . crc
print "reg0: ",$b->readreg(0),"n";
}
This module talks to iButtons via the "active" serial interface (anything using the DS2480, including the DS1411k and the DS 9097U). It builds up a list of devices available, lets you read and write their registers, etc.
The connection object is an Hardware::iButton::Connection. The main user-visible purpose of it is to provide a list of Hardware::iButton::Device objects. These can be subclassed once their family codes are known to provide specialized methods unique to the capabilities of that device. Those devices will then be Hardware::iButton::Device::DS1920, etc.
iButtons and solder-mount Touch Memory devices are each identified with a unique 64-bit number. This is broken up into 8 bits of a "family code", which specifies the part number (and consequently the capabilities), then 48 bits of device ID (which Dallas insures is globally unique), then 8 bits of CRC. When you pass these IDs to and from this package, use hex strings like "0123456789ab".
<<lessSYNOPSIS
use Hardware::iButton::Connection;
$c = new Hardware::iButton::Connection "/dev/ttyS0";
@b = $c->scan();
foreach $b (@b) {
print "family: ",$b->family(), "serial number: ", $b->serial(),"n";
print "id: ",$b->id(),"n"; # id = family . serial . crc
print "reg0: ",$b->readreg(0),"n";
}
This module talks to iButtons via the "active" serial interface (anything using the DS2480, including the DS1411k and the DS 9097U). It builds up a list of devices available, lets you read and write their registers, etc.
The connection object is an Hardware::iButton::Connection. The main user-visible purpose of it is to provide a list of Hardware::iButton::Device objects. These can be subclassed once their family codes are known to provide specialized methods unique to the capabilities of that device. Those devices will then be Hardware::iButton::Device::DS1920, etc.
iButtons and solder-mount Touch Memory devices are each identified with a unique 64-bit number. This is broken up into 8 bits of a "family code", which specifies the part number (and consequently the capabilities), then 48 bits of device ID (which Dallas insures is globally unique), then 8 bits of CRC. When you pass these IDs to and from this package, use hex strings like "0123456789ab".
Download (0.021MB)
Added: 2007-08-15 License: Perl Artistic License Price:
808 downloads
WANPIPE 2.3.4-13 / 3.1.3 Beta
WANPIPE S-series is a family of intelligent multi-protocol WAN and ADSL adapters that support data transfer rates up to 8Mbps. more>>
WANPIPE S-series is a family of intelligent multi-protocol WAN and ADSL adapters that support data transfer rates up to 8Mbps.
All WAN protocols supported by WANPIPE are implemented in firmware and run on the card. An advantage of an intelligent adapter is that it offloads the system CPU and improves stability.
By adding a Sangoma WAN/ADSL component to the Linux kernel, one can create a powerful multi-T1/ADSL router/firewall with proven reliability of Linux. Sangoma S-series cards support an optional on board T1/E1 CSU/DSU that eliminates all external components of a traditional routing solution: i.e. T1/E1 line can be directly connected to the card.
WANPIPE supports the following protocols, ATM, ADSL, Frame Relay, PPP, MULTILINK PPP, CHDLC, X25(API), BitStreaming (API), BiSync(API), and SDLC(API).
Furthermore, WANPIPE supports custom API development such as: Credit card verification, Voice-over IP, Satellite Comm. All device drivers are part of the standard Linux Kernel distribution.
Whats New in 3.1.3 Beta Development Release:
- Drivers can now work with 1, 2, 5, and 10ms chunk sizes.
- Numerous major bugs have been fixed, including issues with echo cancellation, DTMF synchronization, E1/CRC4 mode, and startup.
<<lessAll WAN protocols supported by WANPIPE are implemented in firmware and run on the card. An advantage of an intelligent adapter is that it offloads the system CPU and improves stability.
By adding a Sangoma WAN/ADSL component to the Linux kernel, one can create a powerful multi-T1/ADSL router/firewall with proven reliability of Linux. Sangoma S-series cards support an optional on board T1/E1 CSU/DSU that eliminates all external components of a traditional routing solution: i.e. T1/E1 line can be directly connected to the card.
WANPIPE supports the following protocols, ATM, ADSL, Frame Relay, PPP, MULTILINK PPP, CHDLC, X25(API), BitStreaming (API), BiSync(API), and SDLC(API).
Furthermore, WANPIPE supports custom API development such as: Credit card verification, Voice-over IP, Satellite Comm. All device drivers are part of the standard Linux Kernel distribution.
Whats New in 3.1.3 Beta Development Release:
- Drivers can now work with 1, 2, 5, and 10ms chunk sizes.
- Numerous major bugs have been fixed, including issues with echo cancellation, DTMF synchronization, E1/CRC4 mode, and startup.
Download (10.1MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
807 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
TenderSystem 0.9.5 Beta
TenderSystem is an Internet-based system to source, award, and manage a procurement process. more>>
TenderSystem is an Internet based system to source, award and manage the total procurement process.
This tried and tested technology leverages the age-old principle of supply and demand, through reverese auction, ensuring that products are purchased at the best possible price, at a lower administration and management cost, than any other method.
TenderSystem is released under a dual license, namely TenderSystem Public License (TPL) for TenderSystem OS and a commercial license for TenderSystem PRO that includes additional features.
Main features:
- Tender invitations by email with optional SMS notification.
- Templates for cellphones, computers, laptops, car audio and cameras.
- Attach files.Smart closing time calculation or user defined closing time.
- Budget value displayed in RFQ.
- Calculate savings based on alternative quotes.
- Automatically generate installation or delivery fee.
- Send RFQ to multiple supplier agents.Supplier panel not required for RFQ.
- Display RFQs publicly.
- Quote by email or website.
- Automatically submit valid supplier quotes.
- Include attachments with quote submission.
- Recommend suitable substitution products, description, stock availability and validity period.
- Multiple quote submissions.
- Automatically close RFQ when all requests received or closing time reached.
- Send email report to user stating all supplier quotes.
- Send email report to agent stating price position.
- Remove duplicate submissions.
- Award to supplier, cash-settlement, invalidate or non-tender merchant.
- Send out purchase order via email to successful supplier with optional SMS notification.
- Purchase order authentication.
- Optional SMS notification to supplier and client.
- Mandate management.
- Create and delete organisations, branches and users.
- View reports (Audit trail and Group by Quote).
- View and edit profiles.
- Reset passwords.
- Request tenders on behalf of users.
- Create and delete suppliers, branches and agents.
- View reports (Open, Closed and Awarded).
- View and edit profiles.
- Reset passwords.
- Link organisations, areas and categories.
- Upload and view valid items.
- Submit tenders on behalf of agents.
- Control panel displaying audit trail of whole process.
- Change closing times.
- Change and invalidate quotes.
- Load, edit and delete States.
- Load, edit, delete and link Areas.
- Load, edit and delete Categories.
- Load, edit and delete Subcategories and Brands.
- Create and delete administrators.
- General Settings
<<lessThis tried and tested technology leverages the age-old principle of supply and demand, through reverese auction, ensuring that products are purchased at the best possible price, at a lower administration and management cost, than any other method.
TenderSystem is released under a dual license, namely TenderSystem Public License (TPL) for TenderSystem OS and a commercial license for TenderSystem PRO that includes additional features.
Main features:
- Tender invitations by email with optional SMS notification.
- Templates for cellphones, computers, laptops, car audio and cameras.
- Attach files.Smart closing time calculation or user defined closing time.
- Budget value displayed in RFQ.
- Calculate savings based on alternative quotes.
- Automatically generate installation or delivery fee.
- Send RFQ to multiple supplier agents.Supplier panel not required for RFQ.
- Display RFQs publicly.
- Quote by email or website.
- Automatically submit valid supplier quotes.
- Include attachments with quote submission.
- Recommend suitable substitution products, description, stock availability and validity period.
- Multiple quote submissions.
- Automatically close RFQ when all requests received or closing time reached.
- Send email report to user stating all supplier quotes.
- Send email report to agent stating price position.
- Remove duplicate submissions.
- Award to supplier, cash-settlement, invalidate or non-tender merchant.
- Send out purchase order via email to successful supplier with optional SMS notification.
- Purchase order authentication.
- Optional SMS notification to supplier and client.
- Mandate management.
- Create and delete organisations, branches and users.
- View reports (Audit trail and Group by Quote).
- View and edit profiles.
- Reset passwords.
- Request tenders on behalf of users.
- Create and delete suppliers, branches and agents.
- View reports (Open, Closed and Awarded).
- View and edit profiles.
- Reset passwords.
- Link organisations, areas and categories.
- Upload and view valid items.
- Submit tenders on behalf of agents.
- Control panel displaying audit trail of whole process.
- Change closing times.
- Change and invalidate quotes.
- Load, edit and delete States.
- Load, edit, delete and link Areas.
- Load, edit and delete Categories.
- Load, edit and delete Subcategories and Brands.
- Create and delete administrators.
- General Settings
Download (1.8MB)
Added: 2006-09-19 License: TPL (TenderSystem Public License) Price:
1136 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
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
GSUtil 0.3
GSUtil is a utility for saving, restoring, and rebooting GrandStream BudgeTone 100 VOIP phones. more>>
The Grandstream BudgeTone 100 VOIP telephone is a telephone that does VOIP on a budget, from a company called Grandstream.
GsUtil is a project I wrote to dump and restore the data from these phones. Since a reboot is required to make the configuration change effective, this program does that too.
Its written in Perl, tested on Fedora Core 4, and provided as tarball and rpm files. Only perl and perl-libwww-perl were used, and they came with the operating system.
Enhancements:
- For some reason, BT101/102 restore wasnt working.
- The code has been rewritten from scratch, with a cleaner internal design and backwards compatibility.
<<lessGsUtil is a project I wrote to dump and restore the data from these phones. Since a reboot is required to make the configuration change effective, this program does that too.
Its written in Perl, tested on Fedora Core 4, and provided as tarball and rpm files. Only perl and perl-libwww-perl were used, and they came with the operating system.
Enhancements:
- For some reason, BT101/102 restore wasnt working.
- The code has been rewritten from scratch, with a cleaner internal design and backwards compatibility.
Download (0.006MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1184 downloads
Monalo Toolbar 0.93
Monalo Toolbar is a Firefox extension that shows RSS feed headlines directly in the toolbar and more... more>>
Monalo Toolbar Firefox extension lets you:
1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
<<less1) Show RSS feed headlines directly in the toolbar with a slick fade-in effect. You can also select from a list of topics (i.e. Technology, Video Gaming, Star Wars) to get headlines from feeds relating to the chosen topic.
2) Be notified when there are updates to RSS feeds you wish to monitor.
3) Share links with friends/family/the world.
There are many other features, such as the ability to create your own topic-based "channel" (with RSS) from a mashup of related RSS feeds. So, for example, you could create an "IT Podcasts" channel which would display all the latest (and most popular) IT podcasts from around the web.
The rest is left for you to discover.
Download (0.033MB)
Added: 2007-05-28 License: MPL (Mozilla Public License) Price:
882 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 budget 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