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
0
votes
1 answer

Do I need a USRP2 block in GRC in order to use the USRP2 hardware?

I am trying to find the USRP2 blocks in order to utilize my USRP2. In alot of examples their exists a USRP2 Source that they use and maybe thats the reason why I'm not able to actually send and receive a signal using two USRP2's. We turn on the…
0
votes
5 answers

securely send data from one site to another?

I am going to post some data from one website to another website. I need a way for the receiving website to be sure that the data was sent from the sending website and not sent by some other malicious user. I am using PHP4. How can I do…
JD Isaacks
  • 56,088
  • 93
  • 276
  • 422
0
votes
1 answer

Copy a single source row to multiple destination rows by matching a common 'Date' field with SSIS

Here's the scenario: I'm an SSIS virgin, but I found an excuse to start playing with it. I have a single Excel source dataset in the following format, with each row representing one month (the last day of the month): [Date] [Value] 4/30/2008 …
Cᴏʀʏ
  • 105,112
  • 20
  • 162
  • 194
0
votes
1 answer

How can I transfer data to the scanned bluetooth devices in android?

I'm am new in Android development. How to transfer data to the scanned bluetooth devices in android?
Deepthi G
  • 79
  • 2
  • 10
0
votes
2 answers

PHP: Move data from one php database app to another on a different server

I have two php database apps on different servers. I would like to be able to transfer the data from a particular record from the first server to the second, with some processing inbetween to account for the differences in database schema. The two…
yoda230
  • 449
  • 6
  • 14
0
votes
1 answer

data transfer in php

I am implementing kerberos in php. Here, a trusted authenticating server issues ticket for the purpose of authenticating client to other server. Thus there involves transferring of tickets and ids, etc among the three entities( auth server, client…
-1
votes
1 answer

streamlining spreadsheet to DB copying Python

A friend of mine has asked me to write a quick Python script. He has a small SQLite database (3 tables) and has to copy a bunch of data to it from an excel spreadsheet. The spreadsheet only has 2 data fields but alot of rows of data. He asked if I…
Icsilk
  • 567
  • 1
  • 5
  • 9
-1
votes
3 answers

PHP to take information from one page to another

i am quite new to php and i have this shopping cart up which shows images. product name and details from mysql database. the code for it is the following:
Jahed
  • 75
  • 1
  • 3
  • 13
-1
votes
0 answers

why naberValue doesnt go to other-page.html

This is main.js const express = require("express"); const bodyParser = require("body-parser"); const path = require("path"); const app = express(); app.use(bodyParser.urlencoded({ extended: true })); app.get("/", (req, res) =\> { const indexPath…
-1
votes
0 answers

Add values in datagridview to listview in vb.net?

I have same problem with transfer data from datagridview to listview I tried it but its not working..because my data gridview is in another form and my listview is in another form..i want if i click button my records in datagrid will be transferd…
-1
votes
1 answer

Data Transfer Between Sibling Components in Angular

I have two sibling components and a parent components. I want to transfer array data in child-two to child-one. parent.component.html
-1
votes
1 answer

Ec2 vs S3 data transfer charges

I am trying to understand the cost implications between S3 and Ec2. I found this a nice article but it triggered me the following confusion. Everywhere the article says that the S3 and Ec2 data transfer are free if it is in the same region. But, in…
-1
votes
2 answers

SPI Communication On STM32F407VGT6

I'm pretty new to the STM32 world, and I'm trying to get my SPI communication to work. I have it running in Master mode and configured to Software Slave management mode. And I'm using a simplex comm. format with transmission only from the Master…
-1
votes
1 answer

send data from mysql to another mysql server using nodejs

how to send data from my SQL to another MySQL server using node JS i am trying rabbit M Q technique but not understand the configuration of this technique please give better solution
-1
votes
1 answer

Socket programming Python server side gets stuck when received msg from client

I wanted to create a software that can send video through socket programming. I can send 1 video at a time but when I want to send more than 2, it is stuck. Below is the server code: import socket import os IP = "127.0.0.1" PORT = 4456 SIZE =…