Tagged Questions
11
votes
7answers
708 views
How is a video game architected?
I cannot fathom how modern games perform in anything near real-time..
For example, to allow the player to fire a bullet, you have to handle the user-input, check if they have any bullets left, then ...
9
votes
9answers
2k views
Your thoughts on “Large Scale C++ Software Design”
Reading the reviews at Amazon and ACCU suggests that John Lakos' book, Large-Scale C++ Software Design may be the Rosetta Stone for modularization.
At the same time, the book seems to be really rare: ...
8
votes
5answers
342 views
How do you start a software architecture discussion?
I work for an organization that is pretty much a start-up within a large corporation. The team has several database engineers, and a few software engineers (in the data mining field). We're growing at ...
6
votes
3answers
227 views
Global variable vs DI Container
Can someone describe pros and cons of both methods, and when you prefer one over another?
interface IService
{
object GetSomething();
}
class Service:IService{...}
DI
...
3
votes
6answers
213 views
What is the relative complexity of game architectures relative to other types of systems' architectures?
I always thought that game architectures were more complex than most other types of systems. Then I read some of the posts on SO and it makes me think that maybe it isn't a complex as others. It ...
2
votes
0answers
59 views
A multiset for a massively parallel system
I've been surfing the web today and I've went by the glassdoor.com website (a blogpost lead to it). While reading through it's section dedicated to Microsoft's interview questions for SDEs, I've saw ...
2
votes
5answers
232 views
Managing a difficult manager
I have a situation here at work. We are redeveloping our basic architecture across the entire company.
Currently we have the following hierarchy;
SQL Database <= Stored Procs not allowed.
...
2
votes
15answers
494 views
Does anyone else have the feeling that solutions for simple projects are often overengineered?
Somehow I've got the feeling that many projects become heavily overengineered so every possible change-request can be tackled with the effect that the change-requests that occured are very hard to ...
1
vote
1answer
80 views
Sharing presentation layer logic across websites
I'm working on a number of websites all of which are fairly similar in terms of business logic and presentation. The main difference between sites is the type of content shared. Imagine something ...
1
vote
2answers
229 views
Thoughts on Design - Core Control Logic and Rendering Layers
I just wanted to see if I could have your thoughts on the design of some work I am currently doing.
Here's the current situation - Basically:
I am developing a series of controls for our ...
0
votes
1answer
97 views
Massive MySQL Query
If we have table such as this
message: Id (INT) | message(TEXT) | date(TIMSTAMP)
And lets imagine that there is constantly data comming into this table. For example
1, 'Hello World', ...
0
votes
2answers
68 views
Is it better to do an iteration-based deployment or wait until the goal is fully accomplished?
Let's say your company has no consistent way of accessing a 3rd party component. You want wrap the component into a centralized web service for everyone to start being consistent; however, have been ...
-1
votes
2answers
210 views
Architecture solution problem - need other opinion
I would like to ask you for your opinion. It's about solution for our new project. see the details below.
Problem summary
- our webapp integrated into client website, as simple as possible ...