nextui .net gauge control 1.0
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6430
Gauge Alpha
Gauge project is a score tracking and reporting tool for clay pigeon. more>>
Gauge project is a score tracking and reporting tool for clay pigeon.
Gauge is a simple Python script that helps record shooting statistics. It is designed for clay pigeon shooting, or any game with a hit/miss or 1/0 scoring, and allows your to keep a record of your aiming accuracy and scores.
It features a fast and easy to use color console user interface.
<<lessGauge is a simple Python script that helps record shooting statistics. It is designed for clay pigeon shooting, or any game with a hit/miss or 1/0 scoring, and allows your to keep a record of your aiming accuracy and scores.
It features a fast and easy to use color console user interface.
Download (0.011MB)
Added: 2006-12-01 License: GPL (GNU General Public License) Price:
1057 downloads
MDemail.net 2.9.0
Send and receive secure and encrypted email. Collaborate with others with the integrated group Instant Messaging and file sharing features. Use secure message boards and securely share documents. HIPAA and GLBA compliant. more>> <<less
Download (7.30MB)
Added: 2009-04-09 License: Commercial Price: $0
197 downloads
EmanonPHP Framework 1.0
EmanonPHP Framework is a framework developed in PHP which uses a .NET-like convention for calling classes. more>>
EmanonPHP Framework is a framework developed in PHP which uses a .NET-like convention for calling classes.
<<less Download (0.10MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
986 downloads
Verilog::Netlist::Net 3.0.11
Verilog::Netlist::Net is a Net for a Verilog Module. more>>
Verilog::Netlist::Net is a Net for a Verilog Module.
SYNOPSIS
use Verilog::Netlist;
...
my $net = $module->find_net (signalname);
print $net->name;
Verilog::Netlist creates a net for every sc_signal declaration in the current module.
<<lessSYNOPSIS
use Verilog::Netlist;
...
my $net = $module->find_net (signalname);
print $net->name;
Verilog::Netlist creates a net for every sc_signal declaration in the current module.
Download (0.12MB)
Added: 2007-08-14 License: Perl Artistic License Price:
806 downloads
Device Control Device 0.13
Device Control Device is a platform independent remote telescope and device control program. more>>
Device Control Device is a platform independent remote telescope and device control program compatible with the INDI standard (see http://indi.sourceforge.net/).
This program is a client (a user interface) and provides functions to control devices connected to a remote system that is running an INDI server.
The features and the structure of the GUI are similar to the Kstars INDI client. The only advantages are support for Windows and lower resource requirements.
<<lessThis program is a client (a user interface) and provides functions to control devices connected to a remote system that is running an INDI server.
The features and the structure of the GUI are similar to the Kstars INDI client. The only advantages are support for Windows and lower resource requirements.
Download (0.073MB)
Added: 2005-09-11 License: GPL (GNU General Public License) Price:
1509 downloads
Net::LDAP::Control::VLV 0.34
Net::LDAP::Control::VLV is an LDAPv3 Virtual List View control object. more>>
Net::LDAP::Control::VLV is an LDAPv3 Virtual List View control object.
SYNOPSIS
use Net::LDAP;
use Net::LDAP::Control::VLV;
use Net::LDAP::Constant qw( LDAP_CONTROL_VLVRESPONSE );
$ldap = Net::LDAP->new( "ldap.mydomain.eg" );
# Get the first 20 entries
$vlv = Net::LDAP::Control::VLV->new(
before => 0, # No entries from before target entry
after => 19, # 19 entries after target entry
content => 0, # List size unknown
offset => 1, # Target entry is the first
);
$sort = Net::LDAP::Control::Sort->new( order => cn );
@args = ( base => "o=Ace Industry, c=us",
scope => "subtree",
filter => "(objectClass=inetOrgPerson)",
callback => &process_entry, # Call this sub for each entry
control => [ $vlv, $sort ],
);
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Set the control to get the last 20 entries
$vlv->end;
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Now get the previous page
$vlv->scroll_page( -1 );
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Now page with first entry starting with "B" in the middle
$vlv->before(9); # Change page to show 9 before
$vlv->after(10); # Change page to show 10 after
$vlv->assert("B"); # assert "B"
$mesg = $ldap->search( @args );
<<lessSYNOPSIS
use Net::LDAP;
use Net::LDAP::Control::VLV;
use Net::LDAP::Constant qw( LDAP_CONTROL_VLVRESPONSE );
$ldap = Net::LDAP->new( "ldap.mydomain.eg" );
# Get the first 20 entries
$vlv = Net::LDAP::Control::VLV->new(
before => 0, # No entries from before target entry
after => 19, # 19 entries after target entry
content => 0, # List size unknown
offset => 1, # Target entry is the first
);
$sort = Net::LDAP::Control::Sort->new( order => cn );
@args = ( base => "o=Ace Industry, c=us",
scope => "subtree",
filter => "(objectClass=inetOrgPerson)",
callback => &process_entry, # Call this sub for each entry
control => [ $vlv, $sort ],
);
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Set the control to get the last 20 entries
$vlv->end;
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Now get the previous page
$vlv->scroll_page( -1 );
$mesg = $ldap->search( @args );
# Get VLV response control
($resp) = $mesg->control( LDAP_CONTROL_VLVRESPONSE ) or die;
$vlv->response( $resp );
# Now page with first entry starting with "B" in the middle
$vlv->before(9); # Change page to show 9 before
$vlv->after(10); # Change page to show 10 after
$vlv->assert("B"); # assert "B"
$mesg = $ldap->search( @args );
Download (0.24MB)
Added: 2007-08-14 License: Perl Artistic License Price:
801 downloads
Net::Google::Service 1.0.1
Net::Google::Service is a SOAP widget(s) for Net::Google. more>>
Net::Google::Service is a SOAP widget(s) for Net::Google.
SYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
<<lessSYNOPSIS
use Net::Google::Service;
my $search = Net::Google::Service->search({debug=>1});
PACKAGE METHODS
__PACKAGE__->search(%args)
__PACKAGE__->spelling(%args)
__PACKAGE_->cache(%args)
Download (0.017MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1061 downloads
Make-Money-On-Net 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-04 License: Freeware Price: Free
204 downloads
Simple Xmms Control 0.1
Simple Xmms Control is a a simple SuperKaramba theme that provides XMMS control. more>>
Simple Xmms Control is a a simple SuperKaramba theme that provides XMMS control. Icons are from nuoveXT icon theme.
All suggestions are welcome!
<<lessAll suggestions are welcome!
Download (0.008MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1223 downloads
Net::Oscar 1.0
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients. more>>
Net::Oscar project is a pure Perl implementation of the OSCAR protocol used by ICQ and AIM instant message clients.
<<less Download (MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
859 downloads

Gnome Control Center 2.26.0 / 2.27.4.1
Gnome Control Center is GNOMEs main interface for configuration of various aspects of your desktop. more>> <<less
Added: 2009-07-17 License: LGPL Price: FREE
13 downloads
Net::AudioScrobbler 0.01
Net::AudioScrobbler is a Perl module that provides an interface to AudioScrobbler. more>>
Net::AudioScrobbler is a Perl module that provides an interface to AudioScrobbler.
Installation:
To install this module type the following:
perl Makefile.PL
make
make test
make install
<<lessInstallation:
To install this module type the following:
perl Makefile.PL
make
make test
make install
Download (0.003MB)
Added: 2007-03-23 License: Perl Artistic License Price:
945 downloads
Net::Google::Search 1.0.1
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching. more>>
Net::Google::Search is a simple OOP-ish interface to the Google SOAP API for searching.
SYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
<<lessSYNOPSIS
use Net::Google::Search;
my $search = Net::Google::Search->new(%args);
$search->query(qw(aaron cope));
map { print $_->title()."n"; } @{$search->results()};
# or
foreach my $r (@{$search->response()}) {
print "Search time :".$r->searchTime()."n";
# returns an array ref of Result objects
# the same as the $search->results() method
map { print $_->URL()."n"; } @{$r->resultElement()}
}
Provides a simple OOP-ish interface to the Google SOAP API for searching.
This package is used by Net::Google.
Download (0.017MB)
Added: 2006-11-20 License: Perl Artistic License Price:
1069 downloads
Net::Lyskom 1.1
Net::Lyskom is a Perl module used to talk to LysKOM servers. more>>
Net::Lyskom is a Perl module used to talk to LysKOM servers.
SYNOPSIS
use Net::Lyskom;
$a = Net::Lyskom->new();
$conf = 6;
$a->login(pers_no => 437, password => "God", invisible => 1)
or die "Failed to log in: $a->err_stringn";
$b = $a->send_message(7680, "Oook!");
$b = $a->create_text(
subject => "Testsubject",
body => "A nice and tidy message body.",
recpt => [437],
);
if ($b) {
print "Text number $b created.n";
} else {
print "Text creation failed: $a->err_string.n";
}
<<lessSYNOPSIS
use Net::Lyskom;
$a = Net::Lyskom->new();
$conf = 6;
$a->login(pers_no => 437, password => "God", invisible => 1)
or die "Failed to log in: $a->err_stringn";
$b = $a->send_message(7680, "Oook!");
$b = $a->create_text(
subject => "Testsubject",
body => "A nice and tidy message body.",
recpt => [437],
);
if ($b) {
print "Text number $b created.n";
} else {
print "Text creation failed: $a->err_string.n";
}
Download (0.023MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Net::GPSD 0.35
Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon. more>>
Net::GPSD is a Perl module that provides an object client interface to the gpsd server daemon.
SYNOPSIS
use Net::GPSD;
$obj=Net::GPSD->new;
my $point=$obj->get;
print $point->latlon. "n";
or
use Net::GPSD;
$obj=Net::GPSD->new;
$obj->subscribe();
Net::GPSD provides an object client interface to the gpsd server daemon. gpsd is an open source GPS deamon from http://gpsd.berlios.de/.
For example the get method returns a blessed hash reference like
{S=>[?|0|1|2],
P=>[lat,lon]}
Fortunately, there are various methods that hide this hash from the user.
<<lessSYNOPSIS
use Net::GPSD;
$obj=Net::GPSD->new;
my $point=$obj->get;
print $point->latlon. "n";
or
use Net::GPSD;
$obj=Net::GPSD->new;
$obj->subscribe();
Net::GPSD provides an object client interface to the gpsd server daemon. gpsd is an open source GPS deamon from http://gpsd.berlios.de/.
For example the get method returns a blessed hash reference like
{S=>[?|0|1|2],
P=>[lat,lon]}
Fortunately, there are various methods that hide this hash from the user.
Download (0.015MB)
Added: 2007-04-04 License: Perl Artistic License Price:
936 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 nextui .net gauge control 1.0 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