Questions tagged [data-transfer]

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Data transmission, digital transmission, or digital communications is the physical transfer of data (a digital bit stream) over a point-to-point or point-to-multipoint communication channel.

Examples of such channels are copper wires, optical fibres, wireless communication channels, storage media and computer buses. The data are represented as an electromagnetic signal, such as an electrical voltage, radiowave, microwave, or infrared signal.

While analog transmission is the transfer of a continuously varying analog signal, digital communications is the transfer of discrete messages. The messages are either represented by a sequence of pulses by means of a line code (baseband transmission), or by a limited set of continuously varying wave forms (passband transmission), using a digital modulation method. The passband modulation and corresponding demodulation (also known as detection) is carried out by modem equipment. According to the most common definition of digital signal, both baseband and passband signals representing bit-streams are considered as digital transmission, while an alternative definition only considers the baseband signal as digital, and passband transmission of digital data as a form of digital-to-analog conversion.

Data transmitted may be digital messages originating from a data source, for example a computer or a keyboard. It may also be an analog signal such as a phone call or a video signal, digitized into a bit-stream for example using pulse-code modulation (PCM) or more advanced source coding (analog-to-digital conversion and data compression) schemes. This source coding and decoding is carried out by codec equipment.

Wikipedia: http://en.wikipedia.org/wiki/Data_transmission

915 questions
8
votes
3 answers

How much is in-secure to use rsync in daemon mode without ssh

As we know we can use rsync via ssh to send files between computers especially in different network (e.g Internet) to have some secure transfers. (thats right and we all agree with it) and as we know also rsync does not provide any security while…
Mohammed Shannaq
  • 806
  • 3
  • 8
  • 21
8
votes
3 answers

Failed to obtain the location of the Google Cloud Storage bucket

I am trying to transfer data from S3 to GCS by using a Java client but I got this error. Failed to obtain the location of the Google Cloud Storage (GCS) bucket ___ due to insufficient permissions. Please verify that the necessary permissions…
Dmytro Kulaiev
  • 271
  • 2
  • 6
8
votes
2 answers

How to secure traffic between iOS-app and server?

I am building an app which gets JSON-encoded data from a web server. Right now, anyone can access the server-script that gets the data, and potentially access sensitive data. So, what is the best way to ensure that the app is what's getting the…
Emil
  • 7,220
  • 17
  • 76
  • 135
8
votes
1 answer

Send/receive data with python socket

I have a vpn (using OpenVPN) with mulitple clients connected to a server (at DigitalOcean). The connection is very good and I am able access every client placed behind their respective firewalls when they are connected to their respective routers…
Kolibri
  • 93
  • 1
  • 2
  • 6
8
votes
4 answers

What's the best way to transfer data from python to another application in windows?

I'm developing an application with a team in .Net (C++) and provide a COM interface to interact with python and other languages. What we've found is that pushing data through COM turns out to be pretty slow. I've considered several…
monkut
  • 42,176
  • 24
  • 124
  • 155
8
votes
2 answers

Transfer wiki between different MediaWiki versions manually by copying files

I am using https://bitnami.com/stack/mediawiki which "one-click installs" a mediawiki stack on my MacBook. This means I can point my browser to http://localhost:8080/mediawiki/Main_Page and create my wiki from that page (which I did, putting several…
P i
  • 29,020
  • 36
  • 159
  • 267
8
votes
5 answers

Move data/images between two iOS apps using custom URL handler

After googling around and searching SO for a while, I stil couldn't find an answer - I've wondered, How could I transfer data between two of my apps using custom URL handlers? Specifically images or an NSData object for that matter. I know about…
Shai Mishali
  • 9,224
  • 4
  • 56
  • 83
7
votes
3 answers

Is endian conversion required for wchar_t data?

In C/C++, if a multi-byte wide character (wchar_t) value is transmitted from a big-endian system to a little-endian system (or vice-versa), will it come out the same value on the other side? Or will the bytes need to be swapped?
An̲̳̳drew
  • 13,375
  • 13
  • 47
  • 46
7
votes
1 answer

Data transfer between C++ and Python

I would like to share memory between C++ and Python. My problem: I am working with big data sets (up to 6 GB of RAM) in C++. All calculations are done in c++. Then, I want to "paste" all my results to a Python program. But I can only write my data…
PatrykB
  • 1,579
  • 1
  • 15
  • 24
7
votes
1 answer

What happens when VRAM is full?

I want to know the current nvidia/AMD implementation of handling VRAM resource allocation. We already know that operating systems use swap/virtual memory when system RAM is full, then what is the equivalent of swap when it comes to VRAM? Do they…
manatails
  • 136
  • 3
  • 11
7
votes
9 answers

Should I manually embed the data size info in a TCP transfer?

Imagine that you and me are sending a quite long sentence (say, 1024000 bytes) through TCP. If you write a 1024000 bytes sentence to me, you actually use NetworkStream to write those bytes in. When I receive, should I know in advance the size of the…
Jack
  • 3,913
  • 8
  • 41
  • 66
6
votes
2 answers

Third party datasource implementation for BigQuery data transfer

I want to create a custom datasource for Marketo for google bigquery data transfer. I don't see any specific document to integrate a third party datasource. Kindly provide the steps to integrate a third party datasource.
6
votes
0 answers

Data Transfer size from server to browser (Data downloaded/bandwidth usage)

I am working on a video streaming application in javascript, i want to tell user how much mbs of data user have consumed/used or how much data has been transferred from server to your browser. I can see the data transfer size in network tab of…
cobra87
  • 81
  • 2
6
votes
6 answers

what is more secure -- Data transfer using socket programming OR SSH/SCP/FTP

I am still learning socket programming (using Perl) but I have both options ( socket programming and SSH/SCP/FTP) available to transfer the data from remote machines to my local servers. But I have to select one which is more secure ( encrypted…
Space
  • 7,049
  • 6
  • 49
  • 68
6
votes
3 answers

Send Data From Arduino to Android App via Bluetooth

Hello i can send data from android to arduino but i cant send data from arduino to android via Bluetooth on procesing i dont get any Error but I cant see anything on display of android app.. i used for blueToothSerial.print(XXX); for arduino side ..…
Burak
  • 97
  • 1
  • 2
  • 4
1 2
3
60 61