Main > Free Download Search >

Free dog crates for sale software for linux

dog crates for sale

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 733
DOG Data Organizer 0.4.2

DOG Data Organizer 0.4.2


DOG Data Organizer provides a bookmark organizer for various bookmark types. more>>
DOG Data Organizer provides a bookmark organizer for various bookmark types.

DOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks.

It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and Windows IE Favorites.

<<less
Download (0.42MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
960 downloads
C-Dogs SDL Port 0.4

C-Dogs SDL Port 0.4


C-Dogs is an arcade shoot-em-up which lets players work alone and co-operativly during missions. more>>
C-Dogs SDL is a port of the old DOS arcade game C-Dogs to modern operating systems utilising the SDL Media Libraries. In theory C-Dogs SDL should be able to run on Windows, MacOS X, BeOS and the other systems supported by SDL.

Genererally, the more UNIX like a system is, the greater the chance of C-Dogs working (MacOS X and BeOS people, I mean you guys).

C-Dogs SDL was ported to SDL by Jeremy Chin and Lucas Martin-King, using Gentoo Linux as their development environment.

C-Dogs is an arcade shoot-em-up which lets players work alone and co-operativly during missions, and against each other in the "dogfight" deathmatch mode. The DOS version of C-Dogs came with several built in missions and dogfight maps, this version is no exception.

The author of the DOS version of C-Dogs was Ronny Wester. See the "official" homepage for more details. We would like to thank him for releasing the C-Dogs sources to the public.

<<less
Download (0.36MB)
Added: 2007-07-07 License: GPL (GNU General Public License) Price:
847 downloads
iFunny Icons Vol.1 for Linux -

iFunny Icons Vol.1 for Linux -


4 freeware icons designed in cartoon style. more>> Description:
4 freeware icons designed in cartoon style.
Content:
Girl, Boy, Cat, Dog
<<less
Download (145KB)
Added: 2009-04-20 License: Freeware Price:
188 downloads
Crate Game Engine Milestone 4.1

Crate Game Engine Milestone 4.1


The Crate Game Engine is a game engine that is designed to make creating games trivial. more>>
Crate Game Engine is a game engine that is designed to make the process of creating games trivial.
The rendering engine and scripting engine are removed from the game engine to make the specialization of games as easy as possible.
An XML game loader will be implemented to make creating games require no recompiling.
Extremely easy to use game engine with modular Scripting and Rendering engines.
Milestones:
Milestone 1: Basic framework compilable (completed Oct 9, 2005)
Milestone 2: C++ proof of concept demo using framework & text based RenderingEngine
Milestone 3: XML based game loader with Milestone 2 game ported to it
Milestone 4: Scripting support with Milestone 3 game ported to it
Milestone 5: 2D Rendering Engine with Milestone 4 game ported to it
Enhancements:
- This release includes minor API and documentation updates, as well as a logging system.
<<less
Download (0.20MB)
Added: 2005-12-09 License: LGPL (GNU Lesser General Public License) Price:
805 downloads
Crash Recovery Kit for Linux 2.6.11.10

Crash Recovery Kit for Linux 2.6.11.10


Crash Recovery Kit for Linux is a Linux distribution for system recovery. more>>
Crash Recovery for Linux sounds a bit superfluous. Linux is regarded as one of todays most stable Operating Systems. In the case of some hardware failure like a broken disk it can however be handy.
Of course your machine doesnt have to have linux installed to make use of the CRK kit. There are several uses and purposes for the CRK to be used. To name a few :
- recovery of a trashed LILO boot record. How many times does it happen that some person installs windows 98/95 after he/she installed linux? Well in that case windows 9X just overwrites the MBR record and linux wont be able to boot anymore.
- backup over the network in the form of tar.gz tarballs. Both FAT16, FAT32, ext2 and all filesystems which Linux supports in a read/write fashion can be taken care of. The strong part of the CRK is when a disk is replaced or repartitioning is being done. The CRK boots a complete mini linux with networking where all possible hardware which is inside the Linux kernel is available.
- Testing hardware of new intel based machines.
- Detecting versions and types of hardware. The Linux kernel holds a large database of hardware supported. Booting a linux kernel doesnt only resolve if the hardware is ok, it also show its specs. This can be handy if one wants to check-out an old/new PC which is for sale.
- Recovery of a misconfigured or hacked Linux system. Well that can happen. /etc/fstab can be wrong or the root password is unknown etc.
- make a tape backup of a disk which cant be booted anymore.
The CRK is based on RedHat Linux. I have always used RedHat systems, thats why. When my system needed maintenance the rescue floppy image which RedHat supplies didnt fullfill my needs.
Thats why i created the CRK. Lately i use Mandrake. How and why the CRK was created read the short history. The CRK is licensed under the GNU Public License (GPL).
<<less
Download (38.1MB)
Added: 2005-10-14 License: GPL (GNU General Public License) Price:
1479 downloads
The Open For Business Project 3.0.0

The Open For Business Project 3.0.0


The Open For Business Project is a J2EE-based enterprise automation tools and applications. more>>
The Open For Business Project is an open source enterprise automation software project licensed under the MIT Open Source License.
By open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
<<less
Download (28.51MB)
Added: 2005-04-28 License: MIT/X Consortium License Price:
1642 downloads
Data::CTable 1.03

Data::CTable 1.03


Data::CTable is a Perl module that helps you read, write, manipulate tabular data. more>>
Data::CTable is a Perl module that helps you read, write, manipulate tabular data.

SYNOPSIS

## Read some data files in various tabular formats
use Data::CTable;
my $People = Data::CTable->new("people.merge.mac.txt");
my $Stats = Data::CTable->new("stats.tabs.unix.txt");

## Clean stray whitespace in fields
$People->clean_ws();
$Stats ->clean_ws();

## Retrieve columns
my $First = $People->col(FirstName);
my $Last = $People->col(LastName );

## Calculate a new column based on two others
my $Full = [map {"$First->[$_] $Last->[$_]"} @{$People->all()}];

## Add new column to the table
$People->col(FullName => $Full);

## Another way to calculate a new column
$People->col(Key);
$People->calc(sub {no strict vars; $Key = "$Last,$First";});

## "Left join" records matching Stats:PersonID to People:Key
$Stats->join($People, PersonID => Key);

## Find certain records
$Stats->select_all();
$Stats->select(Department => sub {/Sale/i }); ## Sales depts
$Stats->omit (Department => sub {/Resale/i}); ## not Resales
$Stats->select(UsageIndex => sub {$_ > 20.0}); ## high usage

## Sort the found records
$Stats->sortspec(DeptNum , {SortType => Integer});
$Stats->sortspec(UsageIndex, {SortType => Number });
$Stats->sort([qw(DeptNum UsageIndex Last First)]);

## Make copy of table with only found/sorted data, in order
my $Report = $Stats->snapshot();

## Write an output file
$Report->write(_FileName => "Rept.txt", _LineEnding => "mac");

## Print a final progress message.
$Stats->progress("Done!");

## Dozens more methods and parameters available...

OVERVIEW

Data::CTable is a comprehensive utility for reading, writing, manipulating, cleaning and otherwise transforming tabular data. The distribution includes several illustrative subclasses and utility scripts.

A Columnar Table represents a table as a hash of data columns, making it easy to do data cleanup, formatting, searching, calculations, joins, or other complex operations.

The objects hash keys are the field names and the hash values hold the data columns (as array references).

Tables also store a "selection" -- a list of selected / sorted record numbers, and a "field list" -- an ordered list of all or some fields to be operated on. Select() and sort() methods manipulate the selection list. Later, you can optionally rewrite the table in memory or on disk to reflect changes in the selection list or field list.
Data::CTable reads and writes any tabular text file format including Merge, CSV, Tab-delimited, and variants. It transparently detects, reads, and preserves Unix, Mac, and/or DOS line endings and tab or comma field delimiters -- regardless of the runtime platform.

In addition to reading data files, CTable is a good way to gather, store, and operate on tabular data in memory, and to export data to delimited text files to be read by other programs or interactive productivity applications.

To achieve extremely fast data loading, CTable caches data file contents using the Storable module. This can be helpful in CGI environments or when operating on very large data files. CTable can read an entire cached table of about 120 megabytes into memory in about 10 seconds on an average mid-range computer.

For simple data-driven applications needing to store and quickly retrieve simple tabular data sets, CTable provides a credible alternative to DBM files or SQL.
For data hygiene applications, CTable forms the foundation for writing utility scripts or compilers to transfer data from external sources, such as FileMaker, Excel, Access, personal organizers, etc. into compiled or validated formats -- or even as a gateway to loading data into SQL databases or other destinations. You can easily write short, repeatable scripts in Perl to do reporting, error checking, analysis, or validation that would be hard to duplicate in less-flexible application environments.

The data representation is simple and open so you can directly access the data in the object if you feel like it -- or you can use accessors to request "clean" structures containing only the data or copies of it. Or you can build your own columns in memory and then when youre ready, turn them into a table object using the very flexible new() method.

The highly factored interface and implementation allow fine-grained subclassing so you can easily create useful lightweight subclasses. Several subclasses are included with the distribution.

Most defaults and parameters can be customized by subclassing, overridden at the instance level (avoiding the need to subclass too often), and further overridden via optional named-parameter arguments to most major method calls.

<<less
Download (0.15MB)
Added: 2007-07-13 License: Perl Artistic License Price:
833 downloads
trytond_sale 1.2.1

trytond_sale 1.2.1


trytond_sale 1.2.1 is designed as a professional Python module that helps users to define sale order or add to product sale information more>> <<less
Added: 2009-07-08 License: GPL Price: FREE
11 downloads
Gateway 3.0 Beta 2

Gateway 3.0 Beta 2


Gateway is a JavaEE application developed by the Vermont Department of Taxes. more>>
Gateway is a JavaEE application developed by the Vermont Department of Taxes. It provides a web services framework for accepting Streamlined Sales Tax registrations and returns.

The project also includes a web interface for manually submitting transmissions. The goal is to build an extensible framework upon which future tax services can be built.

<<less
Download (7.8MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
830 downloads
Open Blue Lab 2.1.0 (Sales/CRM)

Open Blue Lab 2.1.0 (Sales/CRM)


Open Blue Lab is a modular ERP, built on a plugin architecture. more>>
Open Blue Lab project is a modular ERP, built on a plugin architecture. Each business domain (such as Groupware, Financial, HCM, PLM, or SCM) is separated into subdomains which are implemented through plugins.
This form permits you to create all the information related to a contact you are in relation with, during, for example, a phone call. Once totally expanded, this form looks like the image on your right. A click on orange borders will open or close the corresponding section.
This form is directly generated from the UML model that describes CRM informations system. Layout like multicomuln is specified in a very easy way.
Enhancements:
- The CSS style was corrected by deleting the footer, changing skins, improving the search button, and adding PNG transparency.
- The action portlet was fixed up.
- Some messages have been translated.
- You can now drag and drop portlets.
- The search bar has been improved, so you can search by contact, city, company, or any other fields.
- You can now set prority on tasks.
<<less
Download (0.007MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
865 downloads
osCommRes 2.4.0.659

osCommRes 2.4.0.659


osCommRes allows service based businesses sell services online. more>>
osCommRes allows service based businesses sell services online. It allows you to sell a product and a service in a single transaction.
It can automate e-marketing and SMS-marketing and empower your call center. It is powerful, efficient, and easy to use. You can place customers into wait lists and selectively overbook events.
osCommRes is an extension of osCommerce, so it is secure, scalable, and reliable.
Enhancements:
- The release continues the general tightening integration between the major features like linked events and subscriptions and or services.
- It improves the installer compatibility test for non-localhost MySQL servers, improves gift vouchers with an AJAX selector, adds HTML templates for invoices and product sales.
- It enhances zone management with AJAX style country grouping and exclusions.
- There are improved sales and fulfiller reports.
- A series of general bugs was fixed.
<<less
Download (11.5MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
1102 downloads
LiteSpeed Web Server 3.1.1

LiteSpeed Web Server 3.1.1


LiteSpeed Web Server is an secure, high-performance, user-friendly Apache interchangeable Web server. more>>
LiteSpeed web server is an Apache interchangeable, full-featured high performance, secure HTTP server specifically engineered from the ground up with security and scalability in mind.
LiteSpeed Web Server is engineered to be Apache interchangeable, which means LiteSpeed has all the flexibilities that Apache has, but in much faster manner, such as distributed configuration .htaccess support.
The most commonly used Apache modules have been implemented in LiteSpeed with similar functionality and configuration, but completely different design and implementation.
Currently, LiteSpeed uses Apache compatible configuration for .htaccess and URL rewriting and eventually LiteSpeed will be able to use Apaches configuration file directly. This makes your switching between Apache and LiteSpeed very easy and risk free.
LiteSpeed Web Server has superb performance. Our measurements shows that it is more than 6 times faster than Apache, beating other lightweight content accelerators, such as thttpd, boa and TUX when serving static content, plus up to 50% increase in PHP performance than that of Apaches mod_php and more than doubled CGI/Fast CGI performance.
When you compare LiteSpeed Web Server to highly regarded and highly priced Zeus Web Server, you will find a lot of things in common: similar architecture and similar feature set, including some of the advanced features like web administration interface, MS FrontPage support, URL Rewriting, .htaccess and LDAP authentication. The biggest difference is that LiteSpeed is much more affordable, actually, it could cost you nothing.
LiteSpeed Web Server is also a real-world proven high performance content accelerator, compression proxy, and application security gateway leveraged by its highly scalable, low latency proxy engine.
With the combination of ease of use, tight security, outstanding performance, scalability, and reliability, LiteSpeed Web Server is the ultimate web server you ever need!
Main features:
- Backward compatible with HTTP/1.0
- Chunked Transfer Encoding
- Basic Authentication (htpasswd and LDAP backend)
- Entity Tag
- Range/Multi-range Request
- Static and dynamic content compression(gzip)
- CGI/1.1
- Fast CGI
- PHP (through Fast CGI interface), compatible with third party PHP Accelerators.
- JSP/Servlet (interface to back-end Servlet engine)
- Transparent reverse proxy (interface to back-end web server, application server)
- URL Rewriting is fully compatible with Apaches configuration
- Supports content publishing with MS Frontpage client.
- Supports IP based and name based virtual hosting
- Apache compatible distributed per-directory Access Control and Authentication configuration
- High performance Secure HTTP (HTTPS): supports SSLv2, SSLv3 and TLSv1
- Access Control at server, virtual host and directory (context) level
- File system protection
- HTTP Authentication
- IP level throttling (Bandwidth and Request Rate)
- Comprehensive IP level connection accounting
- Hotlink protection
- Strict HTTP request checking
- Comprehensive protection for static files
- External application firewall for dynamic content
- CGI resources consumption limit
- CGI suEXEC excution and chroot
- Chroot whole server process[Professional Edition only]
- Watch dog and Instant recovery maximizes up-time
- Graceful shutdown, all requests in process will be completed.
- Runs completely in the user space, OS reliability is not affected
- CGI, Fast CGI and servlet engine run in standalone processes, the reliability of the web server is not affected by third party software.
<<less
Download (5.3MB)
Added: 2007-05-16 License: Freeware Price:
896 downloads
WebService::GoogleHack::Rate 0.15

WebService::GoogleHack::Rate 0.15


WebService::GoogleHack::Rate is a Perl module that implements a simple relatedness measure and semantic orientation. more>>
WebService::GoogleHack::Rate is a Perl module that implements a simple relatedness measure and semantic orientation related type functions.

SYNOPSIS

use WebService::GoogleHack::Rate;

#GIVE PATH TO INPUT FILE HERE

my $INPUTFILE="";

#GIVE PATH TO TRACE FILE HERE

my $TRACEFILE="";

#create an object of type Rate

my $rate = WebService::GoogleHack::Rate->new();

$results=$rate->measureSemanticRelatedness1("dog", "cat");

#The PMI measure is stored in the variable $results, and it can also
#be accessed as $rate->{PMI};

$results=$rate->predictSemanticOrientation($INPUTFILE, "excellent", "bad",$TRACEFILE);

#The resutls can be accessed through
print $results->{prediction}."n";
$results->{PMI Measure}."n";
$rate->{prediction} &."n";
$rate->{PMI Measure}."n";

WebService::GoogleHack::Rate - This package uses Google to do some basic natural language processing. For example, given two words, say "knife" and "cut", the module has the ability to retrieve a semantic relatedness measure, commonly known as the PMI (Pointwise mututal information) measure. The larger the measure the more related the words are. The package can also predict the semantic orientation of a given paragraph of english text. A positive measure means that the paragraph has a positive meaning, and negative measure means the opposite.

<<less
Download (0.088MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1054 downloads
Image Repository 0.7

Image Repository 0.7


Image Repository provides a centralized image repository capable of holding thousands of images with keyword/tag-based browsing. more>>
Image Repository provides a centralized image repository capable of holding thousands of images with keyword/tag-based browsing.
Image Repository is a centralized image repository capable of holding thousands of images with keyword/tag-based browsing and filtering.
Main features:
- Its goal is to provide you with an easy way to have a centralized image library with thousands of images categorized by keywords, dates, etc.
- It has special handling that lets you browse the keyword space like it was a collection of nested folders. Example: Browse to keyword "Carnivores", you will get the available keywords "Cats", "Dogs", and the selection will narrow down, applying all the keywords you have selected on your path through the keyword space.
- It comes complete with a Kupu "library", meaning you can browse the keywords through the Kupu image insertion dialog to make it easy to locate images even in a large collection of images.
- It has a tagging interface that lets you tag images with a thumbnail like view, and apply keywords to multiple images at once.
- It uses whatever image type you have installed (it does need to be added as an addable type and be able to supply thumbnails like the default Plone image type, though).
Enhancements:
- Added action to register the repository in Kupu. [fschulze]
- Using interfaces, views and adapters in various places to make this more flexible. [fschulze]
- Removed unused code. [fschulze]
<<less
Download (0.033MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Lokad osCommerce Sales Forecasting 2.0.4

Lokad osCommerce Sales Forecasting 2.0.4


Lokad Sales Forecasting for osCommerce is an open source application that features integrated sales forecasts reports for your osCommerce web applicat... more>> <<less
Download (159KB)
Added: 2009-04-12 License: Freeware Price: Free
199 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5