Tagged Questions
The principles tag has no wiki summary.
39
votes
6answers
2k views
Principles for Modeling CouchDB Documents
I have a question that I've been trying to answer for some time now but can't figure out:
How do you design, or divide up, CouchDB documents?
Take a Blog Post for example.
The semi "relational" way ...
33
votes
2answers
3k views
Service Layers and Repositories
I've been using MVC frameworks for a short while now and I really like how the concerns are separated out. I've got into a bad habit of letting the controllers do quite a bit of work. So I'm really ...
30
votes
17answers
12k views
Best Practices & Principles for GUI design
What is your best practical user-friendly user-interface design or principle?
Please submit those practices that you find actually makes things really useful - no matter what - if it works for your ...
17
votes
7answers
3k views
What is the Dependency Inversion Principle and why is it important?
What is the Dependency Inversion Principle and why is it important?
15
votes
5answers
582 views
Are there any Clojure Principles?
Are there any Principles for Clojure ?
a. Like the S.O.L.I.D. Object-Oriented Design Principles for OO languages like Java ?
b. or others more heuristic, like "Tell don't ask", "Favor Composition ...
14
votes
4answers
3k views
Design Principles, Best Practices and Design Patterns for C (or Procedural Programming in general)?
Are there any known design principles, best-practices and design patterns that one can follow while designing a C project? Or useful design principles for procedural (imperative) programming in ...
10
votes
6answers
1k views
Principles, Best Practices and Design Patterns for functional programming
Are there any known principles, best-practices and design patterns that one can follow while writing code in a functional programming language?
9
votes
12answers
887 views
7
votes
3answers
308 views
Abuse of Closures? Violations of various principles? Or ok?
Edit: fixed several syntax and consistency issues to make the code a little more apparent and close to what I actually am doing.
I've got some code that looks like this:
SomeClass someClass;
var ...
7
votes
12answers
991 views
Strategy for Fixing Layout Bugs in IE6?
Generally, what's the best way to tackle a layout bug in IE6? What are the most common bugs or problems that one should look for when trying to figure out why your page suddenly looks like a monkey ...
5
votes
1answer
283 views
How does Boehm GC work for C program?
I checked Boehm GC. The GC for C/C++.
I know mark-and-sweep algorithm. What I'm in curious is how it picks up only pointers in whole C memory. My understanding about C memory is just a plain byte ...
5
votes
3answers
202 views
How to properly create features, tests, stories and break them down
I am trying to grasp the entire TDD methodology and as such, I don’t really know how to present this as a nice concise question so here is the long drawn out version.
I seem to be experiencing a gap ...
5
votes
9answers
664 views
What's the rationale behind headers?
I don't quite understand the point of having a header; it seems to violate the DRY principle! All the information in a header is (can be) contained in the implementation.
5
votes
5answers
361 views
Never produce to an unknown pathway, in software too? [Toyota principle]
In Toyota manufacturing lines they always know what path a part have traveled. Just so they can be sure they can fix it of something goes wrong. Is this applicable in software too?
All error messages ...
4
votes
6answers
66 views
How do you name a class/method that only calls other methods?
Say I follow the Single Responsibility Principle and I have the following classes.
public class Extractor {
public Container extract(List<Container> list) {
... some extraction
}
...
4
votes
3answers
293 views
Coder collaboration best practices using Git
I'm having some troubles in understanding Git team-working principles.
Consider a team of two programmers: A and B. They are working on a Project. Also, there is a remote server with a repo on it. ...
3
votes
2answers
217 views
What does “dependency inversion principle” mean in OOP?
What is meant by the "dependency inversion principle" in object-oriented programming? What does it do?
3
votes
8answers
1k views
OO Software Design Principles
I am a huge fan of software design principles such as SOLID and DRY. What other principles exist for OO software design?
Note. I’m not looking for answers like "comment your code" but instead ...
3
votes
3answers
391 views
Where to place Git repository
I just started using Git and I want to know if this is the right way of using it. I started a Rails app with:
rails newapp
Then I did:
cd newapp
git init
git add .
git commit -a
So is it "right" ...
3
votes
6answers
4k views
LINQ To Entities and Lazy Loading
In a controversial blog post today, Hackification pontificates on what appears to be a bug in the new LINQ To Entities framework:
Suppose I search for a customer:
var alice = ...
3
votes
2answers
423 views
Organizing classes into namespaces
Are there some principles of organizing classes into namespaces?
For example is it OK if classes from namespace N depends on classes from N.X?
And if classes from N.X depends on classes from N?
2
votes
3answers
69 views
Are there anything I should follow when documenting code, or, how to propely document?
I've seen that most well-built, well-maintained projects out there use some kind of a "standardized" way of documenting the code.
Like @param, @return etc., but I cannot seem to find the reference on ...
2
votes
1answer
72 views
SRP & “axis of change”?
I'm reading Bob Martin's principles of OOD, specifically the SRP text, and I understand the spirit of what it's saying pretty well, but I don't quite understand a particular phrasing, from page 2 of ...
2
votes
2answers
605 views
MVC patterns with WPF + NHibernate + IoC
I'm looking for patterns and principles for using with WPF and NHibernate in model-view-controller style.
2
votes
1answer
70 views
Help identifying the author of this phrase
Some time ago I read on the Net something like "you learn a thing only when you really need it" (e.g., learning a new programming language). If memory serves me well that was a sort of "law" or ...
2
votes
2answers
168 views
data access: exception to 'Tell, don't ask'?
Are data access objects an exception to the rule 'Tell, don't ask'?
Eg get last 10 posts from a table data gateway?
2
votes
5answers
539 views
Is there anything wrong with writing parts of a webpage in XHTML with an HTML doctype?
I've just recently started learning HTML/CSS and I've been trying to teach myself sound web programming practices. I'm familiar with XML, so coding up webpages in XHTML was intuitive enough and it ...
2
votes
7answers
364 views
Do you prefer compiled or scripted languages? [closed]
Since this is wide community using all kind of different technologies, it seems like appropriate place to ask this.
Do you like to compile or do you prefer scripting?
I ask this because I tend to ...
2
votes
3answers
842 views
Objectively Good OO Design Principles
Premise
I believe that there is a way to objectively define "Good" and "Bad" Object-Oriented design techniques and that, as a community we can determine what these are. This is an academic exercise. ...
2
votes
4answers
887 views
Encapsulation Principle
There's some object-oriented engineering principle that states something along the lines of "a class should only know about the contracts of the classes that it takes as arguments, or any internal ...
2
votes
4answers
315 views
Is it ok to call a virtual method from Dispose or a destructor?
I can't find a reference to it but I remember reading that it wasn't a good idea to call virtual (polymorphic) methods within a destructor or the Dispose() method of IDisposable.
Is this true and if ...
2
votes
10answers
871 views
What are the Principles of system architecture?
Overload protection
Fail safe, clustering
Scalability
Software upgradable platform
Data consistency
Something missing?
(I'm thinking of classic website + db)
1
vote
2answers
265 views
technical aspects of 'isa' in c++
what exactly does it mean from technical point of view, I understood that it means that my derived class can always be converted to base class, that's it? I read some materials without any reference ...
1
vote
1answer
63 views
Guidelines/principles for package and component design
Alright, our visual studio solution grows big in terms of the number of projects in it. Except for things that are obvious, I want to check whether the way it is now is what it has to be or we can ...
1
vote
5answers
471 views
Never do anything until you ready to use it, in software too? [Toyota principle]
I was listening to a podcast. Where they talked about principles Toyota was using.
" - Never do anything until you are ready to use it."
I think this tell us to look in other places, to learn what ...
0
votes
2answers
44 views
If n-1 elements are sorted then the nth element is already sort. What is this principle called? [closed]
I had read about this somewhere in wikipedia but now I can't recollect it. Anyone has any idea what it is called ?
0
votes
1answer
19 views
Hello world example for file recovery?
How can I recover a file that's already deleted(how does those disk recovery tools do the job)?
Is there an example to follow no matter which fs or os?
0
votes
2answers
72 views
What are good ways to learn how to write an API?
Our team would like to write an API for our site - what are good guidelines for writing a secure and streamlined API? Are there good and available principles that all good API developers follow.
0
votes
1answer
122 views
Programming methodology recommendations
Does anyone know of a good Web Programming Methodologies book which delineates good programming principles for the web (and general programming), development flow (spec > prototype > design > develop) ...
0
votes
0answers
235 views
Mapping HttpSession to user principal, Apache Tomcat
I have implemented an HttpSessionListener, I need to do some initializations when the session is created, i.e. inside the sessionCreated method.
My problem is that I need to know, at this point, to ...
0
votes
1answer
179 views
Multiple Methods to call a WCF Service
I have a class that handles all the interaction in my application with my WCF service and it seems that MSDN say that the use of Using)_ statement with WCF is bad - I can see why this is bad and agree ...
0
votes
0answers
103 views
Basic principles of computer encryption? [closed]
I can see how a paper-based cipher can be developed using substitutions and keys, and how those two things can become more and more complex through use of machines, thus offering some protection from ...
0
votes
1answer
68 views
Strong Link - Weak Link in software security
Give me an example on how I could apply the Strong Link - Weak Link principle in designing a security component for a piece of software. Is there such a concept of "weak" modules in software security, ...
0
votes
4answers
184 views
How does the design of JavaBeans square with information hiding?
Two semesters ago, I had a professor who said:
Some of you have been told to always include setter and getter methods for all private instance variables. I say that this breaks information hiding, ...
0
votes
2answers
222 views
How to organize my classes?
I'm developing a small project in ASP.NET MVC to manage photos, but I don't know how to organize my classes in namespaces.
I have 2 base classes (Photo and Category). Should I put these classes into ...
0
votes
2answers
136 views
Always do it with the same method every time, is this usable in Software projects?
I was out running.. listening to a podcast about Toyota.. anyway.
This principle I think does not come to use in the software projects. (maybe project management). The art is still to young. We don't ...
-1
votes
2answers
153 views
Tips to develop a software adapting agile developement methodologies
I know Agile development is a different way of managing software development projects and it fundamentally differs from a more traditional waterfall approach to software development
Some of the ...