active questions tagged software-engineering - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:10:54Zhttp://stackoverflow.com/feeds/tag/software-engineeringhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1772408/running-multiple-sites-from-the-same-rails-codebase1Running multiple sites from the same rails codebase?nicholaides2009-11-20T18:30:39Z2009-11-26T19:45:43Z
<p>I have a client that wants to take their Rails app that has been successful in one niche and apply it to another similar niche. This new instance of the app is going to start out very similar: all the same functionality, different logo and colors. However, if the new site is successful, it will inevitably need significant customizations that shouldn't be applied to the original site. At the same time, if bugs are fixed and improvements are made to one app, both apps should be able to share those improvements. </p>
<p>Can anyone suggest strategies or resources that address this issue? How do I keep changes that apply to both apps from taking significantly longer to test and implement?</p>
<p>Yes, I know the answer involves SCM, plugins, gems, and Rails engines. These tools will and are being used. but I want to know <em>when</em> and <em>how</em> to use these tools towards solving this problem.</p>
<p>Links are also welcome.</p>
<p><hr></p>
<p>This question is not the same as:</p>
<p><a href="http://stackoverflow.com/questions/1737019/multiple-websites-running-on-same-codebase">Multiple websites running on same codebase?</a>
In my question, I'm not running the exact same app with different settings.</p>
<p><a href="http://stackoverflow.com/questions/1678327/how-do-you-sync-changes-between-multiple-codebases">How do you sync changes between multiple codebases?</a> I'm asking a similar question, but I'm specifically asking about Rails apps.</p>
http://stackoverflow.com/questions/1800272/modifying-qt-core-components-widgets-best-practices0Modifying Qt core components/widgets, best practices?EightyEight2009-11-25T22:08:37Z2009-11-26T14:53:08Z
<p>Hello everyone,</p>
<p>I'm trying to enhance Qt's QPrintPreviewWidget by allowing it to display page numbers (in the footer somewhere). Unfortunately, I can't quite figure out how to go about it without hacking up Qt's source. I see a great spot for this additional code (in qpaintengine_preview.cpp, in newPage() method) but that means I'm going to have to recompile the whole of Qt (I got a binary build from Trolltech). Furthermore, if I decide to run an app that uses this functionality on someone else's box, I'm going to have to recompile there as well (say if it's a different arch). </p>
<p>Are there any other cleaner ways? </p>
<p>Thanks</p>
http://stackoverflow.com/questions/347584/why-is-software-quality-so-problematic43Why is software quality so problematic?Yuval A2008-12-07T13:40:35Z2009-11-26T09:42:46Z
<p>Even when viewing the subject in the most objective way possible, it is clear that software, as a product, generally suffers from low quality.</p>
<p>Take for example a house built from scratch. Usually, the house will function as it is supposed to. It will stand for many years to come, the roof will support heavy weather conditions, the doors and the windows will do their job, the foundations will not collapse even when the house is fully populated. Sure, minor problemsdo occur, like a leaking faucet or a bad paint job, but these are not critical.</p>
<p>Software, on the other hand is much more susceptible to suffer from bad quality: unexpected crashes, erroneous behavior, miscellaneous bugs, etc. Sure, there are many software projects and products which show high quality and are very reliable. But lots of software products do not fall in this category. Take into consideration paradigms like TDD which its popularity is on the rise in the past few years.</p>
<p>Why is this? Why do people have to fear that their software will not work or crash? (Do you walk into a house fearing its foundations will collapse?) Why is software - subjectively - so full of bugs?</p>
<p><strong>Possible reasons:</strong></p>
<ul>
<li>Modern software engineering exists for only a few decades, a small time period compared to other forms of engineering/production.</li>
<li>Software is very complicated with layers upon layers of complexity, integrating them all is not trivial.</li>
<li>Software development is relatively easy to start with, anyone can write a simple program on his PC, which leads to amateur software leaking into the market.</li>
<li>Tight budgets and timeframes do not allow complete and high quality development and extensive testing.</li>
</ul>
<p>How do you explain this issue, and do you see software quality advancing in the near future?</p>
http://stackoverflow.com/questions/874762/is-there-a-maximum-effective-team-size-for-rational-unified-process1Is there a maximum effective team size for Rational Unified Process?Thomas Owens2009-05-17T14:47:49Z2009-11-25T08:43:40Z
<p>I'm aware that the Rational Unified Process (RUP) scales depending on the team and project. I'm also aware of the general outlines provided in The Mythical Man-Month by Fred Brooks regarding team size and structure. However, is there a particular team size in which RUP begins to break down in effectiveness?</p>
http://stackoverflow.com/questions/1634221/software-development-methodologies-studies4Software Development Methodologies StudiesSeb2009-10-27T23:13:20Z2009-11-25T07:57:00Z
<p>Hello everybody,</p>
<p>I spent a couple of hours to find any up-to-date figures regarding the share of software development methodologies such as Waterfall, RUP or Scrum but could not find any useful information. Is there anybody who knows about such surveys? The corresponding document does not need to be freely available, but as a matter of course I would appreciate it.</p>
<p>Thank you very much!
Seb</p>
http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering5Recommended Books for Software EngineeringRonnie Liew2008-09-25T05:12:15Z2009-11-24T18:05:35Z
<p>What would be a recommended book for Software Engineering? </p>
<p>The book should be covering the various stages involved in software development process, covering topics such as:</p>
<ul>
<li>requirement gathering</li>
<li>use cases</li>
<li>domain model</li>
<li>functional specifications</li>
<li>architecture design</li>
<li>testing</li>
<li>deployment</li>
</ul>
<p>It should be a book that would help someone to understand the various processes, include examples of good documentation of <em>use cases</em>, <em>domain modeling</em>, <em>architecture design</em> etc., explain about how the various steps help in the development of the software. </p>
<p>Not so much on the code writing or the people-management aspect, more on the documentation, design stages, planning prior to actual coding. </p>
<p>Targeted audience should be a technical lead/architect/manager.</p>
http://stackoverflow.com/questions/1777392/good-books-on-software-engineering-for-web-apps1Good books on Software Engineering for web apps?heyjude2009-11-22T01:03:52Z2009-11-24T15:25:20Z
<p>Hi, could you guys recommend good Software Engineering books for web apps?</p>
<p>[Edit]
Thank you for the replies! I forgot to mention that I'm aiming to develop in PHP. Keep those suggestions coming and thanks a bunch! :)</p>
http://stackoverflow.com/questions/1787781/tools-for-software-architecture-and-design0Tools for software architecture and designkarthi2009-11-24T04:26:49Z2009-11-24T11:28:26Z
<p>I want to know if there exist different tools to develop software architecture and software design.. If so how do they differ and can you please mention few tools for software design and software architecture?</p>
http://stackoverflow.com/questions/1789126/best-practices-for-improving-software-quality2Best Practices for improving Software Quality Chris Jones2009-11-24T10:13:03Z2009-11-24T11:15:17Z
<p>We are looking for methods to improve our internal processes when developing software.</p>
<p>We have already adopted TDD contiguous integration and Agile. Any obscure features of visual studio or TFS?</p>
<p>All suggestions welcome.</p>
http://stackoverflow.com/questions/1739142/from-a-management-pov-how-much-is-a-code-review-worth8From a Management POV: How much is a code review worth?Jorge Córdoba2009-11-15T22:46:39Z2009-11-23T20:26:36Z
<p>It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.</p>
<p>I've worked hand to hand in some code with some of my coworkers and, specially with some of them, code was cleaner and a lot better. Reviewing other people code is not the same thing. You're not familiar with the code, you haven't made the vast majority of the design decisions and it can be quite frustrating until you really understand what's going on... even for the best written (non trivial) code.</p>
<p>I tend to always say that coding, no matter how fun it is, is part of a business for money so my question is: Is it really worth it? I would have two developers just to get a level of excellence that might as well be achieved by a little more time with just one of them. Have you found it useful anytime?</p>
<p><strong>Note:</strong> Altough I'm mostly a developer, I ask this from the manager point of view, from the "resource" (as in you're all just numbers) point of view :P</p>
http://stackoverflow.com/questions/1773850/constants-in-matlab5Constants in MATLABBenjamin Oakes2009-11-20T23:24:16Z2009-11-23T17:18:27Z
<p>I've come into ownership of a bunch of Matlab code and have noticed a bunch of "magic numbers" scattered about the code. Typically, I like to make those constants in languages like C, Ruby, PHP, etc. When googling this problem, I found that the "official" way of having constants is to define functions that return the constant value. Seems kludgey, especially because Matlab can be finicky when allowing more than one function per file.</p>
<p>Is this really the best option?</p>
<p>I'm tempted to use / make something like the C Preprocessor to do this for me. (I found that something called <code>mpp</code> was made by someone else in a similar predicament, but it looks abandoned. The code doesn't compile, and I'm not sure if it would meet my needs.)</p>
http://stackoverflow.com/questions/1735186/are-programming-languages-of-today-more-productive-than-those-from-decades-ago2Are programming languages of today more productive than those from decades ago?Devin Bayer2009-11-14T18:51:27Z2009-11-22T23:40:55Z
<p>Variations of this question have been asked before and sometimes <a href="http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years">it's even taken for granted</a>, so let me be very clear exactly what I'm looking for. A lot has happened to has made programming easier, but I'm not sure if the languages are actually better. For evidence we have <a href="http://www.cis.udel.edu/~silber/470STUFF/article.pdf" rel="nofollow">a study</a>, showing TCL comparable to Python. And there is the <a href="http://www.paulgraham.com/avg.html" rel="nofollow">famous story from Paul Graham</a>, claiming their success is due to Lisp.</p>
<p>We do have better libraries, IDEs, static analysis, search engines, and processors, but <strong>assume everything except the language is equal.</strong> Compared to modern languages (like Ruby, C#, D, Go, ...), <strong>would you be less productive in a good, but "obsolete" language?</strong></p>
<p>Evidence, preferably more than anecdotal, is greatly appreciated. Thanks</p>
http://stackoverflow.com/questions/1778953/link-to-studies-that-show-defects-are-cheaper-to-fix-during-requirements-and-desi1Link to Studies that Show Defects are Cheaper to Fix During Requirements and DesignJeff2009-11-22T15:04:06Z2009-11-22T15:58:49Z
<p>I've seen lots of references to such studies, but can't find any links right now.</p>
http://stackoverflow.com/questions/1536122/savings-realized-by-adopting-agile-scrum-and-xp-over-waterfall2Savings realized by adopting Agile (Scrum and XP) over WaterfallKashif Awan2009-10-08T07:21:34Z2009-11-21T20:22:26Z
<p>I was wondering if someone can share their exeprience or point to a study on cost savings realized by adopting Agile (using Srum and XP), over traditional Waterfall. </p>
http://stackoverflow.com/questions/1766757/object-decomposition-depth-in-java0Object decomposition depth in Javacrazybyte2009-11-19T21:39:47Z2009-11-19T22:30:26Z
<p>I'm wondering about the following issue: How deep should one go when designing an application in decomposing the working entities into objects?</p>
<p>What I mean could be described better by the following example. </p>
<p>Lets consider that I'm designing an application that is used to manage books.
For that the basic model would be the book. So at the bottom of my application I would create a Book class that would have a number of fields (string) for title, authors name, book category, printing date.</p>
<p>Considering this and that perhaps the printing date and category could be somewhat independent entities/concepts should I create a class for each one with all the bells and whistles or could I use lets say an enumeration (in the case of category) and a string (in the case of printing date).</p>
<p>One argument with what I could come up to argue for the creation of separate classes would be that this way I can modify and validate the data related to them more easily but in the same time it could generate performance issues. </p>
<p>Which one would be the best practices? What factor decides the depth of entity decomposition in such cases (when common sense or brain power gives up)?
Any thoughts? Thank you!</p>
<p>P.S. The example is only for explanation purposes and I hope it describes clearly enough what I want to ask. </p>
http://stackoverflow.com/questions/1741484/using-sonatype-nexus-in-local-network2Using Sonatype nexus in local networkAndreas_D2009-11-16T11:02:16Z2009-11-18T14:17:29Z
<p>I've successfully created a small software engineering environment (SEE) for Java applications that is - amongst other tools - based on maven and nexus. My actual problem is - not a real surprise - that nexus usually requires access to the internet to to get the requested artifacts from the central repositories. But the SEE has to be strictly off-line and there's no way to change it (.. security reasons).</p>
<p>My first quick solution was to mirror the nexus/maven installation on machine, that was connected to the internet, run some standard pom's to populate the mirrored nexus and migrate the cache via CD-ROM to the target system. Pretty ugly. I'm not really looking forward to adapt that process to get updates for artifacts or new ones. In fact, we now usually just import the libraries we need and create new artifacts (with nexus) instead using the official ones from central and others.</p>
<p>Has anybody faced the same challenge and found a more clever and efficient approach?</p>
<p><strong>Edit</strong></p>
<p>Thanks for all the answers, I think I have to be more precise on the actual problem and the solution I'm thinking of at the moment: I think I have to create, populate and synchronise a private 'central' repository, based on central and other repos on the internet, or exactly: two identical repositories. One conneceted to the internet the other on the local network. Then I can keep the internet connected repository 'up-to-date' and copy the changes via DVD to the local repository - which is visible for Nexus.</p>
<p>Would it work? Is there documentation available on how to setup something like 'central' on a private server, is there a mechanism to synchronize selected artifacts?</p>
<p>(didn't want to post my thoughts at the beginning because I hoped to get totally different ideas)</p>
http://stackoverflow.com/questions/1481854/cmm-practices-or-project-management-templates1CMM Practices or Project Management Templatesunknown (google)2009-09-26T18:31:38Z2009-11-16T23:13:33Z
<p>Our company is a startup and we would like to implement all standard CMM or Project management templates, wherever possible, in our project. Where could I get these standard templates?</p>
http://stackoverflow.com/questions/385511/what-is-the-relation-between-scrum-agile-and-rup1What is the relation between scrum agile and RUP?Geo2008-12-22T03:56:57Z2009-11-15T20:18:44Z
<p><a href="http://www-128.ibm.com/developerworks/rational/library/feb05/krebs/" rel="nofollow">RUP in the dialogue with Scrum</a></p>
<p>There is a relation between Agile and RUP. Actually I though that Agile development was a type of RUP. In the article from IBM above you can see that they are fitting the model to RUP. </p>
<p>Does someone has any <strong>practical</strong> explanation of the relation between these three interesting concepts.</p>
http://stackoverflow.com/questions/1732376/is-nesting-namespaces-an-overkill1Is nesting namespaces an overkill?Piku2009-11-13T22:45:29Z2009-11-14T06:40:22Z
<p>I'm writing a C++ program that has a large number of classes. In my head I can visualise them as distinct collections. For example there's a collection of classes for reading and storing config data, and another collection for drawing a user interface with various widgets.</p>
<p>Each of those collections could be neatly stored inside separate namespaces, which seems sensible. The config part has a "screen" class, and the GUI part also has a "screen" class, but they are different to each other. I could rename one "gui_screen" and the other "config_screen", but that's the point of a namespace isn't it? To remove these prefixes we invent to separate things.</p>
<p>Part of me then thinks it'd be tidy to store those namespaces inside one main one so that none of my code can interfere with the namespaces of anything else. And I suppose it might also make the code more readable too.</p>
<p>Or am I just making overly complex hierarchies of data for no reason at all?</p>
http://stackoverflow.com/questions/1732827/project-and-develop-a-framework-class-library1project and develop a framework / class libraryfrabiacca2009-11-14T00:51:52Z2009-11-14T02:34:23Z
<p>hi there,
me and another guys would like to develop a framework. Our mission is to create something abstract and general enough to let us develop smartly a set of different web application (with the same core idea).</p>
<p>I'd like to know if there's a docs i can read, to better understand which should be the way to project a framework (ie: which layered solutions i'd choose and so on)</p>
<p>thx everyone</p>
http://stackoverflow.com/questions/1657977/what-is-form-and-report-design-in-software-engineering-4What is 'Form and Report Design' in Software Engineering?keyur2009-11-01T18:53:41Z2009-11-12T03:59:03Z
<p>What is 'Form and Report Design' in Software Engineering?</p>
http://stackoverflow.com/questions/1658045/creating-spec-documents-1Creating spec documents [closed]keyur2009-11-01T19:16:45Z2009-11-12T03:58:16Z
<p>I need to create a program specification document for an application that generates invoices for a clothes retailer. Do you have any suggestion on how to start creating this spec document?</p>
http://stackoverflow.com/questions/1180543/what-is-continuous-implementation2What is "Continuous Implementation"?Peter Mortensen2009-07-24T22:45:08Z2009-11-11T23:29:23Z
<p>Is "Continuous Implementation" the name of a software
development methodology? If so, what is it exactly?</p>
<p>Do you have experience using it?</p>
<p>Note that I know what <a href="http://en.wikipedia.org/wiki/Continuous%5Fintegration" rel="nofollow">continuous integration</a> is, but not continuous implementation.</p>
<p>Background: today I learned (second hand) of a company that
uses "Continuous Implementation" in the context of their
software development. Is it formally defined or is it part
of some agile software development methodology?</p>
<p>The best I could find was this paper in the European Journal of
Information Systems:</p>
<blockquote>
<p><a href="http://www.ingentaconnect.com/content/pal/0960085x/2006/00000015/00000002/art00005" rel="nofollow">Agility Through Scenario Development And Continuous Implementation</a></p>
<p>"... a business and IS/IT initiative at Volvo ...
development and implementation of an agile aftermarket
supply chain. ... to create a platform, Web services, and
a Web portal for selling spare parts over the Internet. "</p>
</blockquote>
http://stackoverflow.com/questions/1708253/well-established-scientific-truths-about-software-engineering1Well-established scientific truths about software engineering [closed]cmdev2009-11-10T14:12:22Z2009-11-11T12:40:42Z
<blockquote>
<p><strong>Exact Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming">Laws of Computer Science and Programming</a> </p>
</blockquote>
<p>Are you aware of any well-established scientific truths about software engineering?</p>
http://stackoverflow.com/questions/1618969/java-when-to-make-methods-static-v-instance10Java: When to make methods static v. instanceRosarch2009-10-24T20:20:04Z2009-11-11T08:39:45Z
<p>I have a <code>Gene</code> class that keeps track of genes. <code>Gene</code> has a method for calculating the distance between two genes. Are there any reasons to make it static?</p>
<p>Which is better?</p>
<p><code>public static int geneDistance(Gene g0, Gene g1)</code></p>
<p>or</p>
<p><code>public int geneDistance(Gene other)</code></p>
<p>Arguments for/against making it static? I understand what it means for a member to be static, I'm just interested in its implications for maximum cleanliness/efficiency/etc.</p>
<p>I repeat the same pattern for returning trimmed versions of two genes, finding matches between genes, finding matches between animals (which contain collections of genes), etc.</p>
http://stackoverflow.com/questions/820815/what-types-of-specific-development-patterns-support-agile-development1What types of specific development patterns support agile development?Boydski2009-05-04T16:31:47Z2009-11-10T18:27:34Z
<p>And the converse: "What type of specific development patterns DO NOT support agile development?</p>
<p>To be more concise: I'm not looking for "methodologies" or "theory". I'm talking about specific patterns for writing code in the itterative process that is agile.</p>
<p>Obviously, some patterns for development are more taylored to Waterfall. Others, for agile.</p>
<p>I'm looking for specifics revolving around your own personal experiences writing code. That's why this isn't subjective.</p>
http://stackoverflow.com/questions/1708078/always-using-custom-data-types2Always using custom data typesMartin2009-11-10T13:47:19Z2009-11-10T14:00:16Z
<p>I'm wondering whether it's insane to (almost) always use custom data types in C# rather than relying on built in types such as System.Int32 and System.String.</p>
<p>For instance, to represent a persons First name, the idea is to use a data type called PersonFirstName rather than System.String (of course, the PersonFirstName data type would have to contain a System.String). Another example is to have a PersonID class which represents the database identifier for the person, rather than to have a System.Int32.</p>
<p>There would be some benefits here:</p>
<ul>
<li><p>Today, if a function takes an int as parameter, it's easy to pass in an ID of a Company object rather than the ID of an Person object, because both are of types int. If the function took a CompanyID, I would get a compilation error if I tried to pass in a PersonID.</p></li>
<li><p>If I want to change the database column data type from int to uniqueidentifier for a Person, I would only have to make the change in the PersonID class. Today, I would have to make changes in all places which takes an Int and is supposed to represent a company.</p></li>
<li><p>It may be easier to implement validation in the right places. " " may never be a correct first name, which PersonFirstName can take care of.</p></li>
</ul>
<p>Yes, I would have to write more constructors. I could implement implicit overloading in these to make them easy to work with though.</p>
<p>Is this madness?</p>
http://stackoverflow.com/questions/933353/requirements-testing2Requirements testingalamodey2009-06-01T02:20:51Z2009-11-09T17:38:20Z
<p>I've just finished the implementation of my software system and now I have to document whether it has satisfied its requirements. What sort of information should I include and how should I lay it out?</p>
<p>My initial functional and non-functional requirements was in a two-column table and looked something like this:</p>
<ul>
<li>FN-01 The system should allow users
to send private messages to each
other. </li>
<li>NFN-03 The setup/configuration
form should contain sensible default
values for most fields.</li>
</ul>
http://stackoverflow.com/questions/1567837/how-to-keep-up-to-date-on-latest-computer-science6How to keep up to date on latest computer science?reccles2009-10-14T17:37:22Z2009-11-09T17:04:41Z
<p>I was re-reading some of my <a href="http://www.amazon.com/exec/obidos/ISBN=0321193679/stevemcconnelconA/" rel="nofollow">Steve McConnell books</a> and this quote got me thinking 'scientists build in order to learn, engineers learn in order to build'. On the vein of 'learning in order to build' I was wondering:</p>
<p><strong>How are the software engineers keeping up to date on the latest technologies and research?</strong></p>
<p>It would seem that publications through the ACM or IEEE are the main avenue of publication for researchers, but given the closed nature of this information does anyone actually use it outside of the research community? This form of research is also very new, and very risky, so an additional question is <strong>where do you draw the line in risk?</strong> Is it worth looking at bleeding edge research or better to wait until it makes it to paperback.</p>
<p><strong>EDIT</strong>: I'm not a total noob. I've just noticed that (some) older developers are completely unaware of new technologies and can even be antagonistic to new tech. A healthy bit of skepticism is always useful, but willful ignorance is dangerous. In an effort to prevent this from happening to myself, I'm interested in how developers are staying up to date on new trends. </p>
http://stackoverflow.com/questions/1699683/best-way-to-manage-projects2Best way to manage projectsMinimeDJ2009-11-09T08:13:53Z2009-11-09T15:22:23Z
<p>What is a best way to organize many software development projects, interaction with clients, project documentation, sources, emails, knowledge, time tracking, issue and features tracking, support for releases and versions etc. for a small company?</p>
<p>For me (and I believe for many others) it is obvious that it must be some sort of web-based solutions. It would be great if it could provide an interface for iPhone (if not, it is also OK).</p>
<p>Important thing: it must be hosted on our servers, so PHP + MySQL is the best platform so far.</p>
<p>I have found the following system to consider:</p>
<ul>
<li><a href="http://www.activecollab.com/" rel="nofollow">http://www.activecollab.com/</a> (but I didn't found issue tracking as well as support for releases and versions, so it is not the best match for software development company)</li>
<li><a href="http://www.mantisbt.org/" rel="nofollow">http://www.mantisbt.org/</a> (Great tool, but no project planing...)</li>
<li><a href="http://www.twproject.com/" rel="nofollow">http://www.twproject.com/</a> (didn't try yet, but it has very strange interface)</li>
</ul>
<p>But none of them is a 100% solution for me.</p>
<p>It also should (but not must) support SCRUM</p>
<p>We have about 25 people in our team and about 50 from client side. At once we run about 3-7 projects (some in dev. phase, some in support).</p>
<p>So, my questions: does anybody knows any good web-based system that gives everything software development company needs? I believe this information will be useful for many of us.</p>