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.248.433 Times

Methods freeware
Filter: All | Freeware | Demo
 

Methods

1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 477

USPS Methods 2.8d This allows a site owner to choose which USPS shipping methods will be available to the customer. Settings can be changed in the admin interface under Modules->Shipping->United States Postal Service.For example, if you select "Express" and "Priority", then a customer will only be shown those two...



Platforms: Windows, *nix, PHP, BSD

License: Freeware Download (50): USPS Methods 2.8d Download

Added: May 10, 2013 | Visits: 496

Generating get/set methods using closures When creating a class,one often end up writing lots get/set methods which essentially do the same thing e.g. get_name, get_age, ... , set_name, set_age, ... - each such method will simply set or return the value of its associated attribute. This script is a stategy for automating the creation of...





Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (55): Generating get/set methods using closures Download

Added: May 10, 2013 | Visits: 497

Abstract methods/classes The point is that python doesn't have a notion of abstract methods.Abstract methods are part of a base class that defines an interface, without any code. Abstract methods can't be called directly, because they don't contain any code in their definition. In the definition of the base class, you...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (55): Abstract methods/classes Download

Added: May 10, 2013 | Visits: 447

Static or Class Methods This script implements class methods that do not require an object instance.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Static or Class Methods Download

Added: May 10, 2013 | Visits: 486

Changing return value for mutating list methods Mutating list methods such as 'append' or 'extend' return None instead of the (mutated) list itself. Sometimes, this is not the desired behaviour. To have a reference to the (mutated) list returned is usefull, if one wants to chain commands such as mylistinstance.append(7).sort().


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Overlap Add Overlap Save methods implementation for block DFT processing The overlap add and overlap save are the two generally implemented methods when the input is greater than the maximum processible block in MATLAB because of memory constraints.


Platforms: Matlab


Released: June 22, 2012  |  Added: June 22, 2012 | Visits: 572

Brahmi - Indic Input Methods & OT fonts Brahmi project aims at producing Java Input Methods and OpenType fonts for Indian languages. They are bundled with Brahmi - Word Processor which installs the fonts, Input Methods and font.properties files


Platforms: Windows, Mac, Linux

License: Freeware Size: 907.02 KB Download (60): Brahmi - Indic Input Methods & OT fonts Download

Added: May 10, 2013 | Visits: 348

Tkinter : moving geometry methods A common way to create new compound widgets is to inherit Frame, create everything you need inside it and pack this base Frame on your application.This script is an alternative to this method, that sets geometry methods and options from a wiget to another.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Tkinter : moving geometry methods Download

Added: April 13, 2013 | Visits: 408

Binary Conversion Methods Five methods for converting a signal to a binary representation. Methods outlined in Arthur Petrosian, "Kolmogorov Complexity of finite sequences and recognition of different preictal eeg patterns".Methods are:1. average method: sample assigned 1 if above the signal average2. modified zone...


Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Binary Conversion Methods Download

Added: May 08, 2010 | Visits: 907

WebService::MusicBrainz WebService::MusicBrainz is a Perl module that will act as a factory using static methods to return specific web service objects. SYNOPSIS use WebService::MusicBrainz; my $artist_ws = WebService::MusicBrainz->new_artist(); my $track_ws = WebService::MusicBrainz->new_track(); my $release_ws...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (95): WebService::MusicBrainz Download

Added: January 18, 2010 | Visits: 826

Tk::PerlMethodList Tk::PerlMethodList is a Perl module to query the Symbol-table for methods (subroutines) defined in a class (package) and its parents. SYNOPSIS require Tk::PerlMethodList; my $instance = $main_window->PerlMethodList(); Tk::PerlMethodList is a Tk::Toplevel-derived widget. The window...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): Tk::PerlMethodList Download

Added: August 07, 2010 | Visits: 881

Set::Hash Set::Hash is a Perl module with hashes as objects with lots of handy methods (including set comparisons) and support for method chaining. SYNOPSIS use Set::Hash; my $sh1 = Set::Hash->new(name=>"dan",age=>33); my $sh2 = Set::Hash->new(qw/weight 185 height 72/); $sh1->length->print; # 2...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (89): Set::Hash Download

Added: January 02, 2010 | Visits: 922

ulxmlrpcpp ulxmlrpcpp is a library to call methods on a remote server. ulxmlrpcpps main goal is to be as easy to use as possible but be fully compliant. It is object oriented and written in C++. ulxmlrpcpp is a library to perform calls via XML-RPC in an object oriented approach implemented in C++. It is...


Platforms: *nix

License: Freeware Size: 542.72 KB Download (90): ulxmlrpcpp Download

Added: September 13, 2010 | Visits: 1.198

Math::Numbers Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory. SYNOPSIS use Math::Numbers; my $a = 123; my $b = 34; my $numbers = Math::Numbers->new($a, $b [, ...]); print "They are coprimes (relatively primes)!n" if...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (104): Math::Numbers Download

Added: June 16, 2010 | Visits: 933

DirHandle DirHandle is a Perl module created to supply object methods for directory handles. SYNOPSIS use DirHandle; $d = new DirHandle "."; if (defined $d) { while (defined($_ = $d->read)) { something($_); } $d->rewind; while (defined($_ = $d->read)) { something_else($_); } undef $d; } The...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): DirHandle Download

Added: November 16, 2010 | Visits: 849

Class::IntrospectionMethods Class::IntrospectionMethods is a Perl module that creates methods with introspection. SYNOPSIS use Class::IntrospectionMethods qw/make_methods/; make_methods ( parent, global_catalog => { name => metacat, list => [ [qw/foo/] => f_cat, [qw/bar baz/] => b_cat, ], } new_with_init...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (92): Class::IntrospectionMethods Download

Added: August 17, 2010 | Visits: 1.314

Audio::TagLib::MPEG::File Audio::TagLib::MPEG::File is an MPEG file class with some useful methods specific to MPEG. SYNOPSIS use Audio::TagLib::MPEG::File; my $i = Audio::TagLib::MPEG::File->new("sample file.mp3"); print $i->tag()->artist()->toCString(), "n"; # got artist This implements the generic...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (124): Audio::TagLib::MPEG::File Download

Added: February 09, 2010 | Visits: 1.083

Math::Vec Math::Vec is a Object-Oriented Vector Math Methods in Perl. SYNOPSIS use Math::Vec; $v = Math::Vec->new(0,1,2); or use Math::Vec qw(NewVec); $v = NewVec(0,1,2); @res = $v->Cross([1,2.5,0]); $p = NewVec(@res); $q = $p->Dot([0,1,0]); or use Math::Vec qw(:terse); $v = V(0,1,2); $q...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (110): Math::Vec Download

Added: February 17, 2010 | Visits: 1.840

CAD::Drawing CAD::Drawing is a Perl module with methods to create, load, and save vector graphics. SYNOPSIS The primary intention of this module is to provide high-level operations for creating, loading, saving and manipulating vector graphics without having to be overly concerned about smile floormats....


Platforms: *nix

License: Freeware Size: 39.94 KB Download (228): CAD::Drawing Download

Added: October 24, 2010 | Visits: 1.619

CAD::Drawing::IO::Image CAD::Drawing::IO::Image is a Perl module with output methods for images. Requisite Plug-in Functions See CAD::Drawing::IO for a description of the plug-in architecture. check_type Returns true if $type is "img" or $filename matches one of the ImageMagick type extensions. $fact =...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (111): CAD::Drawing::IO::Image Download

1 2 3 4 5 >