The hierarchy tag has no wiki summary.
-2
votes
1answer
49 views
How to write a program that diffs on hierarchy changes? [closed]
Why is it that diff programs work on a line-by-line basis instead of a hierarchal one?
All code can be expressed in a hierarchy, even though it's not immediately apparent.
Most of the data we work ...
-4
votes
0answers
230 views
Who does the actual work in IT companies? [closed]
I'm not sure if this question does comes under business concerns, as mentioned in bullet point 5 of the FAQ (that's the closest I could see this question fit the description to be eligible for being ...
1
vote
2answers
233 views
Scrum Master in the organization
I'm wondering how to set up the organization with Scrum Masters. I would prefer to see real examples of where the scrum masters are located in the organization's hierarchy and how report-to / ...
2
votes
1answer
294 views
How to organize my site's file system properly?
Doing some reading on Stack Overflow, I've found a lot of information suggesting that proper organization of a file system is crucial to a well-written web app. One of the key pieces of evidence is ...
4
votes
1answer
106 views
Contract / Project / Line-Item hierarchy design considerations
We currently have an application that allows users to create a Contract. A contract can have 1 or more Project. A project can have 0 or more sub-projects (which can have their own sub-projects, and so ...
12
votes
3answers
533 views
How can you tell whether to use Composite Pattern or a Tree Structure, or a third implementation?
I have two client types, an "Observer"-type and a "Subject"-type. They're both associated with a hierarchy of groups.
The Observer will receive (calendar) data from the groups it is associated with ...
1
vote
1answer
188 views
How should the cppcms template hierarchy be used
I understand that the hierarchy, in cppcms for templates, goes skin (topmost, representing a namespace), then view (representing a class) and finally template (representing a function).
I want to ...
2
votes
2answers
475 views
Visualize flowchart diagram with multiple end symbols
I am looking for a standardize way to visualize the following hierarchical logic:
The state of the thread is represented by the answers to the hierarchical set of question
You can read this listing ...
1
vote
1answer
48 views
Can thesaurus items have more than one USE relation?
I want to model a Thesaurus using the ANSI/NISO standard relation description like "broader term", "narrow term", etc. (see this Wikipedia article for details). Is it valid for a Thesaurus item in ...
5
votes
2answers
305 views
Should exceptions of a subclass extend the superclass exceptions or my own namespace?
Our library extends another (third-party) library. When we create a child class in our library, and want to throw exceptions, should those exceptions extend the exceptions from the parent class or ...
2
votes
1answer
186 views
The usual metadata objects or: How to move a typical ExtJS App to jQuery, and: What's missing in the middle?
I have entered into an existing project that is all about maintaining nested data structures. You have companies which are assigend to accounts, and contacts and notes and... basically the usual bunch ...
2
votes
4answers
240 views
How can I make tagging work for the concept of “all”?
There's an approach to organising information that says that hierarchy is a tool of the devil, or at least is overrated. I've embraced this understanding for a data-driven site I'm working on which ...
2
votes
3answers
140 views
Separating the database, API, and the interface
Most of my projects start small. Many times I start with a web page (1 file) that has the code to...
select stuff from the database => display it to the user and offer editing => receive the edits ...