18
votes
18answers
569 views
When should we create a new method?
I'm trying to find out if there is a consensus on when we should create a new method in our code. For example should we only create a new method/function if we are going to be usin …
0
votes
4answers
58 views
Object decomposition depth in Java
I'm wondering about the following issue: How deep should one go when designing an application in decomposing the working entities into objects?
What I mean could be described bett …
0
votes
4answers
35 views
How to pass external variables to a private javascript outer closure function?
I may have made some poor design choices on this one. I have several objects being instanced like this.
core.modules.trial = function(sandbox){
return{
alert_private : funct …
0
votes
4answers
38 views
Verifying if an object is in an array of objects in Rails
Hi
I'm doing this:
@snippets = Snippet.find :all, :conditions => { :user_id => session[:user_id] }
@snippets.each do |snippet|
snippet.tags.each do |tag|
@tags.push …
2
votes
5answers
101 views
Architecture of very complex php applications ?
I want to know which php architecture strategies developers use in complex php applications . So far , i know the mvc structure which consists of models, views and controller (and …
0
votes
4answers
72 views
Object representation of betting rounds at poker
Hi, I'm writing a HandConverter of a poker hand. This is my first project and I'm trying to do it right from the beginning.
I got already the most parts, like lists of players, th …
1
vote
5answers
111 views
How to design/plan for web application development?
I'm interested in learning how to design/plan for web application development, in a multiple developer team scenario.
Assuming the role of "Project Manager/Lead":
What "docume …
0
votes
2answers
54 views
Object reference
I have a situation programming for the iPhone. I have an Object (object A) that contains another Object (object B). Is there a way to reference object A from Object B? If so, how …
0
votes
3answers
47 views
What design pattern should I use for import/export?
I have a calendar event object. I have plans to make it compatible with CalDAV/iCal/vCal protocols/file formats, which require the event be serialized and de-serialized to and from …
1
vote
2answers
73 views
Refactoring some of my code
I have a SalesOrder class which is inherited by several different types of sales orders. It has a method called ValidateItems(OrderItemList, itemAdditionalValidation), which takes …
1
vote
2answers
30 views
Applying Normalization techniques to Object Modeling
Hi all
Over the years i have followed the techniques of DB normalization to atleast identify the relationships and entities of my object models , it always got me closer to a very …
3
votes
1answer
73 views
Separate threads for socket input and output
I got assigned to work on some performance and random crashing issues of a multi-threaded java server. Even though threads and thread-safety are not really new topics for me, I fou …
12
votes
15answers
619 views
For C/C++, When is it beneficial not to use Object Oriented Programming?
I find myself always trying to fit everything into the OOP methodology, when I'm coding in C/C++. But I realize that I don't always have to force everything into this mold. What ar …
0
votes
11answers
403 views
Alternative to Java
I need an alternative to Java, because I am working on a genetics-calculation project.
It takes a lot of memory and the most of the cpu time. And therefore it won´t work when I dep …
0
votes
1answer
16 views
Arranging server component ducks
Hi Guys.
I am trying to find an elegant framework to arrange all of my server components.
The server:
1. Receives a request, as a XML string, from the client.
2. Validates the …
