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

Class Disassembler freeware
Filter: All | Freeware | Demo
 

Class Disassembler

< 1 2 3 4 5 > 
Added: March 22, 2010 | Visits: 1.042

Class::DBI::DataMigration::Mapping Class::DBI::DataMigration::Mapping is an abstract parent class for objects that map a single column in a single row from the source database to the target database. Synopsis use Class::DBI::DataMigration::Mapping; # ... Later, when building $mappings hashref for use by a #...



Platforms: *nix

License: Freeware Size: 12.29 KB Download (97): Class::DBI::DataMigration::Mapping Download

Added: June 17, 2010 | Visits: 1.802

Disassembler for linux Disassembler for linux is a software that will try to provide a gui driven tool to disassemble executables. Written in C++, and will disassemble binaries from a number of OSses..





Platforms: *nix

License: Freeware Size: 368.64 KB Download (159): Disassembler for linux Download

Added: November 13, 2010 | Visits: 919

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

Added: September 23, 2010 | Visits: 1.296

Class::InsideOut::Manual::About Class::InsideOut::Manual::About is a guide to this and other implementations of the inside-out technique. This manual provides an overview of the inside-out technique and its application within Class::InsideOut and other modules. It also provides a list of references for further study....


Platforms: *nix

License: Freeware Size: 48.13 KB Download (109): Class::InsideOut::Manual::About Download

Added: September 09, 2010 | Visits: 783

Class::InsideOut Class::InsideOut is a Perl module with a safe, simple inside-out object construction kit. SYNOPSIS package My::Class; use Class::InsideOut qw( public private register id ); public name => my %name; # accessor: name() private age => my %age; # no accessor sub new { register( shift ) }...


Platforms: *nix

License: Freeware Size: 48.13 KB Download (87): Class::InsideOut Download

Added: April 18, 2010 | Visits: 866

Class::DBI::FormBuilder Class::DBI::FormBuilder is a Perl module with Class::DBI/CGI::FormBuilder integration. SYNOPSIS package Film; use strict; use warnings; use base Class::DBI; use Class::DBI::FormBuilder; # for indented output: # use Class::DBI::FormBuilder PrettyPrint => ALL; # POST all forms to...


Platforms: *nix

License: Freeware Size: 46.08 KB Download (88): Class::DBI::FormBuilder Download

Added: November 03, 2010 | Visits: 840

Class::Meta::Express 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...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (92): Class::Meta::Express Download

Added: February 10, 2010 | Visits: 962

Class::Meta Class::Meta is a Perl class automation, introspection, and data validation. SYNOPSIS Generate a class: package MyApp::Thingy; use strict; use Class::Meta; use Class::Meta::Types::String; use Class::Meta::Types::Numeric; BEGIN { # Create a Class::Meta object for this class. my $cm =...


Platforms: *nix

License: Freeware Size: 61.44 KB Download (90): Class::Meta Download

Added: March 03, 2010 | Visits: 1.118

Class::Meta::Type Class::Meta::Type is a Perl module for data type validation and accessor building. SYNOPSIS package MyApp::TypeDef; use strict; use Class::Meta::Type; use IO::Socket; my $type = Class::Meta::Type->add( key => io_socket, desc => IO::Socket object, name => IO::Socket Object ); This...


Platforms: *nix

License: Freeware Size: 61.44 KB Download (93): Class::Meta::Type Download

Added: October 07, 2010 | Visits: 951

Class::DBI::FormTools Class::DBI::FormTools is a Perl module to build forms with multiple interconnected objects. SYNOPSIS package MyApp::Film; use base Class::DBI::FormTools; Mason example < %init > my $o = Film->retrieve(42); < /%init > < form > < input name="< % $o- >form_fieldname(title) % >"...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (95): Class::DBI::FormTools Download

Added: July 08, 2010 | Visits: 893

DBIx::Class::FormTools DBIx::Class::FormTools is a utility module for building forms with multiple related DBIx::Class objects. SYNOPSIS In the examples I use 3 objects, a Film, an Actor and a Role. Role is a many to many relation between Film and Actor. package MySchema; use base DBIx::Class::Schema;...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (86): DBIx::Class::FormTools Download

Added: February 03, 2010 | Visits: 1.040

Class::IntrospectionMethods::Catalog Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods. Exported functions set_method_info( target_class, method_name, info_ref ) Store construction info for method method_name of class target_class. set_global_catalog (target_class, ...) Store catalog...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (94): Class::IntrospectionMethods::Catalog Download

Added: November 16, 2010 | Visits: 848

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: October 06, 2010 | Visits: 670

Class::DataStore Class::DataStore is a Perl module for generic OO data storage/retrieval. SYNOPSIS my %values = ( one => 1, two => 2 ); my $store = Class::DataStore->new( %values ); # using get/set methods $store->set( three, 3 ); my $three = $store->get( three ); # using AUTOLOAD method $store->four(...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (89): Class::DataStore Download

Added: April 21, 2010 | Visits: 745

dtRdr::Traits::Class dtRdr::Traits::Class is a Perl module with shared OO stuff. Methods to Break Things NOT_IMPLEMENTED Imported into base class. Gives a nicer message than the standard "Cant locate method...", indicating that you did not typo the method name, but instead forgot to override it. sub...


Platforms: *nix

License: Freeware Size: 2.8 MB Download (86): dtRdr::Traits::Class Download

Added: August 01, 2010 | Visits: 955

Class::DBI::AutoIncrement Class::DBI::AutoIncrement is a Perl module to emulate auto-incrementing columns on Class::DBI subclasses. SYNOPSIS Lets assume you have a project making use of Class::DBI. You have implemented a subclass of Class::DBI called MyProject::DBI that opens a connection towards your projects...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (87): Class::DBI::AutoIncrement Download

Added: June 09, 2010 | Visits: 942

Access_user Class Access_user Class is an easy to use system for protecting pages and registering users. The main features are user login, user registration, page protection, forgotten password recovery, and email-based account activation. The class is powered by MySQL and PHP sessions. Inside the package are...


Platforms: *nix

License: Freeware Size: 36.86 KB Download (103): Access_user Class Download

Added: May 05, 2010 | Visits: 1.571

Gif Disassembler Gif Disassembler is a web-based script that lets you upload any GIF animation and after that it will attempt to return the individual frames, along with the image information from your animation. That info can then be used to reassemble the animation after frame editing. Whats New in This...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (176): Gif Disassembler Download

Added: August 03, 2010 | Visits: 913

Class::Container Class::Container is a Perl module with Glues object frameworks together transparently. SYNOPSIS package Car; use Class::Container; @ISA = qw(Class::Container); __PACKAGE__->valid_params ( paint => {default => burgundy}, style => {default => coupe}, windshield => {isa => Glass}, radio...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (110): Class::Container Download

Added: March 17, 2010 | Visits: 586

Class::HPLOO Class::HPLOO is an easier way to declare classes on Perl, based in the popular class {...} style and ePod. USAGE use Class::HPLOO ; class Foo extends Bar , Baz { use LWP::Simple qw(get) ; ## import the method get() to this package. attr ( array foo_list , int age , string name , foo )...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Class::HPLOO Download

< 1 2 3 4 5 >