1.00 cm is equal to how many meters
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 481
MDKS Vertical Meters
MDKS Vertical Meters is a system monitor. more>>
MDKS Vertical Meters is a Super Karamba theme taken from http://www.kde-look.org/content/show.php?content=40009 by kilrae, added 2 more bars and makes some visual changes! MDKS Vertical Meters is a system monitor.
Tnx kilrae for this good idea, I like it!
<<lessTnx kilrae for this good idea, I like it!
Download (0.037MB)
Added: 2006-06-19 License: BSD License Price:
1223 downloads
PulseAudio Volume Meter 0.9.2
PulseAudio Volume Meter is a simple GTK volume meter for the polypaudio sound server. more>>
PulseAudio Volume Meter is a simple GTK volume meter for the polypaudio sound server.
<<less Download (0.085MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1205 downloads
IP Traffic Meter 0.1
IP Traffic Meter is a traffic counter for IPv4 addresses. more>>
IP Traffic Meter is a traffic counter for IPv4 addresses. It uses the DB4 database from Berkeley to keep its counters, the pcap library for monitoring, and the gd library from Boutel to create graphics. The results are displayed in JPEG graphics on an HTML webpage.
Enhancements:
- With ipmeter you can monitor the traffic made by some IPs. It produces daily, weekly, monthly and yearly statistics into jpg graphics. It uses db4 database from Berkeley to keep its internal counters, and gd library from Boutell to create jpg graphic.
<<lessEnhancements:
- With ipmeter you can monitor the traffic made by some IPs. It produces daily, weekly, monthly and yearly statistics into jpg graphics. It uses db4 database from Berkeley to keep its internal counters, and gd library from Boutell to create jpg graphic.
Download (0.068MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1219 downloads
cm Compilation Manager 0.5.1
cm Compilation Manager is a new tool for build automation and compilation management. more>>
cm Compilation Manager is a new tool for build automation and compilation management. cm Compilation Manager addresses a number of shortcomings I see in make.
Main features:
- A clean syntax based on a context-free language description
- Whitespace insensitivity
- Distinct macros and variables
- Separate procedure and production namespaces
- Many native programming constructs such as foreach loops for easy iteration, and more powerful tools such as anonymous functions with static scoping.
- Built-in support for recursive directory handling without additional invocations of cm.
- An intelligent, automatic configuration file generator
- Pre-generated functions for handling common build tasks in a platform-independent manner
- Support for multiple build configurations and multi-pass builds over complicated directory hierarchies
Installation instructions:
Download cm, classib, and gc.
Install the garbage collector per the included instructions. (Basically ./configure; make; sudo make install.) When running configure, you will need to pass it the parameters: --prefix=/usr/lib --with-threads=posix.
Unzip classlib (tar vzxf classlib.tar.gz).
Configure classlibs Makefile with any paths you need to modify.
Build and install classlib with make && sudo make install.
Unzip cm (tar vzxf cm.tar.gz).
Build and install cm with make && sudo make install.
Configure cm by executing: cd /usr/local/etc && sudo cminit
To verify your cm installation, you can rebuild it with the included Cmrules files by typing cm @clean && cm -m opt in the same directory you built cm in with make.
Enhancements:
- The license was changed to the GPL.
- This release includes a dynamic module/plugin system and two initial plugin modules.
- It supports non-root installation, additional command line options, and caches parsed files for quick retrieval during multi-pass builds.
- Several bugfixes are also included.
<<lessMain features:
- A clean syntax based on a context-free language description
- Whitespace insensitivity
- Distinct macros and variables
- Separate procedure and production namespaces
- Many native programming constructs such as foreach loops for easy iteration, and more powerful tools such as anonymous functions with static scoping.
- Built-in support for recursive directory handling without additional invocations of cm.
- An intelligent, automatic configuration file generator
- Pre-generated functions for handling common build tasks in a platform-independent manner
- Support for multiple build configurations and multi-pass builds over complicated directory hierarchies
Installation instructions:
Download cm, classib, and gc.
Install the garbage collector per the included instructions. (Basically ./configure; make; sudo make install.) When running configure, you will need to pass it the parameters: --prefix=/usr/lib --with-threads=posix.
Unzip classlib (tar vzxf classlib.tar.gz).
Configure classlibs Makefile with any paths you need to modify.
Build and install classlib with make && sudo make install.
Unzip cm (tar vzxf cm.tar.gz).
Build and install cm with make && sudo make install.
Configure cm by executing: cd /usr/local/etc && sudo cminit
To verify your cm installation, you can rebuild it with the included Cmrules files by typing cm @clean && cm -m opt in the same directory you built cm in with make.
Enhancements:
- The license was changed to the GPL.
- This release includes a dynamic module/plugin system and two initial plugin modules.
- It supports non-root installation, additional command line options, and caches parsed files for quick retrieval during multi-pass builds.
- Several bugfixes are also included.
Download (0.095MB)
Added: 2006-07-07 License: BSD License Price:
1204 downloads
Overtime Meter 0.3
Overtime Meter is a small program which stays in your desktops system tray and counts the minutes you spend at work. more>>
Overtime Meter project is a small program which resides in your desktops system tray and tracks the minutes you spend at work.
Then by the end of the month you can tell your boss exactly how much extra money he should pay you.
<<lessThen by the end of the month you can tell your boss exactly how much extra money he should pay you.
Download (0.012MB)
Added: 2006-01-04 License: GPL (GNU General Public License) Price:
1396 downloads
Class::Meta::Express 0.04
Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes. more>>
Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes.
Synopsis
package My::Contact;
use Class::Meta::Express;
class {
meta contact => ( default_type => string );
has name;
has contact => ( required => 1 );
}
This module provides an interface to concisely yet expressively create classes with Class::Meta. Although I am of course fond of Class::Meta, Ive never been overly thrilled with its interface for creating classes:
package My::Thingy;
use Class::Meta;
BEGIN {
# Create a Class::Meta object for this class.
my $cm = Class::Meta->new( key => thingy );
# Add a constructor.
$cm->add_constructor( name => new );
# Add a couple of attributes with generated accessors.
$cm->add_attribute(
name => id,
is => integer,
required => 1,
);
$cm->add_attribute(
name => name,
is => string,
required => 1,
);
$cm->add_attribute(
name => age,
is => integer,
);
# Add a custom method.
$cm->add_method(
name => chk_pass,
code => sub { return code },
);
$cm->build;
}
This example is relatively simple; it can get a lot more verbose. But even still, all of the method calls were annoying. I mean, whoever thought of using an object oriented interface for declaring a class? (Oh yeah: I did.) I wasnt alone in wanting a more declarative interface; Curtis Poe, with my blessing, created Class::Meta::Declare, which would use this syntax to create the same class:
package My::Thingy;
use Class::Meta::Declare :all;
Class::Meta::Declare->new(
# Create a Class::Meta object for this class.
meta => [
key => thingy,
],
# Add a constructor.
constructors => [
new => { }
],
# Add a couple of attributes with generated accessors.
attributes => [
id => {
type => $TYPE_INTEGER,
required => 1,
},
name => {
required => 1,
type => $TYPE_STRING,
},
age => { type => $TYPE_INTEGER, },
],
# Add a custom method.
methods => [
chk_pass => {
code => sub { return code },
}
]
);
This approach has the advantage of being a bit more concise, and it is declarative, but I find all of the indentation levels annoying; its hard for me to figure out where I am, especially if I have to define a lot of attributes. And finally, everything is a string with this syntax, except for those ugly read-only scalars such as $TYPE_INTEGER. So I cant easily tell where one attribute ends and the next one starts. Bleh.
<<lessSynopsis
package My::Contact;
use Class::Meta::Express;
class {
meta contact => ( default_type => string );
has name;
has contact => ( required => 1 );
}
This module provides an interface to concisely yet expressively create classes with Class::Meta. Although I am of course fond of Class::Meta, Ive never been overly thrilled with its interface for creating classes:
package My::Thingy;
use Class::Meta;
BEGIN {
# Create a Class::Meta object for this class.
my $cm = Class::Meta->new( key => thingy );
# Add a constructor.
$cm->add_constructor( name => new );
# Add a couple of attributes with generated accessors.
$cm->add_attribute(
name => id,
is => integer,
required => 1,
);
$cm->add_attribute(
name => name,
is => string,
required => 1,
);
$cm->add_attribute(
name => age,
is => integer,
);
# Add a custom method.
$cm->add_method(
name => chk_pass,
code => sub { return code },
);
$cm->build;
}
This example is relatively simple; it can get a lot more verbose. But even still, all of the method calls were annoying. I mean, whoever thought of using an object oriented interface for declaring a class? (Oh yeah: I did.) I wasnt alone in wanting a more declarative interface; Curtis Poe, with my blessing, created Class::Meta::Declare, which would use this syntax to create the same class:
package My::Thingy;
use Class::Meta::Declare :all;
Class::Meta::Declare->new(
# Create a Class::Meta object for this class.
meta => [
key => thingy,
],
# Add a constructor.
constructors => [
new => { }
],
# Add a couple of attributes with generated accessors.
attributes => [
id => {
type => $TYPE_INTEGER,
required => 1,
},
name => {
required => 1,
type => $TYPE_STRING,
},
age => { type => $TYPE_INTEGER, },
],
# Add a custom method.
methods => [
chk_pass => {
code => sub { return code },
}
]
);
This approach has the advantage of being a bit more concise, and it is declarative, but I find all of the indentation levels annoying; its hard for me to figure out where I am, especially if I have to define a lot of attributes. And finally, everything is a string with this syntax, except for those ugly read-only scalars such as $TYPE_INTEGER. So I cant easily tell where one attribute ends and the next one starts. Bleh.
Download (0.009MB)
Added: 2006-10-19 License: Perl Artistic License Price:
1105 downloads
Alsa-Nyser 0.9
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. more>>
Alsa-Nyser is an Real Time Audio Analyser that displays several informations about sound. These informations are:
Signals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
<<lessSignals of the chanels
Phase of sound in 1D and 2D representation
Spectrum in full band
Spectrum in 1/3 octavia displaying frequency in Stereo or Mono reducted sound
Frequency of the peak signal (2 peaks frequency in stereo mode)
Stereo Meters
For the moment, each of the specifications described can be displayed by the program in real time. But I have to work (and compare) on the reality of what is displayed (calculated) by the soft considering the theory of sound analysis. There is still work on the frequency analyser and real meters level displaying (peak and mean levels).
Download (0.057MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1180 downloads
JACK Meter 0.3
Jack Meter is a basic console based DPM (Digital Peak Meter) for JACK. more>>
Jack Meter is a basic console based DPM (Digital Peak Meter) for JACK. I wrote it for quickly checking remote signal levels, without having to run X11 to use a pretty graphical meter such as meterbridge.
Usage
Usage jack_meter [-f freqency] [-r ref-level] [-w width] [-n] [< port >, ...]
where -f is how often to update the meter per second (8)
-r is the reference signal level for 0dB on the meter
-w is how wide to make the meter (79)
-n changes mode to output meter level as number in decibels
< port > the ports to monitor (multiple ports are mixed)
Enhancements:
- uses new JACK API (and hence requires JACK version 0.100.0)
- connects multiple ports on the command line
- informational messages are new sent to STDERR
- added -n option to output level as number in decibels
<<lessUsage
Usage jack_meter [-f freqency] [-r ref-level] [-w width] [-n] [< port >, ...]
where -f is how often to update the meter per second (8)
-r is the reference signal level for 0dB on the meter
-w is how wide to make the meter (79)
-n changes mode to output meter level as number in decibels
< port > the ports to monitor (multiple ports are mixed)
Enhancements:
- uses new JACK API (and hence requires JACK version 0.100.0)
- connects multiple ports on the command line
- informational messages are new sent to STDERR
- added -n option to output level as number in decibels
Download (0.14MB)
Added: 2005-09-16 License: GPL (GNU General Public License) Price:
1505 downloads
List::Intersperse 1.00
List::Intersperse Perl module can intersperse / unsort / disperse a list. more>>
List::Intersperse Perl module can intersperse / unsort / disperse a list.
SYNOPSIS
use List::Intersperse qw/intersperseq/;
@ispersed = intersperseq {substr($_[0],0,1)} qw/A1 A2 B1 B2 C1 C2/;
@ispersed = List::Intersperse::intersperse qw/A A B B B B B B C/;
intersperse and intersperseq evenly distribute elements of a list. Elements that are considered equal are spaced as far apart from each other as possible.
FUNCTIONS
intersperse LIST
This function returns a list of elements interspersed so that equivalent items are evenly distributed throughout the list.
intersperseq BLOCK LIST
intersperseq works like intersperse but it applies BLOCK to the elements of LIST to determine the equivalance key.
<<lessSYNOPSIS
use List::Intersperse qw/intersperseq/;
@ispersed = intersperseq {substr($_[0],0,1)} qw/A1 A2 B1 B2 C1 C2/;
@ispersed = List::Intersperse::intersperse qw/A A B B B B B B C/;
intersperse and intersperseq evenly distribute elements of a list. Elements that are considered equal are spaced as far apart from each other as possible.
FUNCTIONS
intersperse LIST
This function returns a list of elements interspersed so that equivalent items are evenly distributed throughout the list.
intersperseq BLOCK LIST
intersperseq works like intersperse but it applies BLOCK to the elements of LIST to determine the equivalance key.
Download (0.002MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
conntrack 1.00 Beta1
conntrack is a userspace command line program targeted at system administrators. more>>
conntrack is a userspace command line program targeted at system administrators. conntrack program enables them to view and manage the in-kernel connection tracking state table.
Main features:
- listing the contents of the conntrack table
- searching for individual entries in the conntrack table
- adding new entries to the conntrack table
- listing entries in the expect table
- adding new entries to the expect table
<<lessMain features:
- listing the contents of the conntrack table
- searching for individual entries in the conntrack table
- adding new entries to the conntrack table
- listing entries in the expect table
- adding new entries to the expect table
Download (0.21MB)
Added: 2006-02-09 License: GPL (GNU General Public License) Price:
1359 downloads
Bulk Meter Flow and Operations 1.2.5
Bulk Meter Flow and Operations project provides a Web-based application to manage water meter readings. more>>
Bulk Meter Flow and Operations provides a Web-based application to manage water meter readings.
<<less Download (1.4MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
823 downloads
Equalize 1.00
Equalize plug-in does a histogram equalization of the image. more>>
Equalize plug-in does a histogram equalization of the image.
That is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
<<lessThat is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
Download (0.006MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1130 downloads
Objective Modula-2 1.00 (Language Definition)
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2. more>>
Objective Modula-2 programming language is a hybrid between Smalltalk and Modula-2 based on the object model and runtime of Objective-C.
The design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
The projects scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
<<lessThe design is an example how native Cocoa/GNUstep support can be added to static imperative programming languages without implementing a bridge.
The projects scope encompasses the design of the Objective Modula-2 programming language and the implementation of a compiler to implement it. The initial compiler will generate Objective-C source code.
Download (0.23MB)
Added: 2007-07-21 License: (FDL) GNU Free Documentation License Price:
516 downloads
Other version of Objective Modula-2
License:(FDL) GNU Free Documentation License
JACK Meterbridge 0.9.2
JACK Meterbridge is a meterbridge for the UNIX based JACK audio system. more>>
JACK Meterbridge is a meterbridge for the UNIX based JACK audio system.
It supports a number of different types of meter, rendered using the SDL library and user-editable pixmaps.
Supported meters
PPM - Peak Program level Meters
Approximatly conforming to BS 6840-10. These meters are designed to indicate peak amplitude, as opposed to VU meters which are designed to indicate volume.
The scale is correct according to the standard, 4 equates to 0dB, 1 to -12, 7 to +12, and it is linear with decibels.
Ive never used a real PPM meter, so I dont know if it reacts correctly. Feedback welcome.
VU - Volume Unit meters
Conforming to BS 6840-17:1991. Real meter is larger.
These meters are designed to measure the "volume" of an audio signal, it is not as relevant to digital systems as PPM meters, but is useful if you are interfacing to analogue tape, FM broadcast equipment or want a general idea of the signal volume.
The -r flag (set reference level) is usful with these meters as it will allow you to calibrate to your DA converters. The meter is pre-adjusted so that it should allign correctly calibrated DA converters with analogue systems. If you wish to run with 0dBFS = 0dBu then use "-r 20"
DPM - Digital Peak Meter
Conforming to IEC 268-18:1995 (peak indiciator decay may not be correct).
These are meters as typically seen on digital consoles, HD recorders etc.
There are the most efficient in screen realestate and CPU use but look a bit boring.
JF - "Jellyfish" Meter (aka. Goniometer)
A jellyfish meter is a stereo scope display, it can be used to spot phase and mono compatibility problems.
Some charateristic problems can be seen, eg. a signal with a stronger left channel is seen as a shape sloping to the left [], more right slopes to the right [/], and dead mono is a vertical line [|].
The meter below the scope display indicates the degree of stereo correlation between the channels, a value of +1 means that it is perfectly mono compatible, and -1 and that the channels are in anti-phase (so they will cancel out if mixed).
If someone has better examples, please mail them to me, there are probably tutorials online.
SCO - Scope
A rendering of an oscilloscope display.
It has a basic trigger function, but there is no timebase control. It renders one pixel per sample, so it will probably be next to useless at 96KHz
<<lessIt supports a number of different types of meter, rendered using the SDL library and user-editable pixmaps.
Supported meters
PPM - Peak Program level Meters
Approximatly conforming to BS 6840-10. These meters are designed to indicate peak amplitude, as opposed to VU meters which are designed to indicate volume.
The scale is correct according to the standard, 4 equates to 0dB, 1 to -12, 7 to +12, and it is linear with decibels.
Ive never used a real PPM meter, so I dont know if it reacts correctly. Feedback welcome.
VU - Volume Unit meters
Conforming to BS 6840-17:1991. Real meter is larger.
These meters are designed to measure the "volume" of an audio signal, it is not as relevant to digital systems as PPM meters, but is useful if you are interfacing to analogue tape, FM broadcast equipment or want a general idea of the signal volume.
The -r flag (set reference level) is usful with these meters as it will allow you to calibrate to your DA converters. The meter is pre-adjusted so that it should allign correctly calibrated DA converters with analogue systems. If you wish to run with 0dBFS = 0dBu then use "-r 20"
DPM - Digital Peak Meter
Conforming to IEC 268-18:1995 (peak indiciator decay may not be correct).
These are meters as typically seen on digital consoles, HD recorders etc.
There are the most efficient in screen realestate and CPU use but look a bit boring.
JF - "Jellyfish" Meter (aka. Goniometer)
A jellyfish meter is a stereo scope display, it can be used to spot phase and mono compatibility problems.
Some charateristic problems can be seen, eg. a signal with a stronger left channel is seen as a shape sloping to the left [], more right slopes to the right [/], and dead mono is a vertical line [|].
The meter below the scope display indicates the degree of stereo correlation between the channels, a value of +1 means that it is perfectly mono compatible, and -1 and that the channels are in anti-phase (so they will cancel out if mixed).
If someone has better examples, please mail them to me, there are probably tutorials online.
SCO - Scope
A rendering of an oscilloscope display.
It has a basic trigger function, but there is no timebase control. It renders one pixel per sample, so it will probably be next to useless at 96KHz
Download (0.59MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1355 downloads
pTest 1.0 Beta
pTest framework is an Object Oriented PHP 5 testing framework. more>>
pTest framework is an Object Oriented PHP 5 testing framework. The project differs from other testing frameworks in that it doesnt suffer from a dogmatic following of JUnit.
A good feature of this framework is that it can be as easily used from the commandline as embedded and extended by your application. Tests are easy to write and dont require naming conventions or other weirdness.
A simple test
< ?php
class SimpleTest extends BaseTest {
public function setup() {
}
public function aIsB() {
$this->false( ( 1 == 2 ), "one is not equal to two" );
$this->false( ( a == b ), "a is not equal to b" );
}
public function knownFacts() {
$this->true( ( 1 + 1 == 2 ), one and one is two );
}
public function fatal() {
$this->true( new thisfatalerror(), division by zero );
}
public function tearDown() {
}
}
? >
The console output
SimpleTest:
aIsB
false( one is not equal to two ) = passed
false( a is not equal to b ) = passed
knownFacts
true( one and one is two ) = passed
fatal
errored
Output
====================================================
Fatal error: Class thisfatalerror not found in /usr/local/pTest/examples/SimpleTest.php on line 18
====================================================
4 total tests
3 passed
0 failed
0 skipped
1 errored
75.00% success
<<lessA good feature of this framework is that it can be as easily used from the commandline as embedded and extended by your application. Tests are easy to write and dont require naming conventions or other weirdness.
A simple test
< ?php
class SimpleTest extends BaseTest {
public function setup() {
}
public function aIsB() {
$this->false( ( 1 == 2 ), "one is not equal to two" );
$this->false( ( a == b ), "a is not equal to b" );
}
public function knownFacts() {
$this->true( ( 1 + 1 == 2 ), one and one is two );
}
public function fatal() {
$this->true( new thisfatalerror(), division by zero );
}
public function tearDown() {
}
}
? >
The console output
SimpleTest:
aIsB
false( one is not equal to two ) = passed
false( a is not equal to b ) = passed
knownFacts
true( one and one is two ) = passed
fatal
errored
Output
====================================================
Fatal error: Class thisfatalerror not found in /usr/local/pTest/examples/SimpleTest.php on line 18
====================================================
4 total tests
3 passed
0 failed
0 skipped
1 errored
75.00% success
Download (0.042MB)
Added: 2007-06-19 License: MPL (Mozilla Public License) Price:
857 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 1.00 cm is equal to how many meters search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed