The tag has no wiki summary.

learn more… | top users | synonyms (1)

-4
votes
0answers
26 views

Has anyone published a productivity study comparing software development on computers with 3GB of RAM vs 8GB of RAM or something similar? [closed]

If this is not the correct site for posting this question, please direct me to the correct website. I need to justify an upgrade from Windows 7 32-bit to Windows 7 64-bit with 8gb of RAM or more. ...
-1
votes
1answer
27 views

Programming languages most mnc's ask at the time of campus recruitment [closed]

I am a beginer..and just getting ready for b.tech cse and i want to know what are the main programming languages which multinational companies ask while at the time of campus recuitment?
1
vote
1answer
113 views

Could someone explain the speed difference between the following functions?

The first function is a naive binary search implementation to find the square root of a number: def sqrt1(x): if x < 0: raise ValueError(x) if x > 0: if x < 1: ...
0
votes
1answer
57 views

How to document a fully developed system?

I have asked to study a fully developed system. I already understand how it works but I am having a hard time on documenting it. I want a possible client may easily understand my explanation, even ...
0
votes
0answers
62 views

Proper steps of analyzing a system [closed]

For so long I haven't done programming. Now I am asked to study an existing system. I already understand how the system works, but I want to know how to properly document it. Is there such steps ...
1
vote
4answers
644 views

Basic Programs for Case Study [closed]

I have been studying programming for 1 year and 6 months now, but still, there are things I want to add on my knowledge. I am making a case study in programming, especially for Java. Can you give me ...
5
votes
22answers
1k views

What are the best resources for designing user interfaces? [closed]

Specifically, what are some GUI resources on the web based on case studies that suggest best practices on a scientific basis rather than a subjective one?
70
votes
11answers
14k views

Where is Erlang used and why? [closed]

I would like to know a list of the most common application/websites/solutions where Erlang is used, successfully or not. Explaining why it is used into a specific solution instead of others ...
4
votes
4answers
8k views

Successful projects using the Waterfall model?

I'm trying to find information on projects which used the Waterfall software development model, and benefited from it. Unfortunately, I can't seem to find anything. Does anyone know of anywhere I can ...
3
votes
4answers
575 views

Where have you used gSOAP?

Can you give examples how you used gSOAP and how well it was integrated in your existing architecture? Have you found development bottlenecks with gSOAP?
4
votes
3answers
113 views

What's the case that requires nested transaction?

Even a transaction is nested, it won't be updated until outmost transaction commits. So what's the meaning of nested transaction and what's the specific situation that requires the feature?
0
votes
1answer
1k views

Case Study Scenarios to Practice Oracle SQL and PLSQL?

Are there any good websites available with Situational Examples of real world,which use some or the Other SQL concepts in Oracle or any other Database. Main Requirement of my question is: To practice ...
0
votes
0answers
29 views

Is there a case study on refactoring an existing .NET app to use interfaces? [duplicate]

Possible Duplicate: Case study on refactoring an existing .NET app to use interfaces? I am looking for a case study or tutorial on how to take an existing .NET app which doesn't use ...
-1
votes
1answer
70 views

Case study on refactoring an existing .NET app to use interfaces? [closed]

I am looking for a case study or tutorial on how to take an existing .NET app which doesn't use interfaces and refactor it to using interfacing. The before case where programming was against ...
1
vote
2answers
40 views

Studies involving the looks of software

Have their been any studies related to the importance of how good a software looks in terms of perception or saleability? I have a feeling this is much more important then people give it credit for, ...
-2
votes
1answer
612 views

Case Study in java

Could anyone provide me information where I can find the case study for java coding and design practice. Basically looking for a case studies which resemble to the real time application like pet ...
0
votes
1answer
54 views

Looking for discussion or literature on WordPress as a software engineering project

Over the last few months I've had a gig working on a modified WordPress installation. My initial reaction to the codebase was disdain, one that I suspect many web application developers might share: ...
0
votes
1answer
304 views

PostgreSQL Full Text Search case study?

Is there any case study available of any project that uses PostgreSQL 8.3+ Full Text Search on a large amount of data?
4
votes
2answers
74 views

Empirical Data on Refactoring?

Are there any empirical studies that show the impact of refactoring (or lack of refactoring) on a development team's productivity? (NOTE: I'm only looking for empirical data--From my own experience, ...
2
votes
1answer
843 views

Studies on the impact of well-designed websites on business

Are there any studies on the impact of websites in general or well-designed websites for businesses? By well-designed, I mean highly functional, accessible, and usable websites - along the lines of ...