Questions tagged [communication]

Communication is the activity of conveying information.

Communication (from Latin "communis", meaning to share) is the activity of conveying information through the exchange of thoughts, messages, or information, as by speech, visuals, signals, writing, or behavior.

Source: http://en.wikipedia.org/wiki/Communication

2464 questions
11
votes
1 answer

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 return data at arbitrary times, so Thread a may be…
Anil Vaitla
  • 2,958
  • 22
  • 31
11
votes
9 answers

Serial comm with PHP on Windows

I am looking for a way to communicate with RS232 serial COM port on windows. I have found 2 solutions on the net, one which is not totally free (introduces deliberate delays on the function) and another with limited capability on Windows. The latter…
syaz
  • 2,659
  • 6
  • 36
  • 44
11
votes
2 answers

How to make A2DP and HSP work simultaneously

I have a bluetooth headset. When connecting it to Windows 10, it installs two profiles in Playback devices list: Hands-Free. (HSP profile) Stereo. (A2DP profile) The Second one (Stereo) is set to be the "Default Device" and the "Default…
onlyforthis
  • 444
  • 1
  • 5
  • 21
11
votes
4 answers

Easiest form of process communication in Scala

What I want to do: I want to add communication capabilities to a couple of applications (soon to be jar libraries for Java) in Scala, and I want to do it in the most painless way, with no Tomcat, wars, paths for GET requests, RPC servers, etc. What…
jmora
  • 491
  • 3
  • 14
11
votes
9 answers

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 brain spark moment becomes a new…
Achilles
  • 11,165
  • 9
  • 62
  • 113
11
votes
0 answers

Serial Converter in Java

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, RS422 and RS485. Furthermore there should be a…
msp
  • 153
  • 1
  • 8
10
votes
4 answers

Arduino stops sending data to the serial port after a long time period

I am using an Arduino Uno rev2 device as a permanently connected device that sometimes sends signals to a PC (Windows 7 x64). Code compiled with Arduino 1.0 software from arduino.cc Topic on arduino.cc, Arduino stops sending data to Serial after a…
Max The Cat
  • 401
  • 2
  • 5
  • 16
10
votes
1 answer

Communication between the View and Model in MVC

After reading from many different sources, I am very confused about how View and Model should communicate in the MVC pattern. To my understanding, the accepted answer of this post and this article from Apple are saying the communication of the two…
derrdji
  • 12,661
  • 21
  • 68
  • 78
10
votes
3 answers

Telegram Bot send Message to bot

I have programmed a telegram bot. This works fine when sending to groups or to users. However I do a special requirement. I need to be able to send to another bot. When adding both bots to a group as administrators. I still cannot receive the…
RG01
  • 121
  • 1
  • 1
  • 9
10
votes
2 answers

Communication in Netty Nio java

I want to create a communication system with two clients and a server in Netty nio. More specifically, firstly, I want when two clients are connected with the server to send a message from the server and after that to be able to exchnage data…
Jose Ramon
  • 5,572
  • 25
  • 76
  • 152
10
votes
2 answers

What are the good alternatives for communication between local C++ and Java programs?

By "local" I mean both run in the same subnet, in most cases the same host/VM, therefore some standard cross-network cross-platform RPC mechanisms like SOAP, XML-RPC, CORBA, etc. seem unnecessary. The payload is mainly numerical (mostly tabulated)…
10
votes
1 answer

Connection through COM port between host and guest in VirtualBox

I am running a certain application on Ubuntu (16.04) in VirtualBox, while VirtualBox is running on Windows 10 (host). In Simulink (running on my host), I have a simulation where at the last stage, I gather some values. I want to output these values…
Lis
  • 105
  • 1
  • 1
  • 6
10
votes
1 answer

How should I communicate between activities?

I have 3 buttons. Button A, B, and C. Button A resides in Fragment. It starts intent (activity). Within the new activity button B and C reside. Button B says "NEW" while button C says "OK". What I want to do is after clicking button B ("NEW") the…
Carl
  • 249
  • 2
  • 5
  • 13
10
votes
1 answer

Reverse-engineering of communication protocols

Just curious - what are some automatic or even semi-automatic techniques for reverse-engineering of communication protocols? I am particularly interested in the case when one's sniffing traffic and trying to understand the protocol. I could find a…
JohnIdol
  • 48,899
  • 61
  • 158
  • 242
9
votes
4 answers

PC to PC USB communication

How can I communicate between two PC's via USB? I want a program to send numbers trough the USB port to another PC on which another program would show these numbers. I have the feeling that this is impossible because PC's are meant to be hosts and…
user1214513
  • 273
  • 2
  • 5
  • 10