discount plasma
DNA Counter 1.0.4
www.dnabaser.com This tool will show the proportions between nucleotides in a DNA sequence. You dont need to install it or unpack it. Just download the program and double click to run it. Other software: DNA Baser is an affordable alternative for assembly of DNA sequences and generation of contigs. File formats supported are abi, scf and seq (or FASTA). Chromatograms of the assembled sequences are displayed in a synchronized format with the generated contig. more>>
DNA Counter - www.dnabaser.com
This tool will show the proportions between nucleotides in a DNA sequence.
You dont need to install it or unpack it. Just download the program and double click to run it.
Other software by HeracleSoftware:
DNA Baser is an affordable alternative for assembly of DNA sequences and generation of contigs. File formats supported are abi, scf and seq (or FASTA). Chromatograms of the assembled sequences are displayed in a synchronized format with the generated contig. Ambiguous bases in the contig are highlighted and corrections are suggested by DNABaser based on Quality Values of the trace files. Minimum input from the user required. Editing of ambiguous bases, including insertion and deletion, is possible. The settings of the assembly engine can be adjusted by the user. The user can personalize the appearance of chromatograms, nucleotides, background. The Quality Values of the trace files are displayed above chromatograms, so that the user can easily decide on the corrections in the final contig. Original chromatogram files are automatically trimmed based on Quality Values. The contig is automatically saved in FASTA format, in the same directory with the original trace files. By using a built-up database of primer and vector sequences, that can be edited/upgraded by the user, DNABaser can be set to automatically trim the vector sequence out of the final contig.
The affordable price is another important feature of DNABaser, at only 490 USD per single license; significant discounts are offered for institutions that order several licenses of DNABaser (see our pricing policy on our web pages).
Enhancements:
Version 1.0.3
better speed
System Requirements:CPU: 100MHz, 16MB RAM, Video 800x600, 0.3MB HDD free space<<less
Plasma EBG 0.26.22
Plasma EBG project is an Empire Building Game for Linux/Windows/Solaris/BSD. more>>
Plasma EBG is an empire building game with an isometric view.
It runs in multiple resolutions with graphics being displayed better for higher resolutions; hence, lower resolutions do not suffer from being too large, etc. In the future several viewing engines will be available, such as EBG-opengl and EBG-2d.
There is a separate module called EBG-dev which features the latest AI-development, as well as a separate server module.
Enhancements:
- Plasma has had server problems in the past 2-2.5months. Hence this release is not that impressive - but it is long overdue.
- Many libraries have been updated/fixed... such as libpng (1.2.1), allegro (4.0.1).
- The new plasma server will be installed after easter some time - and soon after most planned features will be completed.
Ubercart Alpha 7
Ubercart project is an e-commerce shopping cart integrated with the Drupal CMS. more>>
Main features:
- Configurable product catalog includes catalog pages and a block to display product categories.
- Flexible product creation system. Create normal products by default. Create product classes to store more information on a subset of your catalog. (Ex: Creating a book class would let you store and display separately the author, publisher, and length of the book.)
- Flexible product attributes system. Create user selectable attributes for your products that modify the price, SKU/model, and/or weight of items as the customer adds them to his or her cart.
- Single page checkout. All checkout information gathered on a single screen composed of configurable checkout panes. Third party modules can define checkout panes to replace or add to the default set, making it easy to customize the checkout experience.
- Automatic account generation (anonymous checkout). Accounts and emails are automatically generated based on the customers e-mail address. For return customers, previously used addresses will be listed on the checkout page for easy access.
- Simple order processing. The order administration screens have been designed by and for our salesmen. We believe there is always room for improvement and will try to make it happen! Order screens use the "pane" model, so the screens are configurable and extensible to accommodate a wide variety of e-commerce applications.
- Simple order creation and editing. Easy to create orders manually for customers, adding products, shipping prices, etc. from a single screen. Line items system makes it easy to add fees, discounts, and coupons to orders.
- Integrated payment system that acts as a bridge between acceptable payment methods (check, credit card, cod, etc.) and payment gateways (Cyber Source, Authorize.net, PayPal, etc.). Configurable payment processing and tracking, and easy to use credit card terminal with varying levels of access.
- Activity logging. Enable logging to see all the changes made to an order, including payment processing. (Your accountant will love this!)
JScreenFix 1
JScreenFix is a Java applet and Java webstart application that helps re-energise stuck pixels and remove burn-in on LCD and plasma screens by randomly... more>> <<less
DBIx::OO::Tree 0.0.4
DBIx::OO::Tree is a Perl module to manipulate hierarchical data using the nested sets model. more>>
SYNOPSYS
CREATE TABLE Categories (
id INTEGER UNSIGNED AUTO_INCREMENT PRIMARY KEY,
label VARCHAR(255),
-- these columns are required by DBIx::OO::Tree
parent INTEGER UNSIGNED,
lft INTEGER UNSIGNED NOT NULL,
rgt INTEGER UNSIGNED NOT NULL,
mvg TINYINT DEFAULT 0,
INDEX(lft),
INDEX(rgt),
INDEX(mvg),
INDEX(parent)
);
* * *
package Category;
use base DBIx::OO;
use DBIx::OO::Tree;
__PACKAGE__->table(Categories);
__PACKAGE__->columns(P => [ id ],
E => [ label, parent ]);
# note its not necessary to declare lft, rgt, mvg or parent. We
# declare parent simply because it might be useful, but
# DBIx::OO:Tree works with low-level SQL therefore it doesnt
# require that the DBIx::OO object has these fields.
# the code below creates the structure presented in [1]
my $electronics = Category->tree_append({ label => electronics });
my $tvs = $electronics->tree_append({ label => televisions });
my $tube = $tvs->tree_append({ label => tube });
my $plasma = $tvs->tree_append({ label => plasma });
my $lcd = $plasma->tree_insert_before({ label => lcd });
my $portable = $tvs->tree_insert_after({ label => portable electronics });
my $mp3 = $portable->tree_append({ label => mp3 players });
my $flash = $mp3->tree_append({ label => flash });
my $cds = $portable->tree_append({ label => cd players });
my $radios = Category->tree_append($portable->id,
{ label => 2 way radios });
# fetch and display a subtree
my $data = $electronics->tree_get_subtree({
fields => [qw( label lft rgt parent )]
});
my $levels = Category->tree_compute_levels($data);
foreach my $i (@$data) {
print x $levels->{$i->{id}}, $i->{label}, "n";
}
## or, create DBIx::OO objects from returned data:
my $array = Category->init_from_data($data);
print join("n", (map { x $levels->{$_->id} . $_->label } @$array));
# display path info
my $data = $flash->tree_get_path;
print join("n", (map { $_->{label} } @$data));
# move nodes around
$mp3->tree_reparent($lcd->id);
$tvs->tree_reparent($portable->id);
$cds->tree_reparent(undef);
$plasma->tree_move_before($tube->id);
$portable->tree_move_before($electronics->id);
# delete nodes
$lcd->tree_delete;
This module is a complement to DBIx::OO to facilitate storing trees in database using the "nested sets model", presented in [1]. Its main ambition is to be extremely fast at retrieving data (sacrificing for this the performance of UPDATE-s, INSERT-s or DELETE-s). Currently this module requires you to have these columns in the table:
- id: primary key (integer)
- parent: integer, references the parent node (NULL for root nodes)
- lft, rgt: store the node position
- mvg: used only when moving nodes
"parent" and "mvg" are not esentially required by the nested sets model as presented in [1], but they are necessary for this module to work. In particular, "mvg" is only required by functions that move nodes, such as tree_reparent(). If you dont want to move nodes around you can omit "mvg".
Retrieval functions should be very fast (one SQL executed). To further promote speed, they dont return DBIx::OO blessed objects, but an array of hashes instead. Its easy to create DBIx::OO objects from these, if required, by calling DBIx::OO->init_from_data() (see DBIx::OO for more information).
Insert/delete/move functions, however, need to ensure the tree integrity. Heres what happens currently:
- tree_append, tree_insert_before, tree_insert_after -- these execute
one SELECT and two UPDATE-s (that potentially could affect a lot of
rows).
- tree_delete: execute one SELECT, one DELETE and two UPDATE-s.
- tree_reparent -- executes 2 SELECT-s and 7 UPDATE-s. I know, this
sounds horrible--if you have better ideas Id love to hear them.
FreeTpl Shop 1.0
FreeTpl Shop is a Free PHP Shopping Cart. more>>
Shopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). The project provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.
ViArt Shop 2.2.6
ViArt Shop is a Customizable Ecommerce PHP shopping cart software. more>>
This ecommerce solution supports MySQL and PostgreSQL databases as well as ODBC connected databases.
Package includes additional applications: Events, News, FAQ, Support Heldesk System and Forum. The set of these applications and the highly-customizable Shopping Portal Extension allows creating complex Shopping Portal in no time!
Main features:
- No need for programming at all!
- Two-steps installation routine.
- Buy two integrated applications by the price of one: PHP Shopping Cart and Shopping Portal.
- Template-based system
- Multilingual interface
- Coupons
- Enterprise version comes with two more bonus applications: Support Helpdesk System and Forum integrated within one powerful Shopping Portal.
Finance::BDT 0.01
Finance::BDT is a Perl module that implements BDT yield curve model. more>>
SYNOPSIS
use Finance::BDT;
use Data::Dumper
my @y = (0, 0.0283, 0.029, 0.0322, 0.0401, 0.0435, 0.0464, 0.0508, 0.0512); ## YTM on strips
my $vol = 0.20; ## constant volatility
my $epsilon = 0.01;
my ($r, $d, $A) = Finance::BDT::bdt( -yields => @y, -epsilon => $epsilon, -volatility => $vol );
print "Short Rates: n", Dumper $r;
print "Discount Prices: n", Dumper $d;
print "Asset State Prices: n", Dumper $A;
ABSTRACT
Sample implementation of Black-Derman-Toy model.
Finance::BDT implements a constant volatility Black-Derman-Toy model in Perl. Not that you should be building your curves in perl, but now you can. The current implementation works with constant volatility but I am testing a version which allows you to pass in a term structure of volatilities. The input is the zero curve (as observed yields), a constant volatility, and a limit for the numerical solution. The function returns the interest rate tree as a list of lists (first index being the time period, and second being the position with the lowest rate having index 0). Three trees are returned: the short rates at each period, the discount prices and most importantly the state prices.
The examples directory has an untested sample implementation in C for the brave.
iam 0.0.2
iptables accounting monster (iam) is a traffic reporting tool for iptables. more>>
While looking for a traffic reporting tool, I didnt find something that i looked for. So I started to write iam, which:
is free software
works with Linux 2.4 iptables
is written in Python, a readable language (i.e. not perl, awk or shell script)
is secure (i.e. only be root where you need to be root)
doesnt depend on a specific web server or database server
can generate reports for routers or servers
can generate reports in plain text or HTML format
can calculate costs for traffic (currently only price per MB, but bulk discounts should be included soon)
Interchange 5.4.2
Interchange provides a mature Web application development environment. more>>
Interchange is a mature Web application development environment with a focus on ecommerce and dynamic content management.
It offers session and user management, database connectivity (both via SQL and a database abstraction layer), templating, a shopping cart, payment processing, inventory, encryption (via GnuPG, PGP, etc.), tax and shipping calculation, discounts, Web-based administration, localization, event routing, SOAP-based RPC, a custom tag language akin to CFML, and the full power of Perl. It grew out of two earlier projects, MiniVend and Tallyman.
Enhancements:
- A DoS exploit caused by carefully crafted HTTP POST requests has been fixed.
- An apparent Perl bug that allowed code called by DispatchRoutines to overwrite the routines arrays themselves has been worked around.
- Masking of unencrypted credit card numbers to work with a custom MV_CREDIT_CARD_INFO_TEMPLATE that does not match the regexp has been fixed.
- The regexp has been fixed so that it removes the CVV2 value from the unencrypted data.
- A shipping problem with the temporary mv_shipping cart that could cause trouble in cart recalculations has been fixed.
- There are other various bugfixes and minor enhancements.
Bocazas Webchat 1.2
Bozocas Webchat is a IRC chat applet. more>>
Nowadays, an online chat is sometimes crucial.There are situations when your visitors dont have time to wait for an email answer. It might be because they need urgent tech support or because they need to close a deal quickly.
You might also need to offer special discounts, sales, or show to your customers information that is not provided on the web. Being able to chat to the customer online on his/her brief visit might give you the competitive advantage you need.
You need a customer service tool that allows your personnel to instantaneously communicate with your web site visitors.
With this in mind, we created Bocazas Live Support.
Main features:
- Can connect to any known IRC network (only registered versions).
- DCC Chat (Direct Connections) between users.
- Confortable environment to keep track of simultaneous private and public conversations.
- Support text colors.
- Support copy & paste.
- Support sending files between users.
- Support most of the IRC commands (map, links, mode, oper...)
- Support any language: English, Spanish, Chinese, Deutsch, Italian, Turkish... and you can add any other.
poMMo PR15.1
poMMo can be used to add a mailing list to your Web site or to organize stand alone mailings. more>>
Unique features such as the ability to mail subsets of your subscribers set it apart from alternatives.
Main features:
Ease of Use
- Subscription Form
- EnlargeSubscription Form
- poMMo is designed around the concept of simplicity. It is easy to install and administer.
- A clean and intuitive interface featuring AJAX controls aids you in managing subscribers, groups, and mailings.
- See the Tour or visit our online Demonstration install.
- Integrate poMMo into your existing website with only 3 lines of code!
- Look and feel can be changed by any web designer using with SMARTY templates devoid of PHP!
- Simple, two minute installation.
- No advanced administrative tasks such as setting a crontab event.
- Compatible with any common webhosting provider.
Flexibility
- Group Creation
- EnlargeGroup Creation
- Your subscribers are inserted into an powerful database that is simplistic to manipulate and allows unprecedented flexibility regardless of expertise. poMMo can be tailored to suit any needs.
- Collect any number of completely customizable demographics through Subscriber Fields.
- Create Mailing Groups of subscribers based off their demographic values. Mail a subset of your subscribers -- see Understand Groups.
- Mailing Messages and "on success" URLs are easily customized.
- Implementation Examples
- Realtor: Ask your subscribers what neigborhoods, property size, price range, and other attributes they are interested in. When a new property becomes available, mail subscribers who have expressed interest in this particular type of property.
- Multiple Website Newsletters: Create a subscriber field asking which newsletter(s) your subscriber would like to recieve.
- Shoe Store: Collect shoe size and preferred style and brand from your subscribers. When new shoes arrive, or during a sale, notify the customers most interested. Perhaps offer an "exlusive" discount to these subscribers.
- Marketer: Import large amounts of subscribers and their assosiated demographics. Create groups using poMMos powerful filtering criteria to pinpoint your audience.
- Band: Collect your subscribers geographic location and whether theyd like to be part of a volunteer street team. Notify the list that the band will be performing near their town by creating groups based of geography.
Enhancements:
- Fixes were made for suppression of PHP notices, reloading and previewing of plain text mailings, loading of sample data from the support library, WYSIWYG Editor mangling of URLs, bandwidth throttle calculations, throttle setting limitations, and typographical errors.
Zen Cart 1.3.7
Zen Cart truly is the art of e-commerce; a free, user-friendly, open source shopping cart system. more>>
Some "solutions" seem to be complicated programming exercises instead of responding to users needs, Zen Cart puts the merchants and shoppers requirements first. Similarly, other programs are nearly impossible to install and use without an IT degree, Zen Cart can be installed and set-up by anyone with the most basic computer skills. Others are so expensive ... not Zen Cart, its FREE!
Zen Cart will deliver the ultimate online shopping experience to your customers. Navigating through your merchandise offerings is a breeze with Zen Cart, the program provides several "Spotlight" lists in addition to the traditional category to product links. Once a product is added to the shopping cart, secure checkout is a simple 3-step process.
After providing the billing information, your customer chooses the shipping method. (multiple shipping methods including real-time internet shipping quotes are built-in) Next, a payment type is chosen from one of the popular payment modules. (PayPal and AuthorizeNet are just 2 of the included modules) Last, the customer reviews the order, shipping and payment choices, and confirms the order.
You are immediately notified of the order and your customer automatically receives an e-mail confirmation.
Zen Cart addresses many of the goals we set:
- make the program easy to set up
- make it easy to customize
- automate tasks, such as order confirmation
- make navigation simple
- built in promotions; discount coupons, gift certificates, newsletters and product notification
- offer single item specials and storewide discounts (group discounts and quantity discounts - Coming in future editions)
- built in Search Engine Optimization tools
- password protect the Administration Tool (administration "levels" - Coming in future editions)
- support multiple languages, currencies and tax structures
- In short, Zen Cart is shopping cart software the way it should have been all along.
Zen Cart gives web designers a robust and customizable electronic storefront thats easy to keep up-to-date with new features.
It provides usable, intuitive and unobtrusive purchase flows right out of the box based on proven industry best-practices - there are no major revisions required to get things right for your clients!
One of the secrets behind its power lies in our robust template system that "abstracts" the look-and-feel from the code and logic behind Zen Cart. This enables you to give clients a truly custom solution that integrates quickly and perfectly with their existing marketing websites.
Developers are able to deploy cutting edge solutions based on Zen Carts modern standards and technologies. Combining PHP server-side technology with the ability to choose from multiple databases on the back end (coming in future editions, thanks to ADOdb), results in flexible software that you can customize and modify to suit your needs. Minimum/suggested server requirements: PHP 4.1.x or higher (PHP 4.3.3+ for optimal performance), Apache 1.3.x and MySQL 3.2x.x or higher.
Enhancements:
- Two vulnerabilities related to cross site scripting (XSS) have been fixed.
- Officially certified for Paypal Express Checkout (only for North American Paypal accounts as of 20070101).
- Also includes several minor improvements and bugfixes.
PgMarket 2.2.3
PgMarket is an e-commerce solution based on PHP4 and PostgreSQL/MySQL. more>>
It is released under the terms of the GNU GPL (General Public License).
All its pages are HTML 4.01 Transitional valid documents, and the CSSs are valid CSS 2.0 documents; full usability and accessibility is provided also if JavaScript is disabled on the client browser.
Main features:
- PostgreSQL (>= 6.5) and MySQL 3.23 support, and easy portability to other DBMSs
- multiple languages support (i18n)
- advanced images and thumbnails handling; possibility of on the fly generation of thumbnails of full size images; possibility of storing images and thumbnails in the DB instead of on the file system
- easy customization of many look elements through .css files
- HTML-only templates, not containing PHP code
- a simple and an advanced search engine
- products are organized in categories and subcategories of arbitrary level; each product can belong to more than one category; products and categories are shown ordered by their respective "special level" values
- comfortable category browsers (the PHP Layers Menu system is used)
- support of per-user and per-product discounts
- delivery price based on the delivery zone and on the total shopping cart weight
- possibility of disabling many features through the configuration file, without modifying scripts and templates
- mailing of the orders, and storage of all the orders in the database
- order states handling
- ability for the customers to track their orders states and logs
- ability for subscribed and non subscribed customers to contact the store without buying anything, through a suited contact form
- splitting in sub pages for pages that show a large number of items
- easy customization of the currency and of the weight unit
- comfortable web based administration interface: the web shop is easily built up simply through a browser; the "web shop root" can insert categories, as well as insert, edit, and delete products also while browsing the catalog
- possibility of importing data from text files easily obtainable through a spreadsheet
- possibility of off-line filling of the shop and subsequent on-line synchronization of data and images/thumbs, also between etherogeneous platforms, i.e. between PostgreSQL and MySQL and between Unix and MS Windows, in both directions
FreeTpl Free PHP Shopping Cart 1.0
FreeTpl Shop is an Free Version online shop e-commerce solution that is available for free download. more>>
FreeTpl Shop is an Free Version online shop e-commerce solution that is available for free download. The project features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved.
FreeTpl Shop has attracted the largest community for an e-commerce solution, to date there are over 2,000 download all over the world.
FreeTpl combines Open Source solutions to provide a free and open e-commerce platform, which includes the powerful PHP web scripting language and the fast MySQL database server. With no special requirements, FreeTpl is able to run on any PHP 4.1+ enabled web server running on Linux, Solaris, BSD, Mac OS X, and Microsoft Windows environments
Features Not Included In Free Version
Support System
Forum System
Only 3 Basic Templates Available
FreeTpl Shop Key features include:
FreeTpl PHP Shopping Cart supports Downloadable products with instant activation option, especially useful for software companies selling their products via the Internet & could be easily integrated into any system widely utilizing the power of templates and web-administration tools. Shopping Basket with advanced Sales Mechanisms (Products reviews and ratings, Discounts mechanism, Shipping and Stock mechanisms, etc), Web-based Administration with Order Maintenance, Product Maintenance, User/Shopper Maintenance, multiple payment processing capabilities (including support of Verisign, Paypal and Authorize.net payment systems). It provides an easy, quick and flexible web interface that allows adding high performance Shopping basket to your web site.
- Page: 1 of 2
- 1
- 2