Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
10answers
3k 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-45.3049 = a * 43.0 + ...
10
votes
9answers
409 views

Improving really bad systems

How would you begin improving on a really bad system? Let me explain what I mean before you recommend creating unit tests and refactoring. I could use those techniques but that would be pointless in ...
9
votes
2answers
1k views

Can you Create your Own Hook in Drupal?

Is it possible to create your own hook in a Drupal module for other Drupal modules to consume? If not, is there a mechanism in Drupal for third party developers to provide hooks? If everything's ...
8
votes
9answers
1k 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 applications, it's ...
8
votes
11answers
2k views

Are there any Technical Advantages on Mainframe (or any other legacy systems)?

Background: I believe most of the major financial institutes and major retailers still have many critical business processes and data relied on the legacy systems, such as Mainframe. Many developers ...
6
votes
2answers
306 views

Where in the world are encrypted software in cash registers required and in that case what security measures are required?

Background Sweden is transitioning to a compulsory law for all business owners handling cash or card transactions, to implement/buy partially-encrypted POS (point of sale)/cash registers: Signing ...
5
votes
5answers
212 views

Where can I start looking to better understand how computers work?

I've been trying to figure out what computer field I want to go into later on in life. College is just around the corner for me and I've considered looking into Computer Engineering, Software ...
5
votes
9answers
917 views

Do you design/sketch/draw a development solution first and then develop it? If so how?

I work a lot with decision makers looking to use technology better in their businesses. I have found that a picture is worth a thousand words and prototyping a system in a diagram of some sorts ...
5
votes
1answer
298 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 software . I have a ...
5
votes
6answers
1k views

A Career in Operating Systems?

I'm currently taking a class in operating system development. I really enjoy the course work and find myself doing extra credit on every assignment. I have also been working on some open source OS ...
4
votes
1answer
806 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't seem to be ...
4
votes
2answers
182 views

Is it wrong to get feedback from Stack Overflow on a live system architecture?

I am the technical director at a startup, and I will eventually be tasked with implementing a "real" system architecture when we hire more programmers. Right now our clients are small enough, and it ...
3
votes
3answers
112 views

Force Specific Struct Size in C

For various reasons, I have some structs I want to force to be specific sizes (in this case 64 bytes and 512 bytes). Both however, are below the somewhat below the sizes I want them to be. Is there ...
3
votes
4answers
1k views

Best way to solve a linear equation in code [closed]

Possible Duplicate: Solving a linear equation I need to programmatically solve a system of linear equations in C# AND VB Here's an example of the equations: 12.40 = a * 56.0 + b * 27.0 + ...
3
votes
1answer
85 views

Can applications running in ring0 be secure without formal verification?

How can one ensure security without formal verification of a program that runs in ring0? Could a VM be used without differing userspace kernelspace?
3
votes
3answers
834 views

Exactly how accurate is IP Geolocation?

I'm setting up a iPhone tracking system for my friends, so they can submit their location to my website by their iPhone, anywhere, anytime - by WiFi or cellular data. The website will use Google Maps ...
3
votes
3answers
363 views

What other systems beside Erlang are based on “Green Processes”?

I was reading this informative page on Green Thread (Wikipedia) and I wonder: what other programming systems rely on "green processes" beside Erlang? Edit: " Green Thread != Green Process " Green ...
2
votes
3answers
40 views

C programming and xCode

I am currently enrolled in a C systems programming course, I want to use Xcode (instead of vi). What type of project do I create when I open Xcode? Thanks
2
votes
2answers
115 views

Is there a Ruby on Rails host that supports FTP?

I'd like to create a development integration server that's on the open internet, running a Ruby on Rails app. But I need FTP or SFTP access to this server, so I can upload files to the codebase via ...
2
votes
2answers
333 views

monitor bytes in stdin, stdout, and stderr in C

I need to count how many bytes are being sent to a child process through stdin, and how many bytes a child process is writing to stdout and stderr. The child process calls execvp, so I have no way to ...
2
votes
3answers
265 views

Confusing in fork( ) system call

I have created a parent and a child process using fork( ), and both share a memory address called "ptr". But i am confused due to the one output of a program: 1) Address of ptr: 123456 NOTE: Same ...
2
votes
4answers
169 views

How does an OS or a systems program wait for user input?

I come from the world of web programming and usually the server sets a superglobal variable through the specified method (get, post, etc) that makes available the data a user inputs into a field. ...
2
votes
2answers
233 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 of socket IO. This ...
2
votes
3answers
1k views

monitor which process modified a file under FreeBSD/Linux

From time to time, a file that I'm interested in is modified by some process. I need to find out which process is modifying this file. Using lsof will not work, nor does kqueue. Is this possible ...
1
vote
2answers
46 views

How to describe a platform to non-developers? [closed]

I've been trying to describe the concept of platforms to some non-developer people on my team. I'm trying to explain how platforms are more than just tools and environments. For example, the Facebook ...
1
vote
2answers
72 views

debugging minifilters

