Main > Free Download Search >

Free sdk software for linux

sdk

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 83
JCom SDK 1.2

JCom SDK 1.2


JCom SDK provides a network package for the Java language. more>>
JCom SDK provides a network package for the Java language.
The JCom SDK is a network package for the Java language. It allows the programmer to create client/server application with little knowledge about networks and no knowledge about TCP/IP. It is basically a set of wrappers built around Javas internal TCP/IP socket classes.
The JCom SDK is a network package for the Java language. It allows the programmer to create client/server application with little knowledge about networks and no knowledge about TCP/IP. The JCom SDK is basically a set of wrappers built around Javas internal TCP/IP socket classes. To create a client connection, the programmer needs only to create the client class with the appropriate IP address. As for the server, the programmer needs only to specify on which port the server will receive the connection and when to start listening. All aspect of the connection is handle internaly. The programmer needs only to consult its event queue to receive messages and add messages to remote queues to send messages.
The initial version of the JCom SDK was design as a network module for a school project. However, I saw that with a little modification, I could make the module generic for any application. The idea came to me when a few friends asked me if they could borrow my network modules for their project. After a little coding and a lot of comments, the first public version of the SDK was released. Thought I am not available to answer questions or offer support, suggestions and comments are always welcomed.
Enhancements:
- JCom is now thread safe (big thanks to Marc)
<<less
Download (0.040MB)
Added: 2007-04-05 License: LGPL (GNU Lesser General Public License) Price:
932 downloads
DPML SDK 2.0.2

DPML SDK 2.0.2


DPML SDK is a management platform for Java-based component development, resource management, and deployment. more>>
DPML SDK is a management platform for Java-based component development, resource management, and deployment.
DPML SDK is composed of the Transit resource management layer, the Depot multi-project build system, the Metro component management runtime engine, and the Station application management console.
Enhancements:
- New features and enhancements added since version 2.0.1 include the addition of support for component composition via reference to nested parts within the internal structure of a component using part URIs as the construction mechanisms.
- This version also includes numerous code and documentation quality enhancements and updates to the checkstyle task involving migration from Checkstyle 4.1 to 4.3.
<<less
Download (5.7MB)
Added: 2007-04-26 License: The Apache License 2.0 Price:
911 downloads
 
Other version of DPML SDK
DPML SDK 1.1.0The Digital Product Meta Library - DPML SDK is a management platform for Java-based component development, resource management, and deployment. DPML SDK
License:The Apache License 2.0
Download (10.8MB)
926 downloads
Added: 2007-04-14
Quake 4 1.3 SDK

Quake 4 1.3 SDK


Quake 4 SDK contains the full public game source code, and map, mod and art samples. more>>
Quake 4 SDK contains the full public game source code, and map, mod and art samples.

About Quake 4:

Earth is under siege by the Strogg, a barbaric alien race moving through the universe consuming, recycling and annihilating any civilization in their path. In a desperate attempt to survive, an armada of Earths finest warriors is sent to take the battle to the Strogg home planet.

You are Matthew Kane, an elite member of Rhino Squad and Earths valiant invasion force. Fight alone, with your squad, or in hover tanks and mechanized walkers as you engage in a heroic mission to the heart of the Strogg war machine.

Battle through the beginning of the game as a combat marine, then after your capture, as a marine-turned-Strogg with enhanced abilities and the power to turn the tide of the war.

Built on id Softwares revolutionary DOOM 3 technology, QUAKE 4 also features fast-paced multiplayer competition modeled after the speed, feel, and style of QUAKE III Arena.
<<less
Download (61.5MB)
Added: 2006-08-01 License: Freeware Price:
1191 downloads
BlueSense SDK rev 1542

BlueSense SDK rev 1542


