tool to help understand project? [closed] - project

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have big project (not mine) in java EE , at first when I looked at it there were many many classes, when I try to understand a method of class there is another class which calls method in it and again and again, It's really hard to understand the code (there is no documentation) is there any tool to help me ?

Unfortunately there aren't really any tools to help with this, the most that you can hope is that someone created a UML Doc for the code you're viewing. However, as this is not the case, the best place to start is at the main method and slowly traverse the setup. I find that it helps to keep notes and diagrams, describing (functionally) what things do and in what order they happen.

Related

Is it possible to find .m files of Foundation framework? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Would be nice to take a look on .m files of Foundation framework. Can I find them somewhere?
I found couple of similar topics here, looks like only Apple have those files, but maybe somebody know. Or maybe there is another way to understand mechanics behind.
Everything that Apple released as open source can be found here. Specifically what's available of Core Foundation is here.
Go to the opensource.apple.com,or you can directly to CoreFunction
No. It's closed source.
You can look at OpenStep source and it may give you an idea of how things might be implemented.
As others note you can look at a lot but not all CF source many implementation details will be similar at least conceptually but not always.
The point though is that you really shouldn't need to see the source implementation to use the libraries.

Where can I find information on the sixth normal form [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for information on how to implement the sixth normal form. I have searched everywhere online without success. I would like to see an example how how is implemented and designed. It would especially help if there are any books or documentation on how to implement it.
Since you've searched everywhere, you've probably searched dba.stackexchange.com too... But if you did not, see 6th normal form, Recomposition query, efficient implementation.
They refer to chapter 7 of An Introduction to Relational Database Theory (4th Ed.) by Hugh Darwen.

Ninject Interception Extension (AOP) - Good working example/tutorial? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I've been having a very difficult time finding an easy to follow tutorial or example of using the interception extension with Ninject, or ideally, a working example.
I've tried the below tutorial, but immediately had problems getting namespaces to work for the Intercept() call:
http://innovatian.com/2010/03/using-ninject-extensions-interception-part-1-the-basics/
Have a look at the unittests that come with the source code. There is an example for each feature of the extension: https://github.com/ninject/ninject.extensions.interception/tree/master/src/Ninject.Extensions.Interception.Test
I ran into this issue with the tutorial you linked as well. I was able to figure out the namespace you need to import is Ninject.Extensions.Interception.Infrastructure.Language;
Also, you need to reference either the
Ninject.Extensions.Interception.DynamicProxy or
Ninject.Extensions.Interception.LinFu implementation as well as the Ninject.Extensions.Interception package (and all dependencies). It worked like a charm after that for me.

Best Practices/Software for Object-Oriented Analysis [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I read this book:
Head First Object-Oriented Analysis and Design
Now i am looking forward to find a Software that make it easy to collect all my Ideas etc (specific Software for OOA).
At the moment i am using my Whiteboard to collect/design Ideas etc. Afterwards i am taking pictures of it and add text to our Wiki/Trac.
At school, we're using Objecteering, which is easy to use, integrated to Eclipse, but not free.
IMO blank paper is a must, but not always the easier to share and to edit.
Install mediawiki (the stuff that powers wikipedia, don't settle for anything less you will need the full feature set eventually) and put all your ideas in there. This makes it easy to refine them and to improve then as time goes by.

overview of DLR? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a high level overview of how one goes from an AST to working code via the DLR, does anyone have (a link for) something like that?
Here is a good 3 part tutorial about building a basic language from the parsing to the actual tree construction to the dlr mapping.
http://www.bitwisemag.com/2/DLR-Build-Your-Own-Language
All the current DLR specs and documents are located here:
http://dlr.codeplex.com/wikipage?title=Docs%20and%20specs&referringTitle=Documentation
This tutorial is the one that I used to learn the DLR:
http://www.dotnetguru.org/us/dlrus/DLR2.htm
It builds a custom version of javascript on the DLR.
And if all else fails you can look here:
http://myjscript.codeplex.com/sourcecontrol/changeset/view/8678?projectName=MyJScript#109043
to see the actual parser implementation, though I would probably recommend using Antlr as your parser. That's what I use, though I've got a fair bit of Antlr experience:)
Here is a link that maybe helps: http://www.codeproject.com/KB/codegen/astdlrtest.aspx