I have been writing and debugging a minifilter on Windows 7 using the IFS Kit for some time now. it finally works, but as I require to add further functionality, I will spend some more days playing ...
1
vote
0answers
364 views

Larman's System Operation Contracts - CRUD example

I have some confusion with applying Larman's system operation contracts (OO Analysis from book Applying UML and Patterns) on CRUD-like operations. More precisely, I'm confused with postcondition part. ...
1
vote
4answers
330 views

PHP 5.3 only Systems/Frameworks

What PHP systems or frameworks have gone 5.3 only, or contain a significant number of features that require/take-advantage of PHP 5.3?
1
vote
2answers
132 views

Mac os x systems programmng and bsd

I'd like to get into some mac os x systems programming and wondered, although mac os x is a Mach and bsd hybrid, would a bsd programming book suffice since I can't seem to find any books on mac os x ...
1
vote
4answers
396 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 these paradigms?
1
vote
2answers
174 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 in GC?
1
vote
5answers
3k 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 give me any ...
0
votes
0answers
14 views

Is JColibri functional yet?

I am building a case-based reasoning system in Colibri Studio, but I keep running into build errors. The documentation is sparse - does anyone else successfully get Colibri Studio to properly build in ...
0
votes
0answers
24 views

Advice on outsourcing IT Management / Systems Administration tasks [closed]

Need some help folks. Situation: we want to outsource some of the management of our network because our IT Manager is going on maternity leave and we don't want to replace her with a high priced ...
0
votes
1answer
36 views

Architecture ideas for multiple plugable payment systems in one application?

We have been developing an e-commerce application for a year now and we started doing business in different countries. This means having to implement a number of very different payment systems inside ...
0
votes
1answer
252 views

Execute an external executable within the same process space in C++

I'm trying to find an easy way to execute a java vm in windows using a C++ wrapper. I can use CreateProcess() to launch java.exe directly with all of my parameters that I need to give it. The problem ...
0
votes
0answers
476 views

ipad/iphone: control camera movement or lighting switch using iPad(use iPad as remote control)

please help me and guide me to correct path. Requirement is I have a camera or lighting switches which need to be controlled by iPad. In case of camera I have to control the movement of camera ...
0
votes
1answer
33 views

PHP blueprinting\analyst

Im new to PHP, and was wondering the best way to 'blueprint' a PHP application. I cant find any solid fundamental way to do this. Any suggestions\resources would be helpful. Right now we are taking a ...
0
votes
3answers
679 views

Why can't I set JAVA_HOME and JRE_HOME to something else?

I'm running ubuntu and djatoka (which runs in tomcat) won't work with OpenJDK. So I set JAVA_HOME and JRE_HOME to the Sun java that I downloaded and exported the variables. When I start tomcat, it ...
0
votes
0answers
12 views

Time trigerred protocol for Distributed Embedded System

Since TTP is based on TDMA. If number of nodes are large for communication, then how TTP will work for distributed system. As number of slots will increase (slots = number of nodes).
0
votes
1answer
95 views

How to run a .net application which uses sql , on two or three or multiple computers?

I have a simple .net windows form which inserts user input into sql database. Now i want to run sql server only on one system and connect the other three systems to the main system on which sql is ...
0
votes
1answer
84 views

Android systems files ,<resource> and <assets> in particular

I am trying to write a code that lets me programmatically switch a file from one of my resources folders to my assets folder. I have tried the usual method that has worked so very well for me in the ...
0
votes
1answer
149 views

Bash PATH: How long is too long?

I'm currently designing a software quarantine pattern to use on Ubuntu. I'm not sure how standard "quarantine" is in this context, so here is what I hope to accomplish... Inside a particular ...
0
votes
1answer
27 views

CounterPoint 8.3.9 and Cyrillic fonts

Guys, does anybody ever try to print messages on your invoices using language other then English? I am using Okidata matrix printers for invoicing and while Crystal prints everything perfectly fine ...
0
votes
1answer
35 views

isControllable and isObservable maple functions: Is there a way to make them show steps?

So we can use isObservable to work with some systems but I wonder If we can make tham show staps or do something like that. Is that possible?
0
votes
1answer
44 views

Distributed web services?

I'm wondering, is it possible to have many servers with the same web service deployed and then put them to communicate together? Can you make a distributed system (having transparency, being failsafe ...
0
votes
1answer
422 views

How does the pstack command work?

I am curious to find how does the pstack command prints the stack trace of all the threads running under the PID? It has to be someway different than the way gdb does since the process runs inside ...
0
votes
2answers
525 views

distributed system programming with php

I'm doing a system for a hospital in my country as the final year project of my degree, my supervisor specially asked me to use php and mysql for this. i don't have any experience with distributed ...
0
votes
3answers
573 views

Do I need a separate server to implement an ESB (e.g. Apache Camel, Mule)?

Do I need a separate server to implement an ESB (e.g. Apache Camel, Mule) ?
0
votes
2answers
342 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 have really ...

1 2