For Programmers: Free Programming Magazines  


Home > Archive > Software Engineering > May 2006 > what the weaknesses of the object oriented methodology









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author what the weaknesses of the object oriented methodology
OhYeah

2006-03-13, 3:57 am

what the weaknesses of the object oriented methodology?

H. S. Lahman

2006-03-13, 9:56 pm

Responding to OhYeah...

> what the weaknesses of the object oriented methodology?


The primary goal of the OO paradigm is providing software that is
adaptable over time in the face of volatile customer requirements. To
do that one pays a price. One price is that the paradigm itself is not
very intuitive compared to conventional programming that is very close
to the hardware computational models. The OO paradigm is designed to
map to customer domains rather than hardware domains. Thus the learning
curve is substantial.

Another price is in performance because the OOPL abstractions and
generalizations tend to require significant overhead. In fact, the
conversion from the customer domain view to the hardware domain view is,
itself, a source of implicit overhead because the language has to
provide "bootstrap" structures to map one domain to the other. Yet
another price is that the OO paradigm tends to be verbose because one
captures a lot of business rules and policies in static structures. So
developing an OO application usually takes somewhat longer than using
other approaches like functional programming.

Generally the OO paradigm is most useful in contexts where unique and
complex problems need to be solved AND where the customer requirements
tend to change significantly over time. So there are several areas
where the paradigm is not the best choice...

(1) CRUD/USER processing where the application is essentially just a
pipeline between a UI and and RDB. The RAD IDEs and layered model
infrastructures already do a good job of hiding a lot of the grunt work
and they will probably result in more efficient applications.

(2) Pure algorithmic processing using mathematical algorithms (e.g.,
typical Operations Research problems). Since the math doesn't change,
volatile requirements aren't an issue and one misses much of the benefit
of using the OO paradigm. So one doesn't use OO techniques to encode a
Quicksort algorithm even if one can identify abstractions like Pivot and
Partition.

(3) Linear processing. Things like parsing a particular LALR(1)
language or simple device drivers where each interface element (language
statement or driver command) has an independent path through the
application logic (i.e., no complex dependencies from one "command" to
another). [However, if one is designing a general purpose parsing
engine where the syntax is defined externally (e.g., via a BNF
specification), then one needs a more abstract approach and the OO
paradigm can be very useful. Similarly, if the device driver is complex
enough or the hardware details change frequently, the OO paradigm can be
useful.]


*************
There is nothing wrong with me that could
not be cured by a capful of Drano.

H. S. Lahman
hsl@pathfindermda.com
Pathfinder Solutions -- Put MDA to Work
http://www.pathfindermda.com
blog: http://pathfinderpeople.blogs.com/hslahman
(888)OOA-PATH



JXStern

2006-03-13, 9:56 pm

On 13 Mar 2006 00:06:16 -0800, "OhYeah" <zlxaaabbb@hotmail.com> wrote:
>what the weaknesses of the object oriented methodology?


The weakness is that it is not an omniscient silver bullet that solves
all problems without any thought.

So, any strengths it has are just relative to other methodologies, and
are still dependent, perhaps even more dependent, on skillful
application. The horror!

J.

xpyttl

2006-03-13, 9:56 pm

"JXStern" <JXSternChangeX2R@gte.net> wrote in message
news:b8ib12lm4eectq3ebb2io9fqr2c70g0sk9@
4ax.com...

> So, any strengths it has are just relative to other methodologies, and
> are still dependent, perhaps even more dependent, on skillful
> application. The horror!


Since "skillful application" seems out of style these days, does that imply
OO techniques are obsolete?

...


David Lightstone

2006-03-14, 7:56 am


"xpyttl" <xpyttl_NOSPAM@earthling.net> wrote in message
news:ajmRf.171$O_3.57@fe05.lga...
> "JXStern" <JXSternChangeX2R@gte.net> wrote in message
> news:b8ib12lm4eectq3ebb2io9fqr2c70g0sk9@
4ax.com...
>
>
> Since "skillful application" seems out of style these days, does that
> imply OO techniques are obsolete?
>
> ..


No, it at best can only imply that practioneers generally lack the skill
needed to apply the OO "techniques"
>
>



