Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.412.747 Times

Ipaq Bluetooth Gps Unit freeware
Filter: All | Freeware | Demo
 

Ipaq Bluetooth Gps Unit

1 2 3 4 5 > 
Released: June 06, 2012  |  Added: June 06, 2012 | Visits: 394

Geotag Geotag is an easy to use application that allows you to match date / time information from photos with location information from a GPS unit or from a map. The external maps might be necessary in order to perform fine-tune locations. for WindowsAll



Platforms: Windows

License: Freeware Download (422): Geotag Download

Released: December 15, 2012  |  Added: December 15, 2012 | Visits: 526

MATCH - Mobile Action Tracking Companion MATCH is an application for J2ME / JavaME enabled devices which allows tracking (recording of tracks) and route-navigation with your mobile phone and a NMEA-compliant Bluetooth GPS-Receiver when jogging or biking.





Platforms: Windows, Mac, Linux

License: Freeware Size: 75.09 KB Download (45): MATCH - Mobile Action Tracking Companion Download

Released: November 27, 2012  |  Added: November 27, 2012 | Visits: 222

OpenNMEA OpenNMEA is an open-source Java library for parsing NMEA sentence strings from GPS units into a more useful format, to facilitate interaction between your application and a GPS unit.


Platforms: Windows, Mac, Linux

License: Freeware Size: 180.16 KB Download (44): OpenNMEA Download

Added: August 19, 2010 | Visits: 1.225

GPS::Babel GPS::Babel is a Perl interface to gpsbabel. SYNOPSIS use GPS::Babel; my $babel = GPS::Babel->new(); # Read an OZIExplorer file into a data structure my $data = $babel->read(route.ozi, ozi); # Convert a file automatically choosing input and output # format based on extension...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (121): GPS::Babel Download

Added: January 25, 2010 | Visits: 660

GPSPhotoLinker GPSPhotoLinker can be used to save GPS position data to a photo. The latitude and longitude recorded by your GPS unit while you were taking photos can be linked, and saved, to the photos.


Platforms: Mac

License: Freeware Download (126): GPSPhotoLinker Download

Released: June 15, 2012  |  Added: June 15, 2012 | Visits: 391

TinyGPX Application for geocaching or waymarking that allows you to import GPX or LOC files for editing. You can print out cheat sheets to take on the trail, export to KML or HTML, and send the data to your handheld GPS unit.


Platforms: Windows, Mac, Linux

License: Freeware Size: 19.78 MB Download (52): TinyGPX Download

Released: October 10, 2012  |  Added: October 10, 2012 | Visits: 928

WIDCOMM Bluetooth WIDCOMM BLUETOOTH 6.1 is a free software that allows us communication between our computer and others bluetooth devices. In order to do that we need to have a computer either with a USB plugin Bluetooth wireless adapter or a Broadcom enabled embedded. WIDCOMM BLUETOOTH 6.1 is supported by Windows...


Platforms: Windows

License: Freeware Download (479): WIDCOMM Bluetooth Download

Released: December 09, 2005  |  Added: January 22, 2007 | Visits: 8.642

Unit Converter Software Data Doctor Length Area Unit Converter Calculator converts unit of length and area in other available units and computes prices of buying, selling and purchasing property. Software provides accurate, precise and exact cost of properties of any preferred unit. Utility transforms the unit of length...


Platforms: Windows

License: Freeware Size: 757 KB Download (1070): Unit Converter Software Download

Added: October 19, 2010 | Visits: 1.559

Test::Unit::Runner::XML Test::Unit::Runner::XML is a Perl module that can generate XML reports from unit test results. SYNOPSIS use Test::Unit::Runner::XML; mkdir("test_reports"); my $runner = Test::Unit::Runner::XML->new("test-reports"); $runner->start($test); exit(!$runner->all_tests_passed());...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (111): Test::Unit::Runner::XML Download

Added: July 23, 2010 | Visits: 1.379

p-unit p-unit is a framework for benchmarking performance. The project records memory consumption and execution time, and generates results in the form of plain text, image, and PDF file. Users can also easily register their own reporters by implementing PUnitEventList. Test Suite and Test Class...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (94): p-unit Download

Added: April 20, 2010 | Visits: 1.131

