Tools for measuring coupling and cohesion [closed] - coupling

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Do you know of any tools that help us measure coupling and cohesion in the system?

You can try static code analisys tools
Depending on the language you use you can use Tools to get several information from static analisys.
Personally I use free tool Source Monitor to collect information such as Number of calls and Methods/Class that shows you something related to coupling and cohesion.
You can use Quality Check Tools to (FxCop, Checkstyle, PMD, etc.).

Related

How do I create a PSP emulator? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I know that I need to know at least C and Assembly. In your own opinion what else does one need to know apart from knowing how to program in C and Assembly efficiently? Are there any books you can suggest to get me started? I also read that you need to know about the hardware architecture of the platform you are emulating. Would you also recommend the books listed here?
For experts only
You would have to know all the inner workings and hardware details of PSP, which are business secrets of Sony and therefore not published. The way most emulators are made is reverse engineering, a process in which the device itself is disassembled and its inner workings are studied. That includes analyzing the chips thoroughly, reading the contents of ROM chips and sometimes even deciphering encrypted data. Full analysis usually requires specialized equipment and years of engineering experience.

Better Addressbook dialog? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using the extension library addressbook dialog. The search is pretty horrible for a large company like ours. Is there a better addressbook dialog out there? I'd like to avoid writing my own right now.
Bruce you might need to code it yourself. It seems development doesn't see a need for being mores creative or they feel enhanced dialogues are to specific. Check this idea for inspiration.

How to make a decent UI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Please I need help on how to create a nice looking UI. Now I suppose that people looking at this question have an android, if so go to the market. Download a app called, "Quick Settings". It has a great UI and I want to learn how to make mine look as good as that one, if you have any kind of help, it would be appreciated. Thanks.
A quick Google search brings up lots of good tips, tricks and tools for designing Android UIs. Here are a few:
http://www.droiddraw.org/
http://www.androiduipatterns.com/
http://phandroid.com/2011/05/11/10-tips-for-android-ui-design/

Const compiler/runtime [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How are treated constants in various languages/compilers? They take up space in RAM in runtime or are replaced with their values ​​at compile time?
A compiler is free to go either way. The typical way to handle this is to use scalars directly while keeping larger objects like arrays in memory.
In addition, if you build an embedded system, they typically go into read-only memory like flash rather than RAM.

Programming World [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
In this programming world of ours we see C sharp and Java on the top. But these have rich library of thousand classes and function which become more richer with their new editions. Can we have a programming language which can give us more creativity and innovation inspite of this ever increasing library based languages ?
There are plenty of such languages: Ruby, Python, JavaScript, Erlang and plenty of others. You just need to stop trolling and do your homework.
Assembly. Can't get much more free then that.
In fact any decent library or framework is a language itself. A domain specific language. Of course you could have all the same functionality in form of a variety of "proper" DSLs, but it won't be that much different from the current state.

Resources