The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
69 views

Choosing Entity Framework or Having ADO.net Calling Stored Procedures

Am in the process of designing an enterprise app (having exhaustive read and query operations). Taking financials and extendibility in mind (along with other benefits in mind) I thought of choosing ...
1
vote
0answers
24 views

Security strategies for sensitive transient data awaiting processing

I'm currently in alpha testing/development of a REST API-based service that performs automation tasks for clients on behalf of their users. The web application is hosted on my server and tasks are ...
4
votes
4answers
141 views

Design - How to handle timestamps (storage) and when performing computations ; Python

I'm trying to determine (as my application is dealing with lots of data from different sources and different time zones, formats, etc) how best to store my data AND work with it. For example, should ...
0
votes
2answers
45 views

Building an application for internal and external use - how do I structure them?

I'm working on consolidating our company's various information systems into a single web based application. No small feat, but one that we're going to gradually roll out and improve upon as time goes ...
0
votes
1answer
66 views

Interview: System/API design

This question was asked in one of the big software company. I have come up with a simple solution and I want to know what others feel about the solution. You are supposed to design an API and a ...
0
votes
2answers
71 views

Architecture: Distributed Data Processing w/ Node Failure Tolerance

I have lots of pieces (tens of thousands) of data/jobs that need frequent recurring processing. The jobs to be processed are stored in a SQL Server 2012 (Web Ed) database that gets updated with new ...
1
vote
0answers
102 views

Design a system for showing quotes on the web [closed]

Question: Design a system for showing quotes on the web. For example, when the user is looking at page A, part of which is reproduced in page B, the system could highlight part of page A present the ...
1
vote
1answer
54 views

Creating different Software Designs from one vary narrow requirement specification

I am helping a friend with his course work. Basically the project requirement is to create a software system to computerise a music shop that sells musical instruments. The essence is nothing more ...
0
votes
0answers
98 views

is there a clear difference between Business process mapping and Standard Operating Procedures?

The two business documents appear to me to share aspects of the same thing. Is there a clear difference between the two? and If someone says they are doing a business process mapping, will it ...
1
vote
1answer
1k views

How to represent user input in sequence diagram?

Does anyone know how to represent user input ( for example, some information need to create account... ) in sequence diagram ? Thank in advanced !
0
votes
1answer
81 views

Need guidance on inventory application design

Currently I'm working on Inventory Management application (later on this can be integrated with accounting application too), and I need your help in deciding one of the important system design related ...
0
votes
1answer
1k views

Parking Lot, OOP Design - Custom Design

I am working on the parking lot example, and made few assumptions as I design. I have couple of questions in assigning attributes to Items/Objects. 1) If parkingSpace is not assigned by a system, ...
14
votes
3answers
1k views

Lua vs Embedded Lisp and potential other candidates. for set based data processing

Current Choice: lua-jit. Impressive benchmarks, I am getting used to the syntax. Writing a high performance ABI will require careful consideration on how I will structure my C++. Other Questions of ...
0
votes
1answer
210 views

Design of an MVVM Application [closed]

I am here very skeptical about the design of my application..... Here is the Diagram for My application is this right ?? ot i need to change something... I'll Elaborate the Diagram.... : ...
2
votes
0answers
234 views

System Design Document template for firmware development on Atmel UC3 platfrom

Do any body have or know any site where I can get a template for System Design Document for my firmware develop project for Atmel UC3 platform?
4
votes
2answers
354 views

Design a Plugin based java application

I'm trying to make a plugin-based application which means, besides the basic framework, other functionalities should be added with a plugin style. The majar problem of such system, i think, is how to ...
6
votes
1answer
839 views

Design patterns to facilitate these behaviours (audit trail behaviour and undo)

I am working on a system that needs to exhibit these behaviours: Audit Trail Undo / Revert to a particular version (such an action will itself be audit logged) I have seen a slightly similar ...
3
votes
3answers
139 views

Modelling these roles using actors in a use case analysis

I am modelling a system that has (amongst others), these types of roles: Individual player Group player Here are some additional facts: There is a set of functional requirements for an ...
1
vote
2answers
1k views

BOOST ASIO multi-io_service RPC framework design RFC

I am working on a RPC framework, I want to use a multi io_service design to decouple the io_objects that perform the IO (front-end) from the the threads that perform the RPC work (the back-end). The ...
52
votes
9answers
4k views

Best practices for developing larger JavaScript applications [closed]

Having a strong background in Java/C++ i wonder if it is possible to develop a somewhat larger JavaScript application without having to cut back on quality. Any hints are appreciated regarding: ...
0
votes
0answers
90 views

PHP - System Practices, Technologies & Tools [closed]

I am a PHP system developer and am about to reprogram a system and I have decided to implement many new technologies, as I do just about every time I make a new system. I am looking at general ...
3
votes
2answers
561 views

Designing a System that would detect typos and suggestions

This was asked in an interview. I think the answer can be done by constructing a trie of all valid words and then suggestions can be made based on a possible valid path which was otherwise given as ...
6
votes
1answer
1k views

How do you write a real-time webbased collaboration tool such as google docs?

I'm really curious about How one would go about writting a collaboration tools such as google docs? The closest thing that I can think of is to write a messaging system like a chat and then send ...
0
votes
1answer
425 views

Building a client-server application for local programming contest system

I am thinking to build a client server system, in which the server can receive user's code and compile it and return the result to the user. This system will be used for a local online programming ...
1
vote
1answer
309 views

Daemon that read barcodes and sends them over HTTP to a php script