Test::Unit::tests::AllTests Test::Unit::tests::AllTests is a unit testing framework self tests. SYNOPSIS # command line style use perl TestRunner.pl Test::Unit::tests::AllTests # GUI style use perl TkTestRunner.pl Test::Unit::tests::AllTests This class is used by the unit testing framework to encapsulate all the...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (92): Test::Unit::tests::AllTests Download

Added: June 07, 2010 | Visits: 2.106

Test::Unit::Tutorial Test::Unit::Tutorial is a Perl module that contains a tutorial on unit testing. SYNOPSIS perldoc Test::Unit::Tutorial Here should be extensive documentation on what unit testing is, why it is useful, and how to do it with the Test::Unit collection of modules. Sorry for not implementing...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (243): Test::Unit::Tutorial Download

Added: September 09, 2010 | Visits: 1.162

Test::Unit::TestSuite Test::Unit::TestSuite is a unit testing framework base class. SYNOPSIS use Test::Unit::TestSuite; # more code here ... sub suite { my $class = shift; # create an empty suite my $suite = Test::Unit::TestSuite->empty_new("A Test Suite"); # get and add an existing suite...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (152): Test::Unit::TestSuite Download

Added: January 13, 2010 | Visits: 1.093

Test::Unit::TestRunner Test::Unit::TestRunner is a unit testing framework helper class. SYNOPSIS use Test::Unit::TestRunner; my $testrunner = Test::Unit::TestRunner->new(); $testrunner->start($my_testcase_class); This class is the test runner for the command line style use of the testing framework. It is...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (93): Test::Unit::TestRunner Download

Added: February 07, 2010 | Visits: 1.079

Test::Unit::TestCase Test::Unit::TestCase is a unit testing framework base class. SYNOPSIS package FooBar; use base qw(Test::Unit::TestCase); sub new { my $self = shift()->SUPER::new(@_); # your state for fixture here return $self; } sub set_up { # provide fixture } sub tear_down { # clean up after...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (94): Test::Unit::TestCase Download

Added: September 07, 2010 | Visits: 1.209

Test::Unit::Runner::Terminal Test::Unit::Runner::Terminal is a unit testing framework helper class. SYNOPSIS use Test::Unit::Runner::Terminal; my $testrunner = Test::Unit::Runner::Terminal->new(); $testrunner->start($my_test_class); This class is a test runner for the command line style use of the testing framework....


Platforms: *nix

License: Freeware Size: 75.78 KB Download (100): Test::Unit::Runner::Terminal Download

Added: May 23, 2010 | Visits: 813

Test::Unit::Procedural Test::Unit::Procedural Perl module contains a procedural style unit testing interface. SYNOPSIS use Test::Unit::Procedural; # your code to be tested goes here sub foo { return 23 }; sub bar { return 42 }; # define tests sub test_foo { assert(foo() == 23, "Your message here"); } sub...


Platforms: *nix

License: Freeware Size: 75.78 KB Download (95): Test::Unit::Procedural Download

Added: November 10, 2010 | Visits: 835

Test::Unit::InnerClass Test::Unit::InnerClass is a unit testing framework helper class. SYNOPSIS This class is not intended to be used directly This class is used by the framework to emulate the anonymous inner classes feature of Java. It is much easier to port Java to Perl using this class..


Platforms: *nix

License: Freeware Size: 45.06 KB Download (97): Test::Unit::InnerClass Download

Added: January 07, 2010 | Visits: 5.624

GNOME Bluetooth GNOME Bluetooth are tools for controlling and communicating with Bluetooth devices. GNOME Bluetooth includes a GNOME platform library and associated tools for interfacing with and managing Bluetooth devices. Includes OBEX file transfer utilities and a prototype device manager. GNOME Bluetooth...


Platforms: *nix

License: Freeware Size: 1024 KB Download (2794): GNOME Bluetooth Download

Added: January 08, 2010 | Visits: 920

Test::Unit::GTestRunner Test::Unit::GTestRunner is a Unit testing framework helper class SYNOPSIS use Test::Unit::GTestRunner; Test::Unit::GTestRunner->new->start ($my_testcase_class); Test::Unit::GTestRunner::main ($my_testcase_class); If you just want to run a unit test (suite), try it like this:...


Platforms: *nix

License: Freeware Size: 63.49 KB Download (89): Test::Unit::GTestRunner Download

1 2 3 4 5 >