Peter Dembinski

2006-03-20, 6:58 pm

"H. S. Lahman" <h.lahman@verizon.net> writes:

[...]

> So one doesn't use OO techniques to encode a Quicksort algorithm


Wrong. Object-orientation is very useful when solving algorithmic
problems. For example, consider a RoughSet class, that encapsulates
the implementation of a rough set with all the operations that can be
done on this data structure. Or consider a class encapsulating
an interval of floating point numbers, which could be very useful
when one implements numeric algorithms.

--
http://www.peter.dembinski.prv.pl
H. S. Lahman

2006-03-21, 10:03 pm

Responding to Dembinski...

>
>
> Wrong. Object-orientation is very useful when solving algorithmic
> problems. For example, consider a RoughSet class, that encapsulates
> the implementation of a rough set with all the operations that can be
> done on this data structure. Or consider a class encapsulating
> an interval of floating point numbers, which could be very useful
> when one implements numeric algorithms.


I don't know of any experienced OO developer who would dream of
splitting up the Quicksort algorithm into classes. It would be
overkill. One would encapsulate the algorithm in a single method (more
likely, as a library function invoked by a method).

The issue is that OO techniques are best suited for contexts where
requirements are volatile over time. So one wants to address things
that may change with OO while "hard-wiring" things that don't change
using more intuitive and compact paradigms. Mathematical algorithms
like Quicksort do not change over time so one is not concerned with
maintainability.

OTOH, I agree that there are plenty of scientific contexts where one
needs to manipulate multiple algorithms, provide ad hoc algorithms, or
substitute detailed elements of algorithms. In those contexts OO
techniques can be very useful for supplying the "glue". Your first
example could be in this category because you seem to modeling an
application of set theory, not a specific computational algorithm directly.

Similarly, your second example identifies a situation where the
mathematical algorithm has to be implemented within the constraints of a
Turing Machine environment. However, I would regard that as more of an
OOP tactical device. My point here was more about OOA/D; IOW, the
overall design of solutions.

[BTW, I spent a decade doing operations research. But the OO was used
for all the peripheral stuff like UIs, DB access, problem setup, etc.
When I needed a linear programming solution, I invoked an external
package for the algorithm execution from within the OO application.]


*************
There is nothing wrong with me that could
not be cured by a capful of Drano.

H. S. Lahman
hsl@pathfindermda.com
Pathfinder Solutions -- Put MDA to Work
http://www.pathfindermda.com
blog: http://pathfinderpeople.blogs.com/hslahman
(888)OOA-PATH



Peter Dembinski

2006-03-23, 10:02 pm

"H. S. Lahman" <h.lahman@verizon.net> writes:

> Responding to Dembinski...
>
>
> I don't know of any experienced OO developer who would dream of
> splitting up the Quicksort algorithm into classes.


Could be, but implementing quicksort in a way it can be used
on collections of various comparable objects is quite common
practice.

> It would be overkill.


In embedded systems, it could be an overkill. In desktop computing
world, it doesn't have to be.
prtiglao@gmail.com

2006-03-23, 10:02 pm


Peter Dembinski wrote:
> "H. S. Lahman" <h.lahman@verizon.net> writes:
>
>
> Could be, but implementing quicksort in a way it can be used
> on collections of various comparable objects is quite common
> practice.


IMO, polymorphism =/= OOP. It is possible to use polymorphism in other
programming pardigms, isn't it? Like quicksort in C std library for
example does
polymorphism well. Not best example, but I'm sure better ones exist in
other languages. (Probably a good Haskell one I bet :) Dunno much
Haskell though)

--Dragontamer

H. S. Lahman

2006-03-24, 7:06 pm

Responding to Dembinski...

>
>
> Could be, but implementing quicksort in a way it can be used
> on collections of various comparable objects is quite common
> practice.


Sure. But that is a new requirement. One can meet it in a variety of
ways that are not necessarily OO, such as using a callback for the
element compare (a la the C standard library), using type polymorphism
at the 3GL level (e.g., STL), using multiple library entry points, etc..

