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

805 questions
288
votes
11 answers

What is a Data Transfer Object (DTO)?

What is a Data Transfer Object? In MVC are the model classes DTO, and if not what are the differences and do we need both?
46
votes
16 answers

Remote Linux server to remote linux server dir copy. How?

What is the best way to copy a directory (with sub-dirs and files) from one remote Linux server to another remote Linux server? I have connected to both using SSH client (like Putty). I have root access to both.
Arun Agrawal
37
votes
6 answers

Sending POST data without form

Can i send for example a string or another piece of information to another .php file without it being exposed [thus not by GET but by POST conform to what i know] without using a form?
Samuel
  • 17,035
  • 16
  • 45
  • 83
33
votes
5 answers

When should I use transactions in my queries?

I'm reading very detailed tutorials on how to use transactions with database types and database engines, but I haven't found a guide that teaches me when and why I should use them. I know transactions are usually used for banking, so when we work…
vitto
  • 17,510
  • 29
  • 87
  • 128
26
votes
3 answers

MySQL: SELECT from another server

I'm afraid that I already know the answer to my question, but I'll ask it anyway: When there are two MySQL DB servers, can I access data that is stored on the other server? In other words: Can I somehow do this: INSERT INTO table (x, y, z) …
BlaM
  • 26,721
  • 31
  • 89
  • 104
21
votes
1 answer

What is Inbound/Outbound data transfer?

Amazon allows free inbound data transfer, but charges for outbound data transfer. I don't understand what that exactly means. Does this means that data you upload to amazon is free, but data you download is not? This question may be silly but I want…
Camilo Sanchez
  • 1,082
  • 2
  • 10
  • 16
20
votes
1 answer

How to use pinned memory / mapped memory in OpenCL

In order to reduce the transfer time from host to device for my application, I want to use pinned memory. NVIDIA's best practices guide proposes mapping buffers and writing the data using the following code: cDataIn = (unsigned…
krisg
  • 271
  • 2
  • 11
18
votes
2 answers

jQuery UI - draggable / droppable dataTransfer is undefined

This is driving me mad. Please forgive me but I'm not going to post the full code as it is (I believe) irrelevant. The reason behind this is obviously with my code. I was getting the following error: draggable / droppable dataTransfer is…
Phil Jackson
  • 9,936
  • 20
  • 92
  • 127
18
votes
6 answers

Can we move Google Analytics data to other account?

Started a webpage that now contains a lot of analytic data. Now that I have the client GA Tracking ID I would like to move the data I already have to that account. Is this possible? I get the Google Analytics API, I can always fetch all the data…
balexandre
  • 69,002
  • 44
  • 219
  • 321
17
votes
5 answers

Transfer file out from HDFS

I want to transfer files out from HDFS to local filesystem of a different server which is not in hadoop cluster but in the network. I could have done: hadoop fs -copyToLocal and then scp/ftp . As the data is huge and…
dipeshtech
  • 374
  • 1
  • 5
  • 16
16
votes
3 answers

How to transmit Android real-time sensor data to computer?

I wish to transmit real-time sensor data collected by Android smartphone to my computer and do the signal process on my computer. How may I achieve that? Any helpful links to tutorials are very well welcomed. Either by wireless means or USB cables…
Sibbs Gambling
  • 16,478
  • 33
  • 87
  • 161
15
votes
3 answers

Techniques to Reduce CPU to GPU Data Transfer Latency

I've been looking into ways to reduce the latency caused by transferring data back and forth from the CPU and GPU. When I first started using CUDA I did notice that data transfer between the CPU and GPU did take a few seconds, but I didn't really…
sj755
  • 3,624
  • 13
  • 54
  • 76
14
votes
4 answers

Javascript string comparison fails when comparing unicode characters

I want to compare two strings in JavaScript that are the same, and yet the equality operator == returns false. One string contains a special character (eg. the danish å). JavaScript code: var filenameFromJS = "Designhåndbog.pdf"; var…
13
votes
4 answers

Using shader for calculations

Is it possible to use shader for calculating some values and then return them back for further use? For example I send mesh down to GPU, with some parameters about how it should be modified(change position of vertices), and take back resulting…
Raven
  • 4,403
  • 7
  • 41
  • 71
13
votes
1 answer

How to add a file into an already existing dataTransfer object using Javascript

Assumption: A local HTML/Javascript webpage that has access to file:// At the start of a drag on a draggable HTML element, in the event handler function dragStart(e), how do I add a File object so that it is recognized as a file and ends up in the…
1
2 3
53 54