Questions about problem solving and planning for a solution through software design.
0
votes
0answers
31 views
Checking out and compiling repository. What is the correct approach for starting the compilation process?
I am writing a Bash script that automatically updates a repository containing source code and then compiles it. I have been a bit stuck on the part about how to start the compilation itself, i.e. if I ...
0
votes
2answers
139 views
Create a database for database tables
I'm working on a project where I have to give users the ability to build their own tables,
each user can create more than one table.
(the type of all data is string).
The user can create a table and ...
1
vote
0answers
37 views
Testcase runner for parametrized testcases
Let me explain my situation. I'm planning a kind of test case runner for doing testcases on external devices, which are microcontroller based. Lets consider the devices:
Device 1
Device 2
There ...
0
votes
2answers
50 views
Is it 'safe' to expect myClasses to agree not to only call package Scope methods from other Package scope methods?
The questions says it all, but a quick overview of the situation. I'm creating a Model which contains classes (all inherriting myObject) which have a large amount of interconnection. I want the ...
0
votes
1answer
83 views
CSS3 shorthand properties
Working on my own I tought I need to learn that css3 shorthand properties, because - as I know now, it affects website's loading time, so I need to optimize it a little bit.
I was thinking - is there ...
1
vote
1answer
74 views
How to keep my Activity code readable and maintainable?
I have written a rather small App with only one activity. From my understanding an activity has to be seen as kind of a view and controller in one class.
But even for a little app, with 3 dialogs ...
-6
votes
1answer
51 views
I want to build a website similar to escrow.com [closed]
I would like to know if it is possible to build a website similar to escrow.com however it will specific for my country only. The idea is that if a person A wants to sell and person b wants to buy. ...
1
vote
5answers
218 views
Do tools, like Windows Workflow, inhibit development growth? [closed]
I’ve had this gut feeling about Windows Workflow (WW) for a while now. And, until now, I couldn’t think of the right words to say in order to explain it. Since I think I have a good way to verbalize ...
0
votes
0answers
49 views
Best approach how to create custom fields - dynamic forms
I'm wondering how can I create functionality of custom fields. Below I described what I want and solution which I consider.
Case study:
Let’s assume that we have 2 roles: Admin and User. Admin has ...
0
votes
1answer
75 views
Designing application flow
I am creating a web application in java where I need to mock the following flow.
When user trigger a certain process (add product to cart), I need to pass through following steps
Need to see in ...
0
votes
0answers
59 views
How to properly design REST [duplicate]
I intensively work with REST architecture about last year. And I don't stop a wonder how REST is inflexible or may I can't understand how to properly use it.
So I use REST services on my backend and ...
2
votes
3answers
155 views
Implicit optimization versus explicit optimization
To explain what I mean, let me start with an example.
Consider a deque that supports O(logn) concatenation with another deque and O(n) addition of n elements at one end. This dequeimplements a ...
5
votes
3answers
205 views
Writing your own framework or using an existing one? [duplicate]
I know there are similar questions to this one, and I've read most of them. Most of the answers to these questions are talking about "cost-effectiveness" and "time-saving" aspects of the frameworks, ...
-2
votes
0answers
56 views
System design questions resources [closed]
Although I have been able to find almost infinite resource pages on algorithmic puzzles/interview questions etc. I have been struggling for a very long time to find (any) reference on systems design.
...
1
vote
1answer
97 views
Multi-user Configuration Settings design
I am designing a flexible and extensible way to store configuration settings for users.
Database Table Design:
╔═════════════════════════════╗
║ ConfigurationItemDefinition ║
...