At another level, I don't think this is a good example. The only thing
that needs to be polymorphic here is the method signature and one can do
that by overloading the method in the "owning" class. That is, there is
no reason to provide a Facade class that hides collaborations among peer
object like Pivot and Partition that further decompose the behavior
responsibility.

>
>
> In embedded systems, it could be an overkill. In desktop computing
> world, it doesn't have to be.


I don't see why. The basic issue is that the algorithm doesn't change
over the life of the application (or set of applications!) and that is
true for any sort of computing. There are more efficient and elegant
ways of encoding raw algorithms in that situation.


--

*************
There is nothing wrong with me that could
not be cured by a capful of Drano.

H. S. Lahman
hsl@pathfindermda.com
Pathfinder Solutions -- Put MDA to Work
http://www.pathfindermda.com
blog: http://pathfinderpeople.blogs.com/hslahman
(888)OOA-PATH



ComputerBob

2006-03-29, 8:13 pm

quote:
Originally posted by OhYeah
what the weaknesses of the object oriented methodology?


Gentlemen,

Sorry I read enough. Narrow minded people no wonder you mock OO. I am what you call an OO or RAD developer also a database developer. I even way back programmed punch cards, so I have seen it all. Object Oriented was designed to not have to do it twice (reusability) and there is also a separation between data and the application which is the manageability of application development for any industry. I do not care if you are talking science, medical, or business statistics the application and database rules are all the same. Our theory in those days was why reinvent the wheel every time.

As a software engineer I look at what problems I have to tackle today. In the object oriented world once we resolve an issue we go on. Object oriented has no weaknesses except ignorance. And to be a software engineer you must understand the whole machine not that I can write a better algorithm. We all in this industry try to make our code easy to read and as short as possible. KISS!

Anyway being in this business a perfectly designed system has no flaws. In OO we can use something developed again and again once it proves to be efficient. Yes there is memory overhead but memory is cheap now a day’s which memory is the most efficient way to get code to the processor. Basically, how is any part of this methodology a weakness? It is not! The whole personal computer is built on these methodologies from the network on up.

You want to know the weakness is people not see farther then their noses. Technical babble is all it is. Our whole system is built on OO and it works! It can not be exploited because it is multi-level or n-tier.

Best Regards,

Bob Zagars
Senior Software Engineer
Zagars & Evans, Inc
Soft4All

2006-05-16, 6:41 am

CAD/CAE/CAM/EDA/GIS/PCB/FEA/CNC/CFD low price software. FTP! Highest quality
of service! Real cd-catalog!!!

Welcome searchers and users of softwares which we can offer. We would like to offer you some important
softwares you are looking on our site http://soft4all.biz Full version of software.
1. Professional cracking of any kind of software (CAD, CAM, CAE, EDA, GIS, PCB, FEA, FEM, CNC, CFD, PDS, 3D, Optics etc.)
designed for any kind of operating systems (Windows 95/98/ME/2000/XP, Linux, FreeBSD, OS/2, MAC OS etc.)
2. Producing keygens, licenses for different protection systems (FlexLM, SentinelLM, ElanLM, CrypKey, etc.)
3. Producing emulators for any kind of dongles (SentinelPro, SentinelSuperPro, Hasp4, Hardlock, WIBU, Guardant, etc.)
4. Documentation (tutorials and help). We will reply very fast.

We have very big interes to build good and long relations.


All Software Listed as followed are Unlimited version! Their function
is completely the same as the original retail version! the Only exception
is they NO need any type of hardlock, such as Dongle etc. that says, you can
install and use on any number of computer, All are NO limit to time and func
tion!


http://Soft4all.biz

http://Soft4all.biz

http://Soft4all.biz

Here is an example of the most popular offered software :

-------------------------------------------------------------------------------------
!!!Please don't ask this www-board. We dont'contact you in this www-board.!!!
-------------------------------------------------------------------------------------

