Click here to Skip to main content
15,887,214 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: How to find the similarity between users in Twitter ? How to design a good and efficient idea? Pin
April Fans27-Dec-12 15:43
April Fans27-Dec-12 15:43 
GeneralRe: How to find the similarity between users in Twitter ? How to design a good and efficient idea? Pin
ldaneil28-Dec-12 8:36
ldaneil28-Dec-12 8:36 
GeneralRe: How to find the similarity between users in Twitter ? How to design a good and efficient idea? Pin
April Fans3-Jan-13 16:46
April Fans3-Jan-13 16:46 
AnswerRe: How to find the similarity between users in Twitter ? How to design a good and efficient idea? Pin
Marc Koutzarov29-Aug-14 23:54
professionalMarc Koutzarov29-Aug-14 23:54 
QuestionClient - Server approach Pin
bugal21-Dec-12 0:33
bugal21-Dec-12 0:33 
AnswerRe: Client - Server approach Pin
jschell22-Dec-12 14:11
jschell22-Dec-12 14:11 
QuestionHow do you design this ? Pin
Eytukan18-Dec-12 2:33
Eytukan18-Dec-12 2:33 
AnswerRe: How do you design this ? Pin
Pete O'Hanlon18-Dec-12 2:47
mvePete O'Hanlon18-Dec-12 2:47 
Hmmm, you're mixing and matching things a lot here. As you're creating movable "things", you should consider the fact that each one of these is a separate movable type. This indicates that you should consider the fact that you're using an enum and change it to something like this:
C#
public abstract class MovableObject
{
  // Add base implementation
}

public class Legs : MovableObject
{
  // Do something
}

public class Wheels : MovableObject
{
  // Do something
}
And there you have it - it's a lot cleaner and simpler to work with OO features.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos


CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

GeneralRe: How do you design this ? Pin
Eytukan18-Dec-12 2:54
Eytukan18-Dec-12 2:54 
GeneralRe: How do you design this ? Pin
Pete O'Hanlon18-Dec-12 3:02
mvePete O'Hanlon18-Dec-12 3:02 
GeneralRe: How do you design this ? Pin
Lampridis Vasilis30-Dec-12 0:04
Lampridis Vasilis30-Dec-12 0:04 
GeneralRe: How do you design this ? Pin
Eytukan30-Dec-12 18:00
Eytukan30-Dec-12 18:00 
AnswerRe: How do you design this ? Pin
jschell18-Dec-12 8:14
jschell18-Dec-12 8:14 
GeneralPlease hold on Pin
Eytukan18-Dec-12 18:59
Eytukan18-Dec-12 18:59 
GeneralRe: How do you design this ? Pin
Eytukan30-Dec-12 17:59
Eytukan30-Dec-12 17:59 
GeneralRe: How do you design this ? Pin
jschell31-Dec-12 9:12
jschell31-Dec-12 9:12 
Questionportability/deployment Pin
Member 838594911-Dec-12 4:39
Member 838594911-Dec-12 4:39 
AnswerRe: portability/deployment Pin
jschell11-Dec-12 10:07
jschell11-Dec-12 10:07 
AnswerRe: portability/deployment Pin
Mycroft Holmes16-Dec-12 11:59
professionalMycroft Holmes16-Dec-12 11:59 
GeneralRe: portability/deployment Pin
jschell17-Dec-12 8:40
jschell17-Dec-12 8:40 
Question.NET vs WINRT on Windows 8 Pin
devvvy9-Dec-12 15:13
devvvy9-Dec-12 15:13 
AnswerRe: .NET vs WINRT on Windows 8 Pin
Richard MacCutchan9-Dec-12 22:12
mveRichard MacCutchan9-Dec-12 22:12 
GeneralRe: .NET vs WINRT on Windows 8 Pin
devvvy10-Dec-12 2:52
devvvy10-Dec-12 2:52 
AnswerRe: .NET vs WINRT on Windows 8 Pin
Eddy Vluggen9-Dec-12 22:42
professionalEddy Vluggen9-Dec-12 22:42 
GeneralRe: .NET vs WINRT on Windows 8 Pin
devvvy10-Dec-12 2:53
devvvy10-Dec-12 2:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.