I am interested in NeuVector,it is a wonderful project for cloud security,but it is difficult to read its source code.Could you recommand some blogs for analyzing its source code ? thank you
I have not finded any blog about NeuVector
Related
Any open source tool that can be used for the above mention technology.
Can somebody give me couple of options regarding this . any help in this topic would be help be achieve my goal.
Download the 'Dataloader' from http://www.dataload.com/downloads/index.html
I am working with an undocumented, 100.000 lines Delphi 7 project and one of my goals is to create a software architecture document from the source code.
Can you give me any ideas on how to approach this?
These tools work with Delphi 7 and are of great help:
the UML tool ModelMaker
the refacotoring tool ModelMaker Code Explorer
the documentation tool Documentation Insight (as of august 2012)
UML diagrams are a great way to get an overview of structure. How well that overview is, depends on how well the structure is.
For taking over projects like these, I start with some basic documentation (often in MarkDown format, as that text based format is version control friendly, and generates nice HTML).
To get that going, it helps if the original developers or/and some base documentation are still there.
Then just start to:
fix bugs / apply feature requests
use ModelMaker to get a feel for overall structure
use ModelMaker Code Explorer as a refactoring tool
use Documentation Insight to document inside the source code (you can generate help files and web pages with the pro version, see feature matrix)
update my Markdown documents with any information that does not fit in the source code documentation well
Note you can put some documentation in using Model Maker Code Explorer, but it can not be exported as help files, since it uses a different documentation format than Documentation Insight.
So I agree with the comment by Jan Doggen (thanks Jan!): just start. Make sure you have the right tools to help that going.
Try running the source code through a newer Delphi version that supports UML modeling, then let it show you how different sections of code related to each other.
Understand will do the job. Free download includes 15 days evaluation which will be more then enough for what you need to document.
I am looking for software which creates a DataGrid in ZF2. I've found odiaseo/zf2-datagrid from GitHub but I currently do not understand how to use it. Does anyone have any suggestions on where I can find a tutorial with step-by-step instructions?
Step by step installation and usage guide is already there on git.
https://github.com/odiaseo/zf2-datagrid
I don't know what type of suggestions you need. but you can find good comparison of zf2 with other frameworks. one of them is here
Have you tried using this
There are some other datagrids for zf2 as well. Try one that fits your need
see here: http://modules.zendframework.com/?query=datagrid
e.g. https://github.com/ThaDafinser/ZfcDatagrid
I've seen in a lot of documents that Mnesia has been open sourced by Ericsson, but straightforward googling didn't help me to find the repository with the code...
Is Mnesia still open-source at all?
It's part of the Erlang/OTP source code, which you can get from github. You can browse it here.
Guys, I just started learning erlang ... and since I'm a java programmer, I'm using eclipse ... I downloaded erlide already ... but now is looking for any tutorial in the net on how to use erlide to create a simple erlang project. Anyone knows where could I get it?
Thanks in advance.
Bromo
Not erlide specific, but good to get used to the OTP project structure and intricacies:
http://20bits.com/articles/erlang-a-generic-server-tutorial/
Not sure if this guide is accurate, but the other stuff in the blog post was good: http://myadventuresincoding.wordpress.com/2009/02/11/erlang-getting-started-and-using-eclipse/