33
votes
8answers
955 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 …
29
votes
21answers
1k 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 …
27
votes
14answers
963 views
Why is amount 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 …
27
votes
23answers
2k 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 …
25
votes
17answers
1k views
Dealing with awful estimates
A recent project I worked on was proven to be severely underestimated by the architect. The estimate was out by at least 500%.
Unfortunately I was brought onto the project after the estimate had …
24
votes
13answers
548 views
Have you ever derived a programming solution from nature?
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 …
22
votes
17answers
1k 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 …
22
votes
12answers
1k 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 …
21
votes
9answers
3k 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 …
21
votes
9answers
1k views
Best way to allow plugins for a PHP application
I am starting a new web application in PHP and I this time around I want to create something that people can extend by using a plug-in interface. I am a very confident PHP developer however I have …
20
votes
13answers
822 views
C state-machine design
I am crafting a small project in mixed C and C++. I building one small-ish state-machine at the heart of one of my worker threads.
I was wondering if you gurus on SO would share your state-machine …
20
votes
15answers
1k 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 …
18
votes
14answers
609 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, …
17
votes
1answer
273 views
SO, Wiki architectures and scaling
In the highscalability blog, Todd Hoff talks about the wiki architecture SO adopted (initially), crunches that followed and mentions the painful refactoring needed to get back on track.
To quote:
…
17
votes
8answers
620 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?
