The principles tag has no wiki summary.
0
votes
0answers
9 views
(not only) formatting dates in jopendocument
I'm trying to use jopendocument to generate OpenOffice document from the template. Because of lack of the documentation, I do not understand following issues; any help is appreciated.
1) Is there ...
0
votes
2answers
34 views
Ideally, how should HTML markup be used for games, etc? [closed]
HTML markup is built around replicating print articles, and ironically HTML5 markup is even more geared to that.
When we appropriate the technology for games and other presentational purposes, do ...
0
votes
0answers
93 views
I was asked to answer the following : [closed]
Given the bias that Cyclomatic Complexity (CC) is usually higher in longer
procedures, suggest a metric, which normalises CC, meaning how much decision is
there comparing with the given code.
I ...
0
votes
2answers
163 views
ArrayList internal implementation
Hopefully this is not a duplicate.
Before anything, I know ArrayList are not the best choice but this is just curiosity.
Simply, I was wondering about the implementation of ArrayList. I looked and ...
-2
votes
1answer
92 views
Purpose of types in programming languages [closed]
Can someone give two examples of types that created for the purpose of the specific programming language they are belong to?
Example: int created to store integer numbers (but this is for all the ...
0
votes
0answers
23 views
Does “Total mediation” is a part of “Defense in depth” principle?
I understand that Total Mediation is about constant re-checking of authorisation on all levels of execution. And Defense in Depth is more about building a number of independent security means that ...
0
votes
2answers
111 views
How come a server-side script like PHP is able to control client-side cookies?
I'm a newbie and at the moment I'm learning PHP by designing a small and basic web page. I want to add a cookie handling script to my code. First I was planning to do it by Javascript. But when I ...
1
vote
0answers
163 views
web application architecture principles protocols and practices --> solution key
Web Application Architecture: Principles, Protocols and Practices it's a great book. A big complaint I have about the book is that i cant find any answer key for the questions and exercises. Can sb. ...
0
votes
0answers
82 views
Web application design in asp.net
Here is what I have in mind...
I want to develop a helpdesk ticketing web application consisting of the following:
Top pane will consist of main menus (take note that the contents will come from a ...
0
votes
2answers
60 views
Is it good or not to have temporary fields to save costly work between modules
I have:
Raw Object: contains raw data before importing to the system
Module #1: Validator which will validate Raw Objects
Module #2: Updater which will use validated raw data (invalid data were ...
0
votes
2answers
309 views
What are the key design principles of Vmware Gemfire?
I was just wondering if someone has worked on Vmware Gemfire and came out with its key architectural principles and design principles.
Lets say you have an OLAP application, where Vmware Gemfire ...
0
votes
2answers
131 views
What is the kohana framework used for?
I´m learning kohana for the first time and need to know some basic facts about the mcv principle.
Up until now i´ve only used Javascript frameworks (ext, openlayers etc) which are referenced in the ...
0
votes
1answer
143 views
Principles of push notification on iPhone (got the test running, now what?)
I want to add push notification for my app. I googled an got the stuff running in test mode. I:
set up the certificate, provisioning profiles, everything
set up a live server
obtained my device code
...
0
votes
4answers
70 views
Programming Principles: Assignement vs Conditions
I did some research but couldn't find the answer I was looking for so I figured I'd address this issue here. I guess it's better to demonstrate it using examples, so consider the following snippets of ...
2
votes
0answers
64 views
Is Orthogonality inversely proportional with DRY principles?
According to The Pragmatic Programmer book "Orthogonality is closely related to the DRY principle". I'm not sure if I understand it the way the author wants the reader to. So I ask the question above.
...
0
votes
2answers
59 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 ?
4
votes
5answers
96 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
}
...
2
votes
3answers
108 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 ...
0
votes
1answer
36 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
98 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
212 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) ...
8
votes
1answer
1k 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 ...
0
votes
1answer
277 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 ...
8
votes
3answers
350 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 ...
1
vote
2answers
389 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 ...
2
votes
2answers
499 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?
16
votes
5answers
810 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 ...
32
votes
19answers
2k views
Top 3 Software Engineering Principles [closed]
I know what I was taught in my Software Engineering Courses at school, I know what i was taught in my first year of being a software engineer, and years later I now can understand what is important in ...
5
votes
3answers
238 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 ...
2
votes
1answer
196 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 ...
0
votes
0answers
121 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 ...
2
votes
2answers
874 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.
28
votes
4answers
11k 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 ...
1
vote
1answer
85 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 ...
4
votes
3answers
579 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. ...
-1
votes
2answers
234 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 ...
2
votes
1answer
113 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 ...
0
votes
1answer
92 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, ...
54
votes
5answers
4k 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 ...
6
votes
9answers
741 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.
0
votes
4answers
305 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, ...
2
votes
2answers
216 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
8answers
2k 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 ...
2
votes
5answers
646 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 ...
0
votes
2answers
352 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 ...
10
votes
7answers
2k 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?
2
votes
5answers
436 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
1k 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. ...
5
votes
6answers
7k 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 = ...
41
votes
3answers
6k 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 ...