Tagged Questions
Architecture encompasses the process, artifacts and high-level structure of a solution.
110
votes
14answers
21k views
INotifyPropertyChanged vs. DependencyProperty in ViewModel
When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use ...
89
votes
10answers
30k views
Component based game engine design
I have been looking at game engine design (specifically focused on 2d game engines, but also applicable to 3d games), and am interested in some information on how to go about it. I have heard that ...
86
votes
4answers
2k views
how to achieve 4 flops per cycle
How can the theoretical peak performance of 4 floating point operations (double precision) per cycle be achieved on a modern x86-64 Intel cpu?
As far as I understand does it take 3 cycles for an sse ...
77
votes
19answers
16k views
C state-machine design
I am crafting a small project in mixed C and C++. I am building one small-ish state-machine at the heart of one of my worker thread.
I was wondering if you gurus on SO would share your state-machine ...
77
votes
16answers
8k views
Websites like projecteuler.net
Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical.
Maybe someone knows similar sites with:
...
76
votes
30answers
3k views
Requirements Smells
We've all heard and debated about Code Smells, and occasionally you hear people talking about "design smells", so I've been thinking, why not take it one step further?
If you deal directly with ...
73
votes
10answers
3k views
Reinventing CMS
I have been working with CMS systems since before there was a term for it, and even though there are thousands of different platforms out there - some of which are pretty decent - I just can't shake ...
67
votes
9answers
6k views
Best way to allow plugins for a PHP application
I am starting a new web application in PHP and this time around I want to create something that people can extend by using a plugin interface. I am a very confident PHP developer however I have never ...
50
votes
14answers
2k views
Java getter chaining bad or good?
To prevent monster constructors and monster interfaces with oversized delegating classes, I use alot of classes that hold other objects which again hold other objects. Therefore my code looks like ...
49
votes
5answers
3k views
How is Node.js inherently faster when it still relies on Threads internally?
I just watched the following video: Introduction to Node.js and still don't understand how you get the speed benefits.
Mainly, at one point Ryan Dahl (Node.js' creator) says that Node.js is ...
49
votes
23answers
4k views
How do you design object oriented projects?
I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact.
I took an OOD ...
44
votes
15answers
2k views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get ...
44
votes
17answers
3k views
What exactly is a “Software Architect”?
I've seen a few posts that briefly touch on the subject but don't address the question directly. So please don't label this as a dup.
Having been independant/freelance for 5 years or so, and having ...
43
votes
22answers
3k views
Should application architects write code?
This is an often-asked question that has views on both side. Those in favour will argue:
To design a system for coders you must understand how to code (and be coding)
You can't design a system ...
41
votes
5answers
1k views
Exotic architectures the standard committee cares about
I know that the C++ standard leaves many aspects of the language implementation-defined just because if there is an architecture with other characteristics, it would be impossible to write a standard ...
36
votes
9answers
2k views
Is R “that bad” that it should be rewritten from scratch?
In the past week I've been following a discussion where Ross Ihaka wrote:
I’ve been worried for some time that R
isn’t going to provide the base that
we’re going to need for statistical
...
36
votes
5answers
6k views
Advantage of creating a generic repository vs. specific repository for each object?
We are developing an ASP.NET MVC application, and are now building the repository/service classes. I'm wondering if there are any major advantages to creating a generic IRepository interface that all ...
35
votes
18answers
1k views
In what situations is an OOP design approach suboptimal? [closed]
Possible Duplicate:
Pitfalls of Object oriented programming
I recently had an argument with a friend who believed that every application should be designed in an OOP manner. I know that ...
35
votes
16answers
1k views
Why is number of bits always(?) a power of two?
We have 8-bit, 16-bit, 32-bit and 64-bit hardware architectures and operating systems. But not, say, 42-bit or 69-bit ones.
Why? Is it something fundamental that makes 2^n bits a better choice, or is ...
35
votes
16answers
893 views
Have you ever derived a programming solution from nature? [closed]
When you step back and look at ...
the nature of animals, insects, plants and the problems they have organically solved
perhaps even the nature and balance of the universe
Have you ever been able ...
34
votes
1answer
6k views
WPF/Silverlight - Prism - Resources for beginners
Official Websites
Composite Application Guidance for WPF and Silverlight
patterns & practices: Composite WPF and Silverlight
Articles
Composite Web Apps With Prism
Podcasts
PRISM for ...
34
votes
15answers
3k views
How do you plan an application's architecture before writing any code?
One thing I struggle with is planning an application's architecture before writing any code.
I don't mean gathering requirements to narrow in on what the application needs to do, but rather ...
33
votes
7answers
5k views
Writing Maintainable Event-Driven Code
I have just recently started playing with event-driven architectures, coming from a pretty standard object-oriented mindset.
The first thing I noticed was that the difficulty in understanding and ...
33
votes
5answers
5k views
Describe the architecture you use for Java web applications?
Let's share Java based web application architectures!
There are lots of different architectures for web applications which are to be implemented using Java. The answers to this question may serve as ...
33
votes
14answers
6k views
Books for software architect [closed]
Possible Duplicate:
Books for an aspiring software architect.
What would be good books and websites to read to become an software architect.
And just basic tips and tricks are also welcome.
...
32
votes
5answers
9k views
How to build for armv6 and armv7 architectures with iOS 5
In iOS5 Apple drops the armv6 architecture from the ARCHS_STANDARD_32_BIT.
In order to keep the support for iPhone3G I still want to compile in armv6 even in iOS5.
Does anyone found an issue for ...
32
votes
27answers
3k views
What kinds of tools do you use for conceptual design of your software?
I've never been happy with anything I've ever found. But not having good UML, or at a minimum some clear class diagrams, makes it difficult to move forward with design on a team. Especially if you're ...
31
votes
11answers
2k views
Why should I isolate my domain entities from my presentation layer?
One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that ...
30
votes
12answers
2k views
Best Practices - Design before coding
I'm curious How do you people think ? (I mean a way of thinking) about design architecture of your Libraries, Systems, Frameworks, etc. before start coding it.
I recently find my self feeling pain in ...
30
votes
22answers
12k views
Which PHP CMS has the best architecture? [closed]
In your opinion, which PHP CMS has the best architecture? I don't care about how easy its admin panel is to use, or how many CMS features it has. Right now, I'm after how good its code is (so, ...
29
votes
8answers
1k views
What are the architectural limitations of PHP? [closed]
I was reading the article "PHP Sucks, But It Doesn't Matter" by Jeff Atwood.
In the comments he writes:
That said, I absolutely think it's important for PHP devs to be aware of the architectural ...
29
votes
5answers
4k views
Why is Linux called a monolithic kernel?
I read that Linux is a monolithic kernel. Does monolithic kernel mean compiling and linking the complete kernel code into an executable?
If Linux is able to support modules, why not break all the ...
29
votes
14answers
2k views
When to rewrite a code base from scratch
I think back to Joel Spolsky's article about never rewriting code from scratch. To sum up his argument: The code doesn't get rusty, and while it may not look pretty after many maintenance releases, ...
29
votes
9answers
12k views
Software design vs. software architecture
Could someone explain the difference between software design and software architecture? More specifically; if you tell someone to present you the 'design' - what would you expect them to present? Same ...
28
votes
6answers
2k views
Why do we need RESTful Web Services?
I'm going to learn RESTful web services (it's better to say that I'll have to do this because it's a part of CS master degree program).
I've read some info in Wikipedia and I've also read an article ...
27
votes
4answers
960 views
How to organize a Swing GUI application?
I've written a few GUI's using Swing and I know about MVC, but I never found a good way to really organize my code somehow. What I am looking for is something like the folder structure that maven ...
27
votes
8answers
2k views
What is opinionated software?
I often see people say that certain software is "very opinionated" or that Microsoft tends to write "un-opinionated" frameworks. What does this actually mean?
27
votes
10answers
5k views
How to version control a record in a database
Let's say that I have a record in the database and that both admin and normal users can do updates.
Can anyone suggest a good approach/architecture how to version control every change in this table ...
27
votes
5answers
8k views
What's the difference between “Layers” and “Tiers”?
What's the difference between "Layers" and "Tiers"?
26
votes
3answers
606 views
Interview Question: running time of two programs run seperately and then together
I was recently asked this question in an interview, and while I did alright on the first two parts [I am assuming] I struggled a bit on the third. Here's the question:
You have two Linux programs, A ...
26
votes
4answers
2k views
Repository pattern vs. “smart” business objects
I see two main "schools of thoughts" when it comes to creating larger-scale enterprise-wide apps on .NET (Winforms, WPF, ASP.NET).
Some folks use the "repository pattern" which uses a repository that ...
26
votes
7answers
4k views
When NOT to use the Entity Framework
I have been playing around with the EF to see what it can handle. Also many articles and posts explain the various scenarios in which the EF can be used, however if miss the "con" side somehow. Now my ...
26
votes
13answers
2k views
Best Practices for Architecting Large Systems in a Dynamic Language
From my experiences building non-trivial applications in Java and C#, I know that using good modular design based on known patterns and "coding to interfaces" are keys to success.
What are the ...
25
votes
7answers
5k views
Building a minimal plugin architecture in Python
I have an application, written in Python, which is used by a fairly technical audience (scientists).
I'm looking for a good way to make the application extensible by the users, i.e. a ...
25
votes
7answers
13k views
Using Entity Framework entities as business objects?
I'm using Entity Framework O/R mapper from Microsoft and using entity classes (generated classes that are mapped to DB objects) as a business objects.
Is this OK? Please state your cons or pros. What ...
24
votes
8answers
2k views
Fowler's “Patterns of Enterprise Application Architecture” still relevant?
I'm thinking of buying Martin Fowler's "Patterns of Enterprise Application Architecture".
From what I can see it seems like a great book, it an architectural book with bias towards enterprise Java -- ...
24
votes
8answers
23k views
ASP.NET MVC & Web Services
Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC?
That Web Service (WCF) depends on the Model layer from my MVC project to communicate with the back-end (so it looks ...
24
votes
5answers
2k views
Good STL-like library for C
What are good libraries for C with datastructures like vectors, deques, stacks, hashmaps, treemaps, sets, etc.? Plain C, please, and platform-independent.
23
votes
8answers
3k views
Why is IoC / DI not common in Python?
In Java IoC / DI is a very common practice which is extensively used in web applications, nearly all available frameworks and Java EE. On the other hand, there are also lots of big Python web ...
23
votes
4answers
1k views
How to structure Javascript programs in complex web applications?
I have a problem, which is not easily described. I'm writing a web application that makes strong usage of jQuery and AJAX calls. Now I don't have a lot of experience in Javascript archicture, but I ...