7
votes
7answers
319 views
How to track System Dependencies?
Introduction
In my current organisation, we have many desktop and web applications all feeding into each other at some point. When looking after older applications or creating new …
0
votes
9answers
225 views
Given this expectations, what language or system would you choose to implement the solution?
Here are the estimates the system should handle:
3000+ end users
150+ offices around the world
1500+ concurrent users at peak times
10.000+ daily updates
4-5 commits per second
5 …
8
votes
10answers
1k views
Solving a linear equation
I need to programmatically solve a system of linear equations in C, Objective C, or (if needed) C++.
Here's an example of the equations:
-44.3940 = a * 50.0 + b * 37.0 + tx-4 …
2
votes
2answers
174 views
Counting Sublist Elements in Prolog
How can I count nested list elements in prolog?
I have the following predicates defined, which will count a nested list as one element:
length([ ], 0).
length([H|T],N) :- length( …
6
votes
7answers
397 views
Good Reads for Distributed Systems
I am working on a server system that going to have a distributed architecture. Can anyone recommend some good (titles|urls|blogs) on programming distributed architectures, P2P, Mas …
0
votes
2answers
90 views
How do you handle internal systems development?
We regularly convince our clients of the values of having a good quality intranet and systems, but within my organisation it doesn't seem that we're "eating our own dogfood".
We h …
1
vote
4answers
127 views
How do you define a software component?
How do you define a software component and what kind of relationship is there between OOP and component programming? What are the pros and conns and what is the "golden ratio" of t …
4
votes
1answer
121 views
What is the best resource for learning about Safety Critical Systems Development (C/C++)
I'm looking to locate a good resource (book or otherwise) on safety critical systems development techniques/methodologies, especially something that will cover both hardware and so …
2
votes
2answers
126 views
Joining 2 Sockets?
Is it possible to join two sockets?
For example, if a process is acting as a router of messages between 2 other processes at some point being able to step aside would save a bunch …
1
vote
2answers
69 views
What is the significance of having high pgfree/s on a linux system?
I am seeing high pgfree/s values in sar for an application. Generally is this an issue I should be concerned about? If so, what is generally the cause, spending time lots of time i …
0
votes
2answers
44 views
Handling repeated events in a log
I have a logging system where some events are repeated infinitely. for example:
12:03 - Restart attempted
12:03 - Restart failed
12:02 - Restart attempted
12:02 - Restart failed
1 …
0
votes
2answers
224 views
Semaphore queues
I'm extending the functionality of a semaphore. I ran into a roadblock when I realized I don't know the implementation of an actual semaphore and to make sure my code ran correctly …
1
vote
5answers
624 views
An example project for network-programming written in C/C++
Are there good open-source projects on P2P file-sharing systems or
distributed file systems written in C/C++ ?
I need a project to start with network-programming.
Can anyone giv …
3
votes
1answer
175 views
How can I use fprintf and write to a pipe?
I created a pipe and I used dup2() to overwrite streams 1 & 2 (stdout & stderr) into those pipes.
Now I wish to use fprintf to write to stream 1 or 2, but my program doesn …
0
votes
4answers
434 views
Ignoring SIGCHLD in some cases but not others
In my program, I fork() several times depending on user input.
In certain instances, I want to handle SIGCHLD and say something like "Process # Finished". In other cases though, I …
