Reverse engineer open source project looking for methods [closed] - open-source

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
i have open source project done in c++ , it is big and has no documentation
now to "only" to debug it and understand its flow it is possible but very hard.
im looking for well define methods and ways of work , to make this process easier.
like some kind of tools that can help me to draw the objects and class's relationship.
UPDATE
well after digging some more , i know the proper name for this is :
Sequence Diagrams , so i looking how to get Sequence Diagrams out of c++ code
it have to be free tools

here you can find your answer, System Sequence Diagram maybe helps you. if answer not enough tell me to say more details :)
http://www.devcurry.com/2010/03/generate-sequence-diagrams-in-visual.html
and also this link is useful too:
http://weblogs.asp.net/gunnarpeipman/archive/2009/11/20/visual-studio-2010-generating-sequence-diagrams-on-the-fly.aspx

Understand for C++ from Scientific Toolworks has a good reputation. I have no specific experience with it.

Related

A Good JSON Database Library? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am using Node.js...
Personally, I'm not a fan of SQL. What I do like is JSON, and I would like to be able to store my server data as JSON.
Even though it's possible to just JSON.parse and .stringify the process, I get the impression that doing this is a bad idea for large-scale applications.
Also, it would be nice if the database library could be just a library, and not a server like with MySQL.
Any suggestions on where to find said library would be much appreciated.
Availability of said library on NPM would be brilliant.
I use low db befor for small nodejs projects. Its easy to use. See documentation.
Have fun.
https://www.npmjs.com/package/lowdb

Where can I get detailed understanding of mysql-server's codebase? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there any resource of how mysql's source code (https://github.com/mysql/mysql-server) works?
Any flow diagrams related to code's folders and files.
The official docs includes a section called MySQL Internals. There are sections included about navigating the source tree and what is where.
If you can look past his blatant towing of the company line (e.g. his apparent claims that the "real" MySQL will always be better and more awesome than MariaDB or Percona, because... Oracle!) and that he seems to imply that if you make any change to the source, you have to give those changes to Oracle and should probably send them a bunch of money, too... then there is some good material to be found in a book called Expert MySQL, which includes a decent low-level view of how it works and code snippets walking you through some source code tweaks to add new functionality.
But, there is a large amount of in-line documentation embedded in the code itself.
how "source code works"? it is in sources i guess
https://en.wikipedia.org/wiki/C_(programming_language)
https://en.wikipedia.org/wiki/C%2B%2B
https://www.google.ru/search?q=flow+diagram+mysql&newwindow=1&safe=off&espv=2&biw=1600&bih=852&tbm=isch&tbo=u&source=univ&sa=X&ved=0CBsQsARqFQoTCPXHzsTD88cCFcYlcgodYHME-w&dpr=0.9#imgrc=MrlmbXUK6VPJjM%3A

are there any alternatives to yUML [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for an alternatives to yUML, preferably open source.
Sure yUML is great and I really like it, but I would like to be able to extend it.
I'm also interested in other services in the same direction (diagram generation), but I'm not looking for any (UML)desktop tools.
Some suggestions of textual modeling tools. For instance, take a look at PlantUML
Scruffy can draw some yUML diagrams.
Scruffy-Server is a newly made web server frontend for Scruffy which has a rendering and syntax almost identical to yUML.
At the moment it doesn't have the PDF/Json/SVG(or PS) export options, but those might be coming. On the other hand it is very fast and has a lean interface.
PS: I might a little be biased as I made it.
Perhaps take a look at jsUML2. It doesn't provide a textual syntax for specifying diagram - it provides a js-based api instead. However the api is very easy to use and it's open source so extensible. They have a demo app built using it here.
hth.
Some years ago I've developed an open source alternative based on Graphviz.
It's basic and only work for relationship diagrams, but it can be extended.
The output look is very similar to yUML.
Here's the link: http://web.fi.uba.ar/~ssantisi/works/glumly/

Where could I find UML diagrams of an open source project? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm going to start a project for my software engineering course, and I have to do a relatively hard one, something like a browser. Of course I'm not going to build a complete browser from scratch in 4 monthes, but in the first phases I have to give my analyze output to the TA. This includes use case diagrams, sequence diagrams and other UML diagrams.
since I've never done a project like this, I'm looking for diagrams of an open source project which I can get some ideas from them. Where could I find such open source projects that give me these diagrams?
If you just want to learn how the UML of a project is laid out, then one thing you could do is checkout any open source project written C#/Java/VB, import it to this tool called Altova Umodel. They have free trial version but the software itself is sold commercially.
Hope that helps..

Is there a standard template for AS3 documentation? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I've seen it used a couple places:
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/
http://developer.yahoo.com/flash/astra-flash/classreference/
Is this just a coincidence or is it somewhere I can grab? I'd love to use it for a new project I'm working on.
Thanks!
Take a look at asdoc. It's what the documentation is automatically generated with.
The most used standard for documenting ActionScript is javadoc, which is a pool of tags to comment your code. Theese information is extracted and turned into some sort of documentation, eg html pages.
To extract theese information there is a number of tools available. ASDoc is a command line tool. Another tool is Ortelius, that comes with a simple GUI that might be a little less "scary" for GUI junkies like me.