Communication is the activity of conveying information.
49
votes
15answers
2k views
Explaining why “Just add another column to the DB” is a bad idea, to non programmers
I have sales people and bean counters who are trying to sell customizations to clients, which is fine. But when a complex change request comes in that I send back a large estimate for, they get ...
39
votes
8answers
40k views
Can two applications listen to the same port?
As simple as it gets - can two applications on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to ...
33
votes
12answers
1k views
Designers and developers working together
The rich presentational capabilities of WPF and Silverlight mean developers like me will be working closely with graphic designers more often these days, as is the case in my next project.
Does ...
26
votes
15answers
4k views
How do you know if you are a bad programmer? Or how do you tell someone they are? [closed]
It is a seemingly taboo subject. I imagine I want people to tell me I have a bad idea or did something totally wrong... but no one ever does. Of course I am part of the same problem, a good friend ...
25
votes
25answers
2k views
Best way to communicate with a programmer to define a project?
What are the best set of details to give to a programmer to define a project?
Simply put, I know what I want done, but I know nothing about programming and so what is the best way to define my ...
22
votes
9answers
13k views
Working with USB devices in .NET
Using .Net (C#), how can you work with USB devices?
How can you detect USB events (connections/disconnections) and how do you communicate with devices (read/write).
Is there a native .Net solution ...
21
votes
8answers
1k views
How do you communicate effectively in a small development team?
I work in a small team (4-5 developers) on a single project. Every member of our team is developing a different functionality from our project and they are highly independent. In fact, some members ...
19
votes
5answers
1k views
Can any finite bit string be found in pi within a reasonable amount of time? [closed]
So, a while back I read a joke that went something like this:
"Never compute pi in binary - because it goes on infinitely and is random, it theoretically contains every finite bit string. So, you ...
18
votes
11answers
11k views
Communication between two separate Java desktop applications
I'm looking to develop two separate (but related) Java desktop applications.
I want the ability for one application to trigger the other, passing in data that can then be edited and passed back, i.e. ...
18
votes
9answers
1k views
How to explain Open-Source to your boss? [closed]
My boss was in the past not really interested in Open-Source. He always was fine, if we developers used a library or framework, that came at no cost. But he was never interested in details.
But some ...
16
votes
15answers
2k views
Explaining race conditions to a non-technical audience
Recently, I found myself having to write up some concerns I have about race conditions in an application that is in development (not by me). This will likely be brought to the attention of ...
16
votes
11answers
472 views
How do you get non-technical folks to appreciate a non-UI problem?
Suppose you're working on an enterprise project in which you have to get management signoff in order for you to develop a new feature set. Usually your management has no problem signing off on some ...
15
votes
6answers
4k views
How can I learn to express myself better? [closed]
I am finding that the difficulty I have expressing my ideas is making it more difficult than it should be to work with other people, even other developers. How can I learn to express my thoughts and ...
15
votes
5answers
15k views
Android apps, communicating with a device plugged in the USB port
I'm thinking about an Android app (with possibly an accompanying physical device), and i'm trying to figure out whether this is something that's feasible.
1) Let's say I plug my Android to my PC. ...
14
votes
1answer
1k views
Communication between Windows Store app and native desktop application
! For the sake of simplifying things I will refer to Windows Store applications (also known as Metro or Modern UI) as "app" and to common desktop applications as "application" !
I believe this is ...
13
votes
7answers
33k views
using serial port RS-232 in android?
I want to send signals via serial port using the JavaComm API classes on an Android device, and here is how I imagine it:
1- the Android device would be: Archos 3.2 which has android 2.2 and USB host ...
12
votes
16answers
679 views
From a Management POV: How much is a code review worth?
It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.
I've worked hand to hand in some code with some of my coworkers and, specially with some of them, code ...
11
votes
8answers
592 views
Ways to improve communication between members on a software team
As the team I am on works to formalize and establish more development practices, I find that communication seems to fail at the following points:
During an informal conversation about a project a ...
11
votes
6answers
36k views
iPhone TCP/IP Socket Server/Client Program
I have read a lot of questions regarding this subject on this website however they didn't quiet answer my question. If you can't be ### about my goal or background skip to the question.
My Goal
Is ...
11
votes
1answer
230 views
Haskell Thread Communication Pattern Scenario
You have two threads, a and b. Thread a is in a forever loop, listening on a blocking socket 1. Thread b is also in a forever loop, listening on blocking socket 2. Both socket 1 and socket 2 may ...
11
votes
0answers
287 views
Serial Converter in Java [closed]
I'm searching for an industrial serial to USB converter.
I want to use it within my JAVA application to communicate with various devices.
Therefore the serial adapter has to provide a mode for RS232, ...
10
votes
2answers
15k views
Android Client Server communication
I have an application in Android which get latitude and longitude from GPS. I want to send these lat and long to server at particular port and want to receive the response of server into my Android ...
9
votes
4answers
19k views
What is the simplest method of inter-process communication between 2 C# processes?
I want communicate between a parent and child process both written in C#. It should be asynchronous, event driven. I does not want run a thread in every process that handle the very rare ...
9
votes
3answers
8k views
How can a WCF service listen the same port as IIS?
I could run a Windows Service hosted WCF service listening http://localhost:80/MyService while IIS was serving pages on http://localhost:80 and both works.
But many places in the internet (like this ...
9
votes
6answers
911 views
Looking for a communication framework for delphi
I am looking for a communication framework for delphi, we know there are so many communication frameworks for other languages , wcf, ecf and so forth, but i have nerver found the one for delphi till ...
9
votes
4answers
170 views
how to get more involvement from employees?
Once a week we have an half hour session where we talk about a few features in our application or explain a customer question to our employees(sales, support, technical services and development). This ...
9
votes
1answer
4k views
TkInter Invoke Event in Main Loop
How do you invoke a tKInter event from a separate object? I'm looking for something like wxWidgets wx.CallAfter. For example, If I create a child object and pass it my root Tkinter.Tk() and then try ...
9
votes
2answers
12k views
Communicate with Activity from Service (LocalService) - Android Best Practices
Common scenario - Activity with a background Service to poll server.
The Service will run periodically via AlarmManager and also perform tasks for the Activity (user hits a button, go fetch something ...
8
votes
11answers
2k views
How to explain “Agile” to a non-developer?
I am looking for ways to explain "Agile" to a non-developer. You could try to summarize it yourself, but a reference to a short article, blog post or podcast could also prove helpful.
8
votes
15answers
893 views
Learn How To Become a Better Writer [closed]
You know how it goes, every other day you'll find someone whether it be at an internet forum or on a spec doc whose literary efforts can be described as abysmal.
These kind of people try to write ...
8
votes
6answers
6k views
How does the Hamming code work?
When transmitting data, the Hamming code apparently allows you to recreate data that has been corrupted over the wire (an error correcting code).
How does this work and what are its limitations, if ...
8
votes
5answers
1k views
is assignment operator '=' atomic?
I'm implementing Inter-Thread Communication using global variable.
//global var
volatile bool is_true = true;
//thread 1
void thread_1()
{
while(1){
int rint = rand() % 10;
...
8
votes
4answers
8k views
Communication between C# applications - the easy way
I have two C# programs and I want to send some data back and forth between them. (And check if the data arrived to the other application.)
The two programs will always run on the same computer, so no ...
8
votes
2answers
2k views
EventAggregator vs CompositeCommand
I worked my way through the Prism guidance and think I got a grasp of most of their communication vehicles.
Commanding is very straightforward, so it is clear that the DelegateCommand will be used ...
8
votes
5answers
811 views
Where is a good place to start with making an application in .NET that communicates through OPC?
Where is a good place to start with making an application in .NET that communicates through OPC?
7
votes
13answers
905 views
Intensive programming reduces communication skills?
This is one of those meta-programming questions that may or may not belong on SO, but here goes...
Have any other programmers out there noticed that their ability to communicate with people ...
7
votes
8answers
404 views
Most efficient format for transfering data to and from embedded devices
I'm having hard time to choose the format on which my server and my end points will communicate with.
I am considering:
JSON
YAML Too hard to parse
CSV
Google Protobufs
Binary packing/unpacking ...
7
votes
5answers
157 views
How do you get your users to report bugs using the appropriate channels?
We've got a nice (IMHO) setup where users can either use a web-based form or send e-mail to a particular e-mail address so that they can report a bug. If they do this, a record is created in the bug ...
7
votes
4answers
1k views
Transfer large data between .net applications on same computer
I have two .net applications that run on the same machine.
The first application is the 'Engine'. It builds images - image's size is about 4M.
The second applications is the 'Viewer'. It shows the ...
7
votes
5answers
9k views
Peer-to-Peer communication options
can anybody confirm what are the currently allowed methods for peer-to-peer communications within the Android framework? I need to transfer json strings and I'm currently using SMS which works ok but ...
7
votes
2answers
1k views
Communication between two iOS devices
I am looking for a way to have one iPhone app send a message to another app on a different phone (sort of like a Sender-Receiver set up). I am looking for the best possible way to do this. Does anyone ...
7
votes
1answer
453 views
Tools to measure MPI communication costs [closed]
I'm using MPI and I want to measure the communication costs, so that I can then compare them to the 'processing' costs, e.g., how much time do I need to scatter a list through n processes and then ...
7
votes
2answers
9k views
Choosing buffer size for FTP and HTTP transfers
How to choose the size of buffer (bytes that I read from or write to socket) for the maximum throughput when I'm implementing a low-level HTTP and FTP transfer? My application should transfer data ...
7
votes
4answers
221 views
how to share common enterprise code between developers
I work with a team of several developers. We develop and maintain many different products which are related to our company. What are some good ways to share code that does common enterprise tasks ...
7
votes
1answer
2k views
Is there any escaping for skype emoticons? [closed]
I'm getting frustrated with skype "emo-formatting" my code/commands that I want to tell others about.
Is there a way that I can get skype to not convert my text to emoticons? e.g. so the person at ...
7
votes
2answers
799 views
Private beta test communication and infrastructure
So your commercial app is in the middle stages of development.. enough that it's usable but still needs refinement, extension, bugfixing. It's far from shippable, but it's stable and complete enough ...
7
votes
3answers
533 views
How can I learn about proprietary hardware communication? [closed]
If I have two pieces of hardware (say a PC with a custom ISA or PCI card connected to a piece of hardware using some crazy cable) and want to see as much as possible about the conversations between ...
6
votes
6answers
967 views
Is 0x9B (155decimal) a special control character? Why is it missing from ascii tables?
I'm working on an embedded system, and i'm having dramas getting it to send a certain chunk of data across the serial port. I narrowed it down and found that if a 0x9B is present in the message, it ...
6
votes
3answers
310 views
Any nice place to communicate with c++/game developers? [closed]
I'm a game programmer working in Korea.
I started Stackoverflow recently and I found it helps me a lot.
Also I think communicating with other developers is a good way to learning and improving myself.
...
6
votes
3answers
665 views
How can I send strings between two computers? [duplicate]
Possible Duplicate:
Beginner for Delphi Network!
I'd like to learn how to make two machines communicate, sending and receiving simple strings. The machines might be on the same LAN--or not. ...

