|
In Uml sequence diagram, shall we include private functions of a class?
Started by Jaswant Agarwal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd include documentation in this.
If you refactor your internal operations then everything that relies on the public API should be unaffected .
You want to be able to change internal (private) operations without affecting anything on the outside .
|
|
I have got a large bonus coming next week from work, on top of this I have almost completed two weeks of not smoking.
As a self incentive I was going to treat myself to something... I was thinking an iPad2
I have the iPhone 4S... what am I going to achieve...
Started by Nellybear on
, 12 posts
by 10 people.
Answer Snippets (Read the full thread at fccuk):
Just buy another Coupe; the money will soon disappear and you will restart smoking
Problems over Like the idea Tim..but got a company car short break away some where with sunshine I have an iPhone4 and an ipad2
The iPad is great for most of the leisure... .
|
|
Do you use any metrics to make a decision which parts of the code (classes, modules, libraries) shall be consolidated or refactored next?
Started by koschi on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't use any metrics which can be calculated automatically.... .
I use Source Monitor and routinely refactor methods when the complexity metric goes aboove around 8.0 .
We use Cyclomatic_complexity to identify the code that needs to be refactored next .
|
Ask your Facebook Friends
|
In C, shall I prefer constants over defines? I've reading a lot of code lately, and all of the examples make heavy use of defines.
Started by Helper Method on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
You....
Ease of debugging.
While C is a weakly typed languaged, using a define loses all of the type safety, which will allow the compiler to pick up problems for you .
There are several advantages:
Type safety.
Constants should be preferred over define s.
|
|
The LORD Himself shall descend with a SHOUT - HE shall ROAR from on high... The LORD Himself shall descend with a SHOUT - HE shall ROAR from on high...
Pearl Trees Of Life - Have you seen my profile lately?
Started by AWHN on
, 10 posts
by 6 people.
Answer Snippets (Read the full thread at carm):
Not sure what Peter said
But this is that which was spoken by the prophet Joel; And it shall come to pass shall prophesy, and your young men....
By AWHN The LORD Himself shall descend with a SHOUT - HE shall ROAR from on high...
|
|
Why is it when I'm documenting requirements, it always has to be phrased as "It SHALL do this..." vs. "It WILL do this...".
I know this is a odd question, but one I've never been able to find an answer to. It's always just been, "that's the way you write...
Started by scubabbl on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
You boss might say "You shall fix this bug" (it's an order)
Refer....
Contract) and as such they have inherited some of the legal conventions such as "shall" instead: "I will fix this bug" (you intend to)
"Shall" indicates obligation.
|
|
Idle for more than two weeks! all my team is idle! no more coding, just editing few lines of code, no real development, what shall I do?
if(idle){ // Please advise ... }
Started by Ahmed on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
You could
Learn a new language ( F# or something) Write a small game (it's always fun to write an ... .
Search for places that would need a little refactoring and dig into it .
If you've got no real work to do you can always improve the existing code base .
|
|
Hello This is my first time installing debian, aswell as my first experience touching a server machine. I want to install debian to my server, can be seen here , what version of debian shall I install ? Between [alpha][amd64][arm][armel][hppa][i386][ia...
Started by Crib on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
If you have an intel CPU, use this....
Most likely your CPU is x86 architecture and supports 64bit, you should use amd64, otherwise i386 is your distro of choice .
Use amd64 or i386ΕΎ amd64 is better (64 bit, can address more ram)
Depends on your hardware .
|
|
Actually I want to clear that shall i do ASP.Net 2.0 first and than move to 3.5 and 4.0 ?
OR
I start with ASP.Net 3.5/4.0 and most of ASP.Net 2.0 will also be covered in it, and the rest should i cover afterwords?
I'm concerned about the fact that, if...
Started by waheed on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're looking to start in....
Learn the CLR, the language syntaxes, and the basic methodologies applied .
You should learn 2.0, but don't spend too much time focusing on the details .
Each framework is built on the successes and failures of the last one .
|
|
Hi,
The project that we worked on consists of 3 tiers: the presentation tier, the business logic tier and data tier, I will call them here the front, mid and back.
The front is written in PHP and it communicates with the mid via web service (XML-RPC, ...
Started by yclian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Hi,
I would ask you a question: The i18n data would be handled in the back layer (data tier)? If you say yes then you got it, but if you say no then I would put it in the mid layer (busieness tier) because medium and larger projects use to interact with... .
|