Main > Free Download Search >

Free 0.6 miles in km software for linux

0.6 miles in km

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 766
mplayerplug-in 3.45

mplayerplug-in 3.45


mplayerplug-in is a browser plugin that uses mplayer to play digital media from websites. more>>
mplayerplug-in is a browser plugin that uses mplayer to play digital media from websites.

This plug-in gives Mozilla the ability to play media from a website the net without reading the source html and getting the url manually.

Media is played embedded in the page or in a separate window depending on how the author of the webpage intended the media to be seen.

<<less
Download (0.47MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
822 downloads
vines 2.0

vines 2.0


vines is a small application which draws vines on your X or SunView screen. more>>
vines is a small application which draws vines on your X or SunView screen.
vines draws vines (wandering plants made up mostly of stems and leaves) on your X11 or SunView screen.
By default it draws in black and white, but color options (spring and fall) are provided.
The vines can grow across the top of your screen and down the side, down from the top of your screen until they reach the bottom, or start from the center and wander all over the screen forever.
Enhancements:
- added -z option (show version)
- added -F option (was described in README, but unimplemented!)
- added -x option (X11 synchronize)
- added -G option (growth rate)
- added -E option (edges, including bottom)
- added -P option (palette files, with samples in Vines/)
- beefed up -g option
- changed -h to -H for halt, added -h for help (like -?)
- revamped help
- various code cleanups
- various command line option and error message cleanups
- minor optimizations
- code now compiles cleanly (for X and linux, anyway)
- patched for ugly runtime bug on Dell/Linux 2.0.34/gcc 2.7.2
- added man page, CHANGES, MANIFEST, LEGALSTUFF
- added Imakefile, Makefile-noImake
- revamped README
- changed name to vines
- added sample leaf and stem template files (Sample.leaf, Sample.stem)
<<less
Download (0.032MB)
Added: 2006-09-29 License: Free To Use But Restricted Price:
1122 downloads
ElvinRRD 2.3

ElvinRRD 2.3


ElvinRRD is a tool to provide a mechanism for transporting data across a network and storing it in RRD databases. more>>
ElvinRRD is a tool to provide a mechanism for transporting data across a network and storing it in RRD databases.

ElvinRRD is written entirely in Python and works and requires both Elvin and RRDtool.

Any Elvin producer (client) can send data for ElvinRRD to store (e.g., EDDIE-Tool); and any RRD-aware software can process the resulting RRD databases (e.g., Cricket, Cacti).

<<less
Download (0.008MB)
Added: 2005-12-06 License: Freely Distributable Price:
1417 downloads
WWW::Mechanize::Examples 1.30

WWW::Mechanize::Examples 1.30


WWW::Mechanize::Examples is a Perl module with sample programs that use WWW::Mechanize. more>>

SYNOPSIS

Plenty of people have learned WWW::Mechanize, and now, you can too!
Following are user-supplied samples of WWW::Mechanize in action.

You can also look at the t/*.t files in the distribution.

Please note that these examples are not intended to do any specific task. For all I know, theyre no longer functional because the sites they hit have changed. Theyre here to give examples of how people have used WWW::Mechanize.

Note that the examples are in reverse order of my having received them, so the freshest examples are always at the top.

Starbucks Density Calculator, by Nat Torkington

Heres a pair of scripts from Nat Torkington, editor for OReilly Media and co-author of the Perl Cookbook.

Rael [Dornfest] discovered that you can easily find out how many Starbucks there are in an area by searching for "Starbucks". So I wrote a silly scraper for some old census data and came up with some Starbucks density figures. Theres no meaning to these numbers thanks to errors from using old census data coupled with false positives in Yahoo search (e.g., "Dodie Starbuck-Your Style Desgn" in Portland OR). But it was fun to waste a night on.

Here are the top twenty cities in descending order of population, with the amount of territory each Starbucks has. E.g., A New York NY Starbucks covers 1.7 square miles of ground.

New York, NY 1.7
Los Angeles, CA 1.2
Chicago, IL 1.0
Houston, TX 4.6
Philadelphia, PA 6.8
San Diego, CA 2.7
Detroit, MI 19.9
Dallas, TX 2.7
Phoenix, AZ 4.1
San Antonio, TX 12.3
San Jose, CA 1.1
Baltimore, MD 3.9
Indianapolis, IN 12.1
San Francisco, CA 0.5
Jacksonville, FL 39.9
Columbus, OH 7.3
Milwaukee, WI 5.1
Memphis, TN 15.1
Washington, DC 1.4
Boston, MA 0.5

<<less
Download (0.10MB)
Added: 2007-07-20 License: Perl Artistic License Price:
828 downloads
Math::FresnelZone 0.03

Math::FresnelZone 0.03


Math::FresnelZone is a Perl extension for calculating the Fresnel Zone Radius of a given distance and frequency. more>>


SYNOPSIS

use Math::FresnelZone;
use Math::FresnelZone qw(fresnel fresnelMi fresnelKm);

The arguments are:

0 - distance in kilometers or miles (default is 1),
1 - frequency in GHz (defualt 2.4),
2 - set to true to specify that the distance you are inputting is in miles and that the results should be in in feet (default is 0 - IE kilometers/meters)
fresnel()

my $fresnel_zone_radius_in_meters = fresnel(); # fresnel zone radius in meters for 1 kilometer at 2.4 GHz

my $fzr_in_meters = fresnel(5); # fresnel zone radius in meters for 5 kilometers at 2.4 GHz

my $fzr_in_meters = fresnel(5,4.8); # fresnel zone radius in meters for 5 kilometers at 4.8 GHz

my $fzr_in_feet = fresnel(3,9.6,1); # fresnel zone in feet for 3 miles at 9.6 GHz

If you are inputting Kilometers the result is in meters (these 3 calls have identical results):

fresnel($Km,$GHz);
fresnelKm($Km,$GHz); # see documentaion below for info about fresnelKm()
fresnel($Km,$GHz,0);

If you are inputting Miles (by specifying a true value as the 3rd argument) the result is in feet (these 2 calls have identical results)

fresnel($Mi,$GHz,1);
fresnelMi($Mi,$GHz); # see documentaion below for info about fresnelMi()

fresnelKm()

You can use this to make it easier to avoid ambiguity if are working in kilometers/meters. It takes the first two arguments only: distance in kilometers and frequency in GigaHertz

my $fzr_in_meters = fresnelKm($Km,$GHz);

fresnelMi()

You can use this to make it easier to avoid ambiguity if are working in miles/feet. It takes the first two arguments only: distance in miles and frequency in GigaHertz

my $fzr_in_feet = fresnelMi($Mi,$GHz);

<<less
Download (0.003MB)
Added: 2006-12-04 License: Perl Artistic License Price:
1056 downloads
FProfiler 0.6.4

FProfiler 0.6.4


FProfiler project is a Java profiler for finding hotspots in Java libs/apps. more>>
FProfiler project is a Java profiler for finding hotspots in Java libs/apps.
FProfiler is a Java Profiler using BCEL and log4j.
Its very fast because it inserts the needed instructions into the Bytecode of the classes. It can be used to find Hotspots in Java programs, libs, and servlet environments--simply every Java class.
Enhancements:
- Mark Atwell fixed a bug with are branch (jump/goto) instructions directly to the return statement bypassing the stop call.
<<less
Download (0.012MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
1085 downloads
JD4X 0.6

JD4X 0.6


JD4X is a Java desktop environment for Linux. more>>
JD4X project is a basic GUI Windowing Environment developed to support the Java Programming Language based on top of the X Window system. It was developed with the intention of providing a Java environment that allows Java programmers to build and extend a windowing system purely in Java. However, the project itself is not pure Java and uses a mixture of Java and C.

JD4X is targeted at the hobbyist programmers who desire to put their skills to the test by customizing a desktop of their own. To do this, the JD4X project sets out to provide a native structural foundation that gives them a greater degree of control over their desktop, JVMs and Java classes that runs on the Linux X Window system, thereby giving the Java programmer full control of their desktop environment.

The project also targets Java users who may desire a Java enabled and component based desktop without excluding other native applications already found on their Linux distribution. It does this by also providing a default windowing desktop to cater to the end users who can select a mixture of native and Java applications that they like on their desktop without having to differentiate between them and the way they are executed.

In general, JD4X aims to isolate the underlying platform system to the background and provide a fully Java GUI front end. JD4X is not about a Java only desktop. It is about empowering the Java user and programmer such that the Java desktop will meet their particular needs.

<<less
Download (17MB)
Added: 2006-02-01 License: GPL (GNU General Public License) Price:
1360 downloads
wput 0.6

wput 0.6


wput is the opposite of wget. more>>
Wput is the opposite of wget, capable of uploading files to FTP servers with an easy to use command line interface similar to wgets interface.
Main features:
- file/directory-upload in ascii or binary mode (auto determination)
- wget-like interface
- resuming
- proxy-support (socks5, http)
- speed-limit
- time-stamping (compares local and remote dates)
- windows-compatibility
Enhancements:
- fix for base64-routine which forgot to set the last character to
- making compilation for windows work (ssllib in dll, some modifications (sslib_in_use flag), strptime included, some fixes for *nix-header-files)
- added support for i18n (configure, gettext, setlocale etc.)
- messages have been prepared
- german translation is complete
<<less
Download (0.05MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1646 downloads
nuvoX 0.6

nuvoX 0.6


nuvoX theme is mainly based on three others themes: nuovola, nuoveXT, OS-L. more>>
nuvoX theme is mainly based on three others themes: nuovola, nuoveXT, OS-L, (some icons of other theme) and of course my own designs.
To install: (the builset version doesnt need be built; the builset is installable via KControl and it requires not being buildset execution).
TO INSTALL: First you just have to decompress the file nuvoX_0X.tar.gz, then, enter to the folder and to execute it in the console ./buildset (please wait to icons be compressed). This creates a file named nuvox_0X.tar.bz2 (This is the completed theme) that you can install it in the module of kcontrol.
Enhancements:
- (great improvement) added and changed many icons with my design (and others).
- change of policy mounted/unmounted device.
- packaging in .deb for Kubuntu, Debian,...
<<less
Download (9.3MB)
Added: 2007-02-03 License: GPL (GNU General Public License) Price:
993 downloads
zwl 0.0.6

zwl 0.0.6


zwl is the zeta widget library. more>>
Zeta Desktop Environment (ZDE) is an X11 window manager and tools with enhanced usability and features for developers and advanced users.

Some of its current sub-projects include imp, a library of core functions such as linked lists, zwl, a simple widget toolkit and light X11 wrapper, and zimwm, the window manager.

You will need the latest version of imp from svn to compile zwl. Be aware that this is alpha-quality code, and completely unpolished. It has rough, pointy edges, and should be approached with caution and an open mind.

zwl is the zeta widget library. It is designed to be simple, yet at the same time look good and have a nice feel. It is not designed to be a general-purpose application toolkit like GTK+, Qt, or EWL.

It will be used in zimwm for menus, frames, buttons and the like. It will also have selectable rendering outputs for displaying images, such as Xlib or Imlib2. It will have some more special-purpose widgets, such as sliders and the like, for extensions to zimwm, but nothing fancy. It might also have a place in small programs that only need a limited subset of general-purpose widgets and dont mind many constraints.

src/ Contains the zwl source code.
tests/ Contains a test program.
doc/ Contains documentation. Use gendoc to generate it from the source code. You will need doxygen for this.

<<less
Download (0.34MB)
Added: 2006-04-20 License: LGPL (GNU Lesser General Public License) Price:
1284 downloads
fbxkb 0.6

fbxkb 0.6


fbxkb is a keyboard indicator and switcher. more>>
fbxkb is keyboard indicator and switcher. It shows a flag of current keyboard in a systray area and allows you to switch to another one. It is NETWM compliant.
The project is written in C and uses the GTK+-2.4 library only (no GNOME is needed).
Enhancements:
- The border was removed to look better on transparent backgrounds.
- This release supports configurations with no keyboards defined.
- The code has been cleaned up.
<<less
Download (0.040MB)
Added: 2006-12-23 License: GPL (GNU General Public License) Price:
1040 downloads
3dFB 0.6.1

3dFB 0.6.1


3dFB is a 3D file manager and browser. more>>
3dFB is a 3d File Manager / Browser. It was started in 2004 by Roy El-Rayes.
The aim of this project is to make a viable, workable, 3d file manager that is not a hog on resources and can actually be usable.
Main features:
- Mouse Movement
- Level Zoom
- Ability to show different types of information about a file by pressing tab
- Fog
- 2 Different Views
- Copy / Move / Delete File
- Fullscreen support
The current set of keys are as follows:
- w : activates mouse-move
- q : zooms to end of level
- a : zooms to middle of level
- z : zooms to front of level
- tab/ctrl-tab : switches between different information for each file
- g : turns fog on/off
- v : switches views between normal and top-down
- page-up, page-down : changes our current level
- left, right, up, down : changes your location in the 3d world
- c : copy a file
- m : move a file
- d : delete a file
- f : fullscreen
- escape : exit
- n : show names on current level
- o : show all names
<<less
Download (0.10MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1639 downloads
GEX 0.6.11

GEX 0.6.11


GEX is just another desktop environment. more>>
GEX is just another desktop environment. Definitely nothing special. But it has one feature that no other desktop environment could provide: GEX is mine and gets all the features that I need and nothing else.
Another reason for this little desktop environment is my endeavor to create an Mbus profile for desktop environments and applications. It should provide at least the following features:
- a dynamic configuration mechanism for applications
- a remote control mechanism
- a event mechanism for service daemons
Configuration:
The configuration of GEXs first generation is completly stored in one single INI like file. This file may be located at several different places in your home directory:
~/.gex
~/gexrc
~/etc/.gex
~/etc/gexrc
~/usr/etc/.gex
~/usr/etc/gexrc
Each of the core components of the GEX desktop environment has its own configuration group in this file. The available keys, their possible values and a description can be found in the follow sections.
Enhancements:
- More support for multiple screens was added.
- gex-desktop draws the configured background configuration on all available screens and gex-panel can provide several panels on any available screens.
- A few bugs were fixed; for example, the detection of screen resizes should work much better now.
<<less
Download (0.25MB)
Added: 2007-05-06 License: GPL (GNU General Public License) Price:
1620 downloads
Mapagi 0.6

Mapagi 0.6


Mapagi a pagination utility that prints your images/comics in in folio format. more>>
Mapagi project a pagination utility that prints your images/comics in in folio format.

Mapagi is a pagination utility that prints your images/comics in in folio format.

To produce a book printed in folio format, the sheet of paper is folded once, producing 2 leaves.

Each leaf has 2 sides, the recto (front) and the verso (back).

Page size format is "Tankobon", probably well known to anime/manga fans.

<<less
Download (0.019MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1123 downloads
WmWiFi 0.6

WmWiFi 0.6


WmWiFi is a wireless network interface monitor dockapp for the WindowMaker desktop. more>>
WmWiFi is a wireless network interface monitor dockapp for the WindowMaker desktop which dislays the signal strength of a wireless card.

WmWiFi is designed to fit well with dockapps like wmnetload and wmcpuload.

<<less
Download (0.020MB)
Added: 2006-03-22 License: GPL (GNU General Public License) Price:
775 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5