BlueSense SDK is a software development kit for communicating with BlueSense equipment. more>>
BlueSense SDK is a software development kit for communicating with BlueSense equipment. BlueSense SDK allows you to read out sensors or control actuators.
A user-space USB driver for all platforms is included. Examples for all modules are also included. For Java, there is an object-oriented interface, and for C, there is a function based interface.
Our system has a few big advantages over competiting systems:
- First BlueSense is truly modular. With other systems when you run out of inputs youre stuck. With BlueSense you can always add new modules.
- Our boards have been programmed with intelligence. Seamlessly you can use counters, rotary encoders, adjust sampling resolution, etc. All the tiresome work has been done for you!
- A minimum number of electronic components is needed. For example you can add relays directly without the use of any transistors!
- Are your modules placed on spots which are difficult to reach? You can use the BlueSense wireless boards. Multiple wireless boards can be used
- High data speeds over a cabled network. Most inputs and outputs can be updated over 1000 times a second.
- Software support for a large number of software packages like Max/Msp(tm), Processing, C, Java and others. BlueSense is supported on MaxOSX, Windows and Linux. The developer library is freeware.
Enhancements:
- Many bugfixes. Support has been added for Intel Mac OS X.
- Support has been added for the (bipolar) stepper motor module and an easy-to-use relay module.
<<less
Download (0.48MB)
Added: 2007-05-18 License: Freeware Price:
889 downloads
LuxMapGenerator SDK 1.0

LuxMapGenerator SDK 1.0


Create your own random map generator for the RISK style strategy game Lux. This SDK comes with API documentation and examples. The language used is Ja... more>> <<less
Download (36KB)
Added: 2009-04-03 License: Freeware Price: Free
203 downloads
Business::PayPal::SDK 0.14

Business::PayPal::SDK 0.14


Business::PayPal::SDK is an interface to paypals SDKs. more>>
Business::PayPal::SDK is an interface to paypals SDKs.

SYNOPSIS

use Business::PayPal::SDK;
my $pp = new Business::PayPal::SDK(
{
paypal_apiid => "sdk-seller_api1.sdk.com",
paypal_apipw => "12345678",
paypal_cert => "paypal_java_sdk/samples/Cert/sdk-seller.p12",
paypal_certpw => "password",
paypal_env => "sandbox",
java_sdk_dir => "/path/to/paypals/java/sdk",
}
);

my $res = $pp->SetExpressCheckout(
{
OrderTotal => 10.00,
ReturnURL => http:://mydomain.com/myreturn,
CancelURL => http:://mydomain.com/mycancel,
}
);

print $res->{token};