FTP DOWNLOAD 2D3 BOUJOU THREE V3.0-ISO 1CD + crack + keygen + serial
FTP DOWNLOAD 3DALIENS GLU3D V13.05 FOR MAYA 6.5 + crack + FTP DOWNLOAD BENTLEY.Stuctural.v8.05.02.12 + crack + keygen + serial
FTP DOWNLOAD BENTLEY.Stuctural.v8.05.03.62 + crack + keygen + serial
FTP DOWNLOAD BENTLEY.TriForma.IFC.2x.Interface.v8.05.02.17 + crack + keygen + serial
FTP DOWNLOAD Bergen Fill Vol. 1 + crack + keygen + serial
FTP DOWNLOAD Bergen Fill Vol. 2 + crack + keygen + serial
FTP DOWNLOAD Bernina Artista 3.0 + crack + keygen + serial
FTP DOWNLOAD Bernina Artista 4.0 + crack + keygen + serial
FTP DOWNLOAD Bes-100E v 2.13 + crack + keygen + serial
FTP DOWNLOAD Bes-100E v 2.14 + crack + keygen + serial
FTP DOWNLOAD BETTER HOMES AND GARDENS LANDSCAPE AND DECK DESIGNER V7.0 + crack + keygen + serial
FTP DOWNLOAD Biographic AI Implant v1.81 for Maya 5.0 + crack + keygen + serial
FTP DOWNLOAD Blaupunkt Teleatlas Benelux DX 2005,2006 + crack + keygen + serial
FTP DOWNLOAD Bluecontrol v2.5 SR2 + crack + keygen + serial
FTP DOWNLOAD BlueMarble Geographic Transformer v5.1.1.3 + crack + keygen + serial
FTP DOWNLOAD BobCAD-CAM 20.2 + crack + keygen + serial
FTP DOWNLOAD Bobcad-CAM AND Bobart v20.1 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM AND BOBART V20.2 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM V20.5 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM_AND_BOBART_V20.2 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAM_AND_BOBART_V20.6 + crack + keygen + serial
FTP DOWNLOAD BOBCAD-CAMAND BOBART V20.4 + crack + keygen + serial
FTP DOWNLOAD BOBWIRE V19.3 + crack + keygen + serial
FTP DOWNLOAD BOEING GIS FEATURE COLLECTION MODULE V1.2 FOR BOEING SOFTPLOTTER V4.1 + crack + keygen + serial
FTP DOWNLOAD BOEING SOFTPLOTTER V4.1 WITH.AIRFIELD + crack + keygen + serial
FTP DOWNLOAD BOEING.KORK.DIGITAL.MAPPING.SYSTEM.V14.0 + crack + keygen + serial
FTP DOWNLOAD Borland StarTeam 5.3 + crack + keygen + serial
FTP DOWNLOAD BricsCad Architecturals v4.1.0015 for AutoCAD + crack + keygen + serial
FTP DOWNLOAD BricsCad Architecturals v4.1.0015 for BricsCad + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.0 0012 + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.0.0006 + crack + keygen + serial
FTP DOWNLOAD BricsCad Pro v6.2.0010 + crack + keygen + serial
FTP DOWNLOAD BricsCad Structural Frames.v2.1.0003 + crack + keygen + serial
FTP DOWNLOAD Broomstick BASS VSTI 1.0 + crack + keygen + serial
FTP DOWNLOAD Brother PE 4 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5 Designer CD-BOOK + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.5 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.6 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 5.6 Designer + crack + keygen + serial
FTP DOWNLOAD Brother PE 6 Designer + crack + keygen + serial
FTP DOWNLOAD Bryce 5.0 + crack + keygen + serial
FTP DOWNLOAD BRYCE 5.5 + crack + keygen + serial
FTP DOWNLOAD Buzz Edit + crack + keygen + serial
FTP DOWNLOAD Buzz Edit 3.38 WITH BUZZ TOOLS + crack + keygen + serial
FTP DOWNLOAD Buzz Explorer 1.02 + crack + keygen + serial
FTP DOWNLOAD Cabinet Vision Solid 3.5 + crack + keygen + serial
FTP DOWNLOAD CABINET VISION SOLID v4.0 + crack + keygen + serial
FTP DOWNLOAD CABINET VISION SOLID V4.0 + crack + keygen + serial
FTP DOWNLOAD CAD EASY EASYSITE AUTOCAD V2 + crack + keygen + serial
FTP DOWNLOAD Cadance confrml50 base ISO 1CD + crack + keygen + serial
FTP DOWNLOAD CADCAM-E CAT5WORKS V2.0 + crack + keygen + serial
FTP DOWNLOAD CADCAM-E PSCAT5 V2.2 + crack + keygen + serial
FTP DOWNLOAD CADCAM-E PSPRO V3.1 + crack + keygen + serial
FTP DOWNLOAD CADENCE ALLEGRO SPB RELEASE 15.5 + crack + keygen + serial
FTP DOWNLOAD Cadence Allegro SPB V15.5 + crack + keygen + serial
FTP DOWNLOAD Cadence Allegro SPB V15.5 + crack + keygen + serial
FTP DOWNLOAD CADENCE ISSOLAME V6.9 + crack + keygen + serial
FTP DOWNLOAD CADENCE ORCAD UNISON SUITE PRO V10.5 + crack + keygen + serial
FTP DOWNLOAD Cadence spb 15.2 update + crack + keygen + serial
FTP DOWNLOAD Cadence.Allegro.Silicon.Package.Board.V15.5.1 + crack + keygen + serial
FTP DOWNLOAD Cadence.Specman.Elite.V5.0 + crack + keygen + serial
FTP DOWNLOAD CAD-KAS PDF Split and Merge v1.0 + crack + keygen + serial
FTP DOWNLOAD Cadlink Signlab 7 rev 1 + crack + keygen + serial
FTP DOWNLOAD CADlink SignLab 7.0 R1 Printer Packages CADlink SignLab e6.1 Revision 6 + crack + keygen + serial
FTP DOWNLOAD CADlink SignLab 7.0 Revision 1 + crack + keygen + serial
FTP DOWNLOAD CADRASTER LTX V6.10 FOR AUTOCAD + crack + keygen + serial
FTP DOWNLOAD CAD-Schroer.Medusa.4.v2 + crack + keygen + serial
FTP DOWNLOAD CadSoft.Eagle.v4.16r1 + crack + keygen + serial
FTP DOWNLOAD CAE.PowerTools.FEvis.Publisher.v1.1.0.9 + crack + keygen + serial
FTP DOWNLOAD CAEFEM v9.0 + crack + keygen + serial
FTP DOWNLOAD CAEFEM.v8.21 + crack + keygen + serial
FTP DOWNLOAD Cakewalk Rapture 1.0 VSTi DXi RTAS AU + crack + keygen + serial
FTP DOWNLOAD Caligari Truespace v6.5 + crack + keygen + serial
FTP DOWNLOAD CAM Expert v2.0.4.8 + crack + keygen + serial
FTP DOWNLOAD CAM_Expert_v2.0.4.7 + crack + keygen + serial
FTP DOWNLOAD CAM_Expert_v2.0.4.8 + crack + keygen + serial
FTP DOWNLOAD CAM350 v8.7 + crack + keygen + serial
FTP DOWNLOAD CAM350 v8.7.1 + crack + keygen + serial
FTP DOWNLOAD CAM350.v9.0.1 + crack + keygen + serial
FTP DOWNLOAD GGU.Time.Graph.v6.14 + crack + keygen + serial
FTP DOWNLOAD GGU.Time.Graph.v6.15 + crack + keygen + serial
FTP DOWNLOAD GGU.Triaxial.v3.12 + crack + keygen + serial
FTP DOWNLOAD GGU.Underpin.v3.10 + crack + keygen + serial
FTP DOWNLOAD GGUCAD.v5.20 + crack + keygen + serial
FTP DOWNLOAD GGU-Pumptest.v2.11 + crack + keygen + serial
FTP DOWNLOAD GGU-Retain v4 21 + crack + keygen + serial
FTP DOWNLOAD GGU-Stability.v7.10 + crack + keygen + serial
FTP DOWNLOAD GGU-Transient.v4.10 + crack + keygen + serial
FTP DOWNLOAD GGU-Triaxial.v3.13 + crack + keygen + serial
FTP DOWNLOAD GIBBSCAM 2005 V7.7 + crack + keygen + serial
FTP DOWNLOAD GisBase Pac 1.18 + crack + keygen + serial
FTP DOWNLOAD PTC ROUTED SYSTEMS DESIGNER V6.0 + crack + keygen + serial
FTP DOWNLOAD PTC ROUTED SYSTEMS DESIGNER V6.0 M010 + crack + keygen + serial
FTP DOWNLOAD PTC.Pro.ENGINEER.WILDFIRE.2.0.Datecode.2004490 + crack + keygen + serial
FTP DOWNLOAD PTC_INTRALINK_V3.4_M010 + crack + keygen + serial
FTP DOWNLOAD PTC_PRO_ENGINEER_WILDFIRE_V2.0_M0100_ISO 3CD + crack + keygen + serial
FTP DOWNLOAD PTC_ROUTED_SYSTEMS_DESIGNER_V5.5 + crack + keygen + serial
FTP DOWNLOAD Punto 6.01 for XP + crack + keygen + serial
FTP DOWNLOAD Puntograms Proline Designer 7.6.3 + crack + keygen + serial
FTP DOWNLOAD Puntotek Gold 1.5 + crack + keygen + serial
FTP DOWNLOAD Pure Motion EditStudio v4.13 + crack + keygen + serial
FTP DOWNLOAD QNX Momentics Professional V6.2.1A + crack + keygen + serial
FTP DOWNLOAD QNX Neutrino 6.2.1 For WinNT + crack + keygen + serial
FTP DOWNLOAD QuarkXPress 7.0 + crack + keygen + serial
FTP DOWNLOAD QUARKXPRESS V6.1 MAC OSX ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Quest QDesigner Physical Architect Enterprise 12 + crack + keygen + serial
FTP DOWNLOAD Quicklogic Quickworks v9.64 + crack + keygen + serial
FTP DOWNLOAD Rainbow EMBROIDERY V5.99 Gs( DOS) + crack + keygen + serial
FTP DOWNLOAD RAINDROP_GEOMAGIC_STUDIO_V7.0 + crack + keygen + serial
FTP DOWNLOAD Raytech - Bsb Nautical Carts - Worldwide + crack + keygen + serial
FTP DOWNLOAD REALVIZ Stitcher v4.0 + crack + keygen + serial
FTP DOWNLOAD REALVIZ Stitcher v4.0 incl_Keygen + crack + keygen + serial
FTP DOWNLOAD Rebis AutoPIPE 6.20 + crack + keygen + serial
FTP DOWNLOAD REDASOFT VISUAL CLONING V3.0 + crack + keygen + serial
FTP DOWNLOAD REDASOFT_VISUAL_CLONING_V3.0 + crack + keygen + serial
FTP DOWNLOAD REIUSA STAAD FOUNDATION V2.0 + crack + keygen + serial
FTP DOWNLOAD REIUSA Staad Pro V2005 + crack + keygen + serial
FTP DOWNLOAD REIUSA.STAAD.PRO.V2005 + crack + keygen + serial
FTP DOWNLOAD RENESAS CC32R V4.30 + crack + keygen + serial
FTP DOWNLOAD RENESAS NC30WA V5.30 + crack + keygen + serial
FTP DOWNLOAD RES2DINV v3.54.44 + crack + keygen + serial
FTP DOWNLOAD Research.Systems.Envi.v4.1 + crack + keygen + serial
FTP DOWNLOAD Research.Systems.IDL.v6.3 + crack + keygen + serial
FTP DOWNLOAD RESEARCHSYSTEM SILIDAR V1.0 + crack + keygen + serial
FTP DOWNLOAD Richpeace Design Pro 2000 V 4.1 + crack + keygen + serial
FTP DOWNLOAD RichPeace Design Pro 2000 V 4.28 + crack + keygen + serial
FTP DOWNLOAD RISA TECHNOLOGIES RISA 3D V5.5 + crack + keygen + serial
FTP DOWNLOAD RISA TECHNOLOGIES RISA FLOOR V2.0 + crack + keygen + serial
FTP DOWNLOAD ROBOLAB V2.5.4 MAC OSX ISO 1CD + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE EXAMINE3D V4.099 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCDATA V3.015 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCFALL V4.042 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCPLANE V2.032 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE ROCSUPPORT V3.005 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE SLIDE V5.019 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE SWEDGE V4.080 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE UNWEDGE V3.009 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE_ROCSUPPORT_V3.006 + crack + keygen + serial
FTP DOWNLOAD ROCSCIENCE_SLIDE_V5.021 + crack + keygen + serial
FTP DOWNLOAD UGS SOLIDEDGE V17 + crack + keygen + serial
FTP DOWNLOAD UGS SOLIDEDGE V17.0 + crack + keygen + serial
FTP DOWNLOAD UGS.I-DEAS.NX.V11M3 + crack + keygen + serial
FTP DOWNLOAD UGS.TECHNOMATIX.EM-WORKPLACE.V7.1.2 + crack + keygen + serial
FTP DOWNLOAD UGS_IMAGEWARE_V12.0 + crack + keygen + serial
FTP DOWNLOAD UGS_NX_V3.0_GERMAN_DOKUMENTATION + crack + keygen + serial
FTP DOWNLOAD UGS_SOLID_EDGE_V16_UPDATE_5 + crack + keygen + serial
FTP DOWNLOAD ULEAD DVD WORKSHOP V2.0 CDVERSION ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Ulix Stitch 2.0 + crack + keygen + serial
FTP DOWNLOAD Ultra Flex Express 7.5 + crack + keygen + serial
FTP DOWNLOAD ULTRA-Flex 7.5 for STIKA + crack + keygen + serial
FTP DOWNLOAD ULTRA-Flex Interactive simulator 7 + crack + keygen + serial
FTP DOWNLOAD UltraLine Routenplaner v4.0 + crack + keygen + serial
FTP DOWNLOAD UMC-0.18u FE lib + crack + keygen + serial
FTP DOWNLOAD Unigraphics NX4 CAST + crack + keygen + serial
FTP DOWNLOAD VAG ElsaWin Data v3.20 + crack + keygen + serial
FTP DOWNLOAD VAG ElsaWin v3.20 + crack + keygen + serial
FTP DOWNLOAD Vector Super (80,000 Super Designs) + crack + keygen + serial
FTP DOWNLOAD VectorFX VOL 150.000 VectorLogos + crack + keygen + serial
FTP DOWNLOAD VectorFX Vol2 Design and Artwork + crack + keygen + serial
FTP DOWNLOAD Vectorworks 11 + crack + keygen + serial
FTP DOWNLOAD Vehicle Graphics + crack + keygen + serial
FTP DOWNLOAD VENTURE FENIX V4.1 + crack + keygen + serial
FTP DOWNLOAD VERO_MACHINING_STRATEGIST_V6.1 + crack + keygen + serial
FTP DOWNLOAD Versata Logic Suite v5.6.4 ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Versata Logic Suite v5.6.4 ISO 1CD + crack + keygen + serial
FTP DOWNLOAD Vinyl CAD 2 + crack + keygen + serial
FTP DOWNLOAD Vinyl Express Master LXi + crack + keygen + serial
FTP DOWNLOAD Vinyl Ripper v1.0 + crack + keygen + serial
FTP DOWNLOAD Visiosonic PCDJ Red VRM 7.2 + crack + keygen + serial
FTP DOWNLOAD Visual Flow 4.1 + crack + keygen + serial
FTP DOWNLOAD Visual Mill 5.01 + crack + keygen + serial
FTP DOWNLOAD Visual.Mill.v5.08-SHOCK + crack + keygen + serial
FTP DOWNLOAD VNI PV Wave Product Family v8.5.1 + crack + keygen + serial
FTP DOWNLOAD Volvo Wiring v03 2005 + crack + keygen + serial
FTP DOWNLOAD VOX 3D Planer + crack + keygen + serial
FTP DOWNLOAD VRML Export 2006 For AutoCAD v3.4.0.50317 + crack + keygen + serial
FTP DOWNLOAD VTC AUTOCAD 2005 FOR ARCHITECTS + crack + keygen + serial
FTP DOWNLOAD VTC AUTODESYS FORMZ R.I.P BRIAN 83 05 + crack + keygen + serial
FTP DOWNLOAD VXCADCAM V11.21 + crack + keygen + serial
FTP DOWNLOAD Walker Effects v2.1 Professional for Adobe After Effects + crack + keygen + serial
FTP DOWNLOAD Wasatch 5.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 6.1D + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1D + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1E + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.1F SP3 + crack + keygen + serial
FTP DOWNLOAD Wilcom 7.2G + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0 PET CD [ Interactive Training Tutorial for Wilcom 8 ] + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0M SP1 + crack + keygen + serial
FTP DOWNLOAD Wilcom 8.0N + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 Exploring ES 9 With WorkFlow + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 PET CD + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0 WorkFlow + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0R WITH SP3 + crack + keygen + serial
FTP DOWNLOAD Wilcom 9.0R WITH SP4 + crack + keygen + serial
FTP DOWNLOAD Wilcom Tecos Mira 2000 V 4.2 + crack + keygen + serial
FTP DOWNLOAD WinDaisy 4.5 + crack + keygen + serial
FTP DOWNLOAD Wings 2000 V4.0 + crack + keygen + serial
FTP DOWNLOAD Wings 3.0 + crack + keygen + serial
FTP DOWNLOAD Wings Xp 1.50 + crack + keygen + serial
FTP DOWNLOAD Wings Xp 1.80 + crack + keygen + serial
FTP DOWNLOAD WinLens Plus v1.1 6a + crack + keygen + serial
FTP DOWNLOAD Winner V6.1 a1 + crack + keygen + serial
FTP DOWNLOAD Wm Kat Atris v3.11 + crack + keygen + serial
FTP DOWNLOAD Wolfram MatheMatica V5.2 + crack + keygen + serial
FTP DOWNLOAD Wonderware Active Factory v9.1.000.0216 + crack + keygen + serial
FTP DOWNLOAD Wonderware Industrial SQL Server v9.0.000.0341 + crack + keygen + serial
FTP DOWNLOAD WORLEY LABS FPRIME V2.0 + crack + keygen + serial
FTP DOWNLOAD WORLEY LABSG2 V1.7 FOR LW + crack + keygen + serial
FTP DOWNLOAD W-Tools LWCAD v1.0b for LightWave Incl Keygen 2D3 BOUJOU THREE V3.0 + crack + keygen + serial
FTP DOWNLOAD Xara3D 5.02 + crack + keygen + serial
FTP DOWNLOAD X-HDL_v3.2.55 + crack + keygen + serial
FTP DOWNLOAD Xilinx EDK 8.1 (1 dvd) + crack + keygen + serial
FTP DOWNLOAD XILINX Embedded Development Kit and.XPS Ver7.1 + crack + keygen + serial
FTP DOWNLOAD XILINX Embedded Development Kit and.XPS Ver7.1 Incl Sp2 + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i + crack + keygen + serial
FTP DOWNLOAD Xilinx ISE v7.1i ISO 3CD + crack + keygen + serial
FTP DOWNLOAD ZAXWERKS 3D FLAG AE V1.0.0 + crack + keygen + serial
FTP DOWNLOAD ZAXWERKS 3D FLAG PP V1.0.0 + crack + keygen + serial
FTP DOWNLOAD Zemax-EE 2005 + crack + keygen + serial
FTP DOWNLOAD Zsk Epcwin 2.01 + crack + keygen + serial
FTP DOWNLOAD Zsk Epcwin 2.37 + crack + keygen + serial
FTP DOWNLOAD ZSK Magic Stitch II Ver 1.20.8704 + crack + keygen + serial

If you are interested in or want to get more software list ,please go:

http://Soft4all.biz

http://Soft4all.biz

http://Soft4all.biz

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Keywords: buy warez cd; free download; free software; full warez cd;
no banners; cheap warez cd; free warez cd; full retail software cd;
full iso cd; download iso; download warez; freeware; free games;
upload crack; download crack; free ftp download; fast ftp server;
serials; serial number; free warez server; fast ftp download; low price;
download link; uk; england; ireland; iceland; italy; italia; switzerland;
canada; dutch; holland; norway; spain; germany; greece; india; australia;
germany; usa; canada; china;
&#9794;&#9829;&#9792;

2006-05-31, 1:29 pm

Look i know it's off topic but has anyone heard about NULL?
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com