I am looking forward to build a prototype, which should be running completely headless and without user interaction, system should be able to start a barcode reader, send it over the internet to a php ...
0
votes
1answer
103 views

embedded system design: partitioning resources

I want to design a device that supports both cellular connectivity ((ie. HSDPA/HSUPA) for high-speed downloads/uploads and telephony) and heavy multimedia applications (like playing streaming video in ...
6
votes
6answers
738 views

How to implement undo functionality?

In my application I want to provide the user with a small undo functionality. There aren't many actions than can be undone by the user. Particularly the actions are: Add notes to an object Color an ...
0
votes
1answer
603 views

How to combine RESTful calls and Apache wink?

I have a question about the REST and Apache wink. I want to use the Apache Wink to handle the transition between front end and back end. However, I don't have any ideas on how to start and learn it. ...
1
vote
3answers
83 views

How important is a good modeling tool toward system design

While a quick wiki/google flood me with numerous uml freeware, most of them doesn't meet my expectation (limited to "drawing" level instead of "modeling"). I know sparx's EA and IBM rational rose ...
0
votes
1answer
41 views

Are there any methods of developing a large system instead of parameters? [closed]

One way to develop a large, versatile system is with the use of parameters. The user defines a large number of parameters and the system behaves accordingly. I guess the advantage is that the system ...
0
votes
1answer
57 views

How should I pass parameters between separated parts in my system?

I have a large system working on a set of data. My system is combined of several separated parts (like services) - the separation is based on a platform of sort. Throughout the system flow the set of ...
1
vote
1answer
697 views

Building the Business Rule Engine using SQL SERVER

I have a requirement to build a Business Rule Engine. I use the SQL SERVER 2005. The business rules are massive, like 2000 pages long. eg. If col1 = 'xyz' then populate col2 otherwise not. if col3 ...
3
votes
2answers
253 views

Creating a simple Non repudiation/fraud proof system

What are the key features should I consider if I want to create a simple fraud proof and non repudiation system? For this question, I am mainly concentrating on the integrity of the database rows. ...
0
votes
1answer
63 views

What would be the best suited language/technology in this scenario?

I'm about to develop a small system to display dynamic information in public spaces across an entire building (similar to Flight Information Displays on an Airport). The system will have two main ...
1
vote
1answer
805 views

CLI design and implementation?

I am developing a time management tool for my personal use. I prefer using keyboard over mouse, and on the interface have a general purpose text box which will act like a command line. I have just ...
1
vote
2answers
106 views

How do you plan for starting a new web system?

I've been creating more and more systems recently and I find more and more planning and preparation I do before starting the project. I determine what libraries or frameworks I will be using, what ...
61
votes
15answers
4k views

How to increase my “advanced” knowledge of PHP further? (quickly)

I have been working with PHP for years and gotten a very good grasp of the language, created many advanced and not-so-advanced systems that are working very well. The problem I'm running into is that ...
-1
votes
1answer
47 views

Good recources on a problem decomposition?

Could you please share some good books, blogs, sites on practical problem decomposition, thanks P.S. Please only practical ones not the scientific/theoretical resources.
1
vote
2answers
213 views

Correct Interactive Website System Design Concepts / Methods?

I hope this question isn't too open ended, but a nudge in the right direction is all I need! I am currently building an online accounting system - the idea is that users can register, log in, and ...
3
votes
4answers
1k views

How to overcome shortcomings in reporting from EAV database?

The major shortcomings with Entity-Attribute-Value database designs in SQL all seem to be related to being able to query and report on the data efficiently and quickly. Most of the information I read ...
1
vote
2answers
322 views

Meaning of Perlis's Epigram #22

From Epigrams in Programming by Alan J. Perlis: 22. A good system can't have a weak command language. What does this mean? What are good examples of this principle? Where can I learn more on ...
2
votes
2answers
267 views

Static Vs Dynamic controls + Situation based

I'm building an web application to manage instructions based on different parameters (eg. JobCode, State, Customer, Product etc..). I have allocated some 20 filler fields for each of such parameters. ...
2
votes
4answers
733 views

System Design Document

I did some searching on the site for an answer to help guide me, but my efforts netted 0 results. I need to write a system design document for a client that is bringing their entire operation in ...
1
vote
2answers
96 views

Best Architecture for a Public Queue of Incoming Requests?

We have a web app (ASP) that has workflow in it for management to assign work to individuals. The problem is prior to signing out work. During the evening/night/early morning operations are lightly ...
1
vote
5answers
423 views

What is the best strategy to combine IntrAnet and Web-exposed website?

I was wondering if somebody has some insight on this issue. A little background: We've been using Rails to migrate from an old dBase and Visual Basic based system to build internal company IntrAnet ...
1
vote
3answers
558 views

WCF primitive type vs complex type

I'm designing a WCF service that will return a list of objects that are describing a person in the system. The record count is really big and there I have some properties like person's sex. Is it ...
1
vote
1answer
53 views

Tools for quantitative systems performance analysis?

I have a model of a simple distributed system as a heterogeneous network of a number of producers and consumers of various classes of workitem, and a number of compute nodes which can process those ...
1
vote
3answers
527 views

Database good system decoupling point?

We have two systems where system A sends data to system B. It is a requirement that each system can run independently of the other and neither will blow up if the other is down. The question is ...
1
vote
1answer
316 views

Building a Black Net (Peer to Peer-like Network) with Participant Anonymity or Plausible Deniability

How would you programmatically design a "black net" where peer to peer-like data exchange (file transfer, chat etc) is possible but the anonymity of the seeder/sender(s) is either entirely hidden or ...