Business::PayPal::SDK is a perl interface to the SDK provided by paypal (http://www.paypal.com/sdk). You can use this module to implement paypal pro and paypal express transactions in perl. On the back end this modules uses Inline::Java to interface directly with the paypals java sdk. Consequently you will need to get a J2SDK and Inline::Java installed. This was done for 2 reasons. 1) Speed of development, didnt have to deal with all the SOAP stuff. 2) Easier maintanance regarding future changes. That is to say, I only have to make sure I keep this compatiable with paypals SDK, not thier underlying protocol changes.

This document assumes you have an understanding of the java SDK and API provided by PayPal.

All methods take a single hashref as an argument. All methods return a hashref, or undef if there is an internal failure of some sort. Check $ret->{ack} to see if the call to PayPal was successful. If $ret->{ack} is not Success than you can check the $res->{ErrorCodes}, this will be an hashref with the key being the error code from paypal and the value is the getLongMessage from the error. Check $obj->error for description of failure.

<<less
Download (0.009MB)
Added: 2007-06-07 License: Perl Artistic License Price:
871 downloads
Classeine::Sdk 0.0.3.0-b0004

Classeine::Sdk 0.0.3.0-b0004


Classeine::Sdk project is a set of general purpose class libraries written in C++ for NetBSD. more>>
Classeine::Sdk project is a set of general purpose class libraries written in C++ for NetBSD.
Main features:
- Object oriented class hierarchy
- Memory allocation isolation
- Basic smart pointers
Classeine::Sdk runs into the following architectures:
- NetBSD/amd64 4.0 beta 2
- NetBSD/x86 4.0 beta 2
Enhancements:
- This version was reimplemented from the scratch.
- It currently supports IBase, IInterface, and Object base classes, Ptr< T > and AutoPtr< T >, and memory allocation isolation.
<<less
Download (0.050MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
846 downloads
OLPC Live CD SDK Build 385

OLPC Live CD SDK Build 385


OLPC Live CD SDK is a Linux distribution created by Red Hat and based on Fedora Core for the One Laptop Per Child. more>> <<less
Download (314MB)
Added: 2007-04-17 License: GPL (GNU General Public License) Price:
925 downloads
AltaVista::SearchSDK 0.99b

AltaVista::SearchSDK 0.99b


AltaVista::SearchSDK is a Perl extension for AltaVista Search Software Development Kit. more>>
AltaVista::SearchSDK is a Perl extension for AltaVista Search Software Development Kit.

SYNOPSIS

use AltaVista::SearchSDK;
avs_adddate(idx, yr, mo, da, startloc)
avs_addfield(idx, pFname, startloc, endloc)
avs_addliteral(idx, pWord, loc)
avs_addvalue(idx, valtype, value, loc)
avs_addword(idx, pWords, loc, pNumWords)
avs_buildmode(idx)
avs_buildmode_ex(idx, ntiers)
avs_close(idx)
avs_compact(idx, bMore_p)
avs_compactionneeded(idx)
avs_compact_minor(idx, bMore_p)
avs_count(idx, pWordPrefix, pCountsHdl)
avs_count_close(CountsHdl)
avs_count_getcount(CountsHdl)
avs_countnext(CountsHdl)
avs_count_getword(CountsHdl)
avs_default_options(pOptions)
avs_define_valtype(name, minval, maxval, valtype_p)
avs_deletedocid(idx, pDocId, pCount)
avs_enddoc(idx)
avs_errmsg(code)
avs_getindexmode(idx)
avs_getindexversion(idx)
avs_getindexversion_counts_v(countsHdl)
avs_getindexversion_search_v(searchHdl)
avs_getsearchresults(searchHdl, resultNum)
avs_getsearchterms(psearchHdl, termNum, term, count)
avs_lookup_valtype(name)
avs_makestable(idx)
avs_open(path, mode, pIdx)
avs_querymode(idx)
avs_release_valtypes()
avs_search(idx, pQuery, pBoolQuery, pOptions, pDocsFound, pDocsReturned, pTermCount, pSearchHdl)
avs_search_close(pSearchHdl)
avs_search_ex(idx, pQuery, pBoolQuery, pOptions, searchsince, pDocsFound, pDocsReturned, pTermCount, pSearchHdl)
avs_search_genrank(idx, pBoolQuery, pRankTerms, pRankSetup, pOptions, searchsince, pDocsFound, pDocsReturned, pSearchHdl)
avs_search_getdata(searchHdl)
avs_search_getdatalen(searchHdl)
avs_search_getdate(psearchHdl, year, month, day)
avs_search_getdocid(searchHdl)
avs_search_getdocidlen(searchHdl)
avs_search_getrelevance(psearchHdl)
avs_setdocdata(idx, pDocData, len)
avs_setdocdate(idx, year, month, day)
avs_setdocdatetime(idx, year, month, day, hour, minute, second)
avs_setparseflags(idx, parseflags)
avs_setrankval(idx, valtype, value)
avs_startdoc(idx, pDocId, flags, pStartLoc)
avs_timer(current)
avs_version()
avs_create_options(limit, timeout, flags)

This set of extensions provides wrappers for all the C functionality of the AltaVista Search software development kit (SDK) except for a few functions that did not make sense to export to perl.

All the functions of the 97 Rev B kit are available as advertised, except for the following:

avs_add_ms_callback UNIMPLEMENTED

It makes no sense to implement this function, since it would require being able to pass a C function handle through perl.

avs_addrankterms UNIMPLEMENTED

Internal function

avs_newdoc UNIMPLEMENTED

No easy way to provide filter function

avs_search_getdata_copy UNIMPLEMENTED

No need for this function

avs_search_getdocid_copy UNIMPLEMENTED

No need for this function

avs_search_getrelevance RETURN ARGUMENT

Relevance is returned as a string representation of the float

<<less
Download (0.008MB)
Added: 2007-01-09 License: Perl Artistic License Price:
1019 downloads
Portable SDK for UPnP Devices 1.4.1

Portable SDK for UPnP Devices 1.4.1


Portable SDK for UPnP Devices (libupnp) provides developers with an API and code for building control points, devices. more>>
Portable SDK for UPnP Devices in short libupnp provides developers with an API and code for building control points, devices, and bridges that are compliant with Version 1.0 of the Universal Plug and Play Device Architecture Specification.
This allows discovery, event notification, and control of devices on a network, independent of operating system, programming language, or physical network connection.
UPnP is an architecture that enables discovery, event notification, and control of devices on a network, independent of operating system, programming language, or physical network connection. UPnP is based on common Internet standards and specifications such as TCP/IP, HTTP, and XML.
Enhancements:
- Full support for the Windows and FreeBSD operating systems was added.
- Fixes were made for x86_64 architectures.
- Several memory leaks and possible reasons for crashes were fixed.
<<less
Download (0.73MB)
Added: 2006-07-17 License: BSD License Price:
1214 downloads
iODBC Driver Manager and SDK 3.52.5

iODBC Driver Manager and SDK 3.52.5


iODBC is a cross-platform Driver Manager that comforms to the Microsoft ODBC 2.x & 3.x and X/Open SQL CLI data access specs. more>>
iODBC is a cross-platform Driver Manager that comforms to the Microsoft ODBC 2.x & 3.x and X/Open SQL CLI data access specs.
iODBC Driver Manager and SDK enables the development of database-centric solutions that are both database and platform independent.
What is the ODBC Value Proposition?
The ability to develop applications independent of back-end database engine.
What is iODBC?
iODBC is the acronym for Independent Open DataBase Connectivity, an Open Source platform independent implementation of both the ODBC and X/Open specifications. It is rapidly emerging as the industry standard for developing solutions that are language, platform and database independent.
What is the iODBC Value Proposition?
The ability to develop applications independent of back-end database engine, operating system, and for the most part programming language. Although ODBC and iODBC are both C based Application Programming Interfaces (APIs) there are numerous cross language hooks and bridges from languages such as: C++, Java, Perl, Python, TCL etc.
iODBC has been ported to numerous platforms, including:
Linux (x86, Itanium, Alpha, Mips, and StrongArm), Solaris (Sparc & x86), AIX, HP-UX (PA-RISC & Itanium), Digital UNIX, Dynix, Generic UNIX 5.4, FreeBSD, MacOS 9, MacOS X, DG-UX, and OpenVMS.
This is a great SDK for porting WIN32-based ODBC applications to Linux and other OS platforms.
Enhancements:
- Added support for FileDSN
- Added support for Connection Pooling
- Added check for tracefile size
- Call ODBC 2.x functions in driver if application uses ODBC 2.x only calls
- Fixed problem parsing driver result in SQLSetStmtAttr
- Fixed source code readability
- Fixed bug in overwriting driver name
- Fixed check for /Library/ODBC for Mac OS X
- Fixed prototypes
- Rewrote bootstrap script and configure summary
- Use localtime_r in tracing when available
- Fixed build issues with Mac OS X
- Small code cleanups and fixes
<<less
Download (0.50MB)
Added: 2007-01-05 License: LGPL (GNU Lesser General Public License) Price:
609 downloads
Eureka Encryption SDK Shared Library 1.0

Eureka Encryption SDK Shared Library 1.0


Eureka Encryption SDK Shared Library allows you to use Eureka Encryption in your own applications. more>>
Eureka Encryption SDK Shared Library allows you to use Eureka Encryption in your own applications. Encrypt or decrypt strings or files.

Eureka Encryption shared Library installation instructions:

Start a terminal session and navigate to the folder where the files are located and enter the following commands:

chmod +x eursdk.so (this may be optional)

cp eursdk.so /usr/lib

ldconfig /usr/lib

The library is now ready for use. Load up the sdkhelp.htm file with any web browser for detailed information on its use.

Should anyone wish to translate the help files in other languages and send them to me, I would be happy to include them and repackage the tarball.
<<less
Download (0.12MB)
Added: 2007-05-10 License: Freeware Price:
898 downloads
Digital Product Management Library SDK 2.1.0

Digital Product Management Library SDK 2.1.0


Digital Product Management Library SDK is a management platform for Java-based component development. more>>
Digital Product Management Library SDK (DPML SDK) is a management platform for Java-based component development, resource management, and deployment.
The project is composed of the Transit resource management layer, the Depot multi-project build system, the Metro component management runtime engine, and the Station application management console.
Enhancements:
- Support was enhanced for the creation of composite components using URL resolvable parts (where a part is a building block defining a classloader chain, component, and deployment scenario).
<<less
Download (5.7MB)
Added: 2007-05-03 License: The Apache License 2.0 Price:
912 downloads
Lightscribe System Software and SDK 1.4.136.1

Lightscribe System Software and SDK 1.4.136.1


Lightscribe System Software and SDK provides libraries and a software development kit for Lightscribe Direct Disc Labeling. more>>
Lightscribe System Software and SDK provides libraries and a software development kit for Lightscribe Direct Disc Labeling of special writable DVD media.
Keep burning beautiful LightScribe discs by regularly updating your LightScribe System Software.
The LightScribe System Software is required for proper operation of your LightScribe system. Updates are released regularly to support new hardware or recently introduced LightScribe CDs and DVDs, and will ensure optimal and reliable operation of your LightScribe Labeling system.
Your LightScribe product manufacturer may have the best knowledge of your specific configuration and needs, and they are recommended as your first source of updates whenever possible.
This limited support universal version of the LightScribe System Software offered here has not been specifically tested by your hardware provider, and is provided as an alternative should you have problems with obtaining an update.
Enhancements:
- New drive and media support was added.
- Minor fixes were made.
<<less
Download (MB)
Added: 2007-01-23 License: Free To Use But Restricted Price:
599 downloads
JOpt.SDK Vehicle Routing Component 2.0.0 (Tutorial)

JOpt.SDK Vehicle Routing Component 2.0.0 (Tutorial)


JOpt.SDK library is a routing software for Java that uses specialized genetic algorithms. more>>
JOpt.SDK library is a routing software for Java that uses specialized genetic algorithms to calculate an optimized allocation of orders and stops to mobile resources.
The algorithm not only provides tours at minimum costs but also considers an arbitrary set of constraints for each tour. You may define your own constraints and optimization goals in order to customize JOpt.SDK to your specific planning needs or you decide to use one of our best practices addons in order to achieve a fast application of our optimization algorithms to selected industries.
JOpt.SDK can solve nearly any problem that can be classified by one of the following types:
TSP - Traveling Salesman Problem. JOpt.SDK finds the shortest or fastest path for your mobile resources
VRPTW - Vehicle routing problem with time windows - like TSP but for a set of vehicles. JOpt.SDK finds an optimal allocation of orders and stops within a vehicle fleet. It may also consider different constraints for vehicles, drivers and stops.
JOpt.SDK functionality can be accessed via Java API and thus fits seamlessly into any JAVA application. Software developers may integrate the JOpt.SDK component into their application in order to offer their customers a consistent solution including optimization of mobile workforce schedules.
Enhancements:
- The tutorial has been revised to reflect some major API changes introduced since JOpt 2.0.0.
<<less
Download (MB)
Added: 2007-05-08 License: Free For Educational Use Price:
903 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5