transfer is the process of moving data from one physical or virtual location to another
Questions tagged [transfer]
1194 questions
3
votes
1 answer
Send binary file over serial with pyserial and python 3.4
I am trying to use python to send a binary file over serial COM port in windows and then write that same stream to a file. In essence, I am trying to make a copy of the file, but since that is not my ultimate goal, I don't want to use shutil or…

TheEmpireNeverEnded
- 155
- 1
- 9
3
votes
3 answers
Can an iPhone application running in the background transfer data via USB interface?
There are 2 iPhone applications. One application running in the foreground and the other running in the background. Is there any way to get the background application to send data over USB without coming into foreground? Ideally we want to keep…

Lexy
- 31
- 1
3
votes
2 answers
Browser to S3 file transfer via Node
Background
I want to create an input on my React/Redux SPA that takes in a file (attachment) which will then be stored in my Amazon S3 bucket.
I have the input taking a file from the local machine and sending it to my Node API fine, I have a…

Suni
- 633
- 8
- 16
3
votes
1 answer
Z-Transform Poles and Zeros Locations on MATLAB
I am implementing an FIR Filter described as below:
y(n) = x(n) + 2x(n-1) + 4x(n-2) + 2x(n-3) + x(n-4)
Where there are no poles in this system.
Computing the transfer function on MATLAB yields HZ = 1 + 2 z^-1 + 4 z^-2 + 2 z^-3 + z^-4 which is…

Tes3awy
- 2,166
- 5
- 29
- 51
3
votes
1 answer
macOS, Swift 3: How to get data back after segue?
For example: I have two UIViewControllers. The first has a button and a NSTextField, and the second has a NSTextField only.
When I click the button on the first controller — the second controller shows as popover window.
Making a transfer of some…

Max Vecheslavov
- 95
- 5
3
votes
2 answers
Data transfer via bluetooth between paired Android and Raspberry PI
I am working on a project where I need to transfer data between android and raspberry pi via Bluetooth. However, I am new to this and I don't have deep understanding on what happens when two devices are paired. Based on assumption that the two…

HumbleBumble
- 45
- 1
- 7
3
votes
0 answers
How to transfer big file from iphone to PCB by BLE
I am developing an iPhone app. the app will connect with a PCB Board by BLE and sending command.
What I have done is App did connected with Board by BLE and App can send signal to Board.
My Question is How can I transfer big file (> 500Kb)?
I…

user418751
- 1,937
- 2
- 18
- 21
3
votes
1 answer
Sending big files in socket programming c#
I want to send big files with socket in c#. File can be transferred but when I want to open it, I see it is damaged. What's the problem?
I broke the file to 2KB in array in client code and send it. Then, in server code, I received it and put it in…

R.MSZD
- 39
- 1
- 1
- 2
3
votes
0 answers
SendFile and transferTo in Java
I am using CentOs Kernel version 2.6.32.I plan to do a test with and without transferTo(sendFile) using NIO. My Test is to copy a 1GB file from one directory to another. However i didn't find any significant performance improvement because of using…

user3374023
- 31
- 6
3
votes
1 answer
how to create two-dimension list in R
I want to transfer matlab code into R, ctlist is a vector, matlab code as folllowed:
telist{i,j}=ctlist;
[value,number]=max(ctlist);
I just wonder there is "data structure" in R like the telist{i,j} in matlab

Cheng
- 193
- 3
- 10
3
votes
2 answers
How select json value in soapui property transfer from HTTP request?
Here is a raw response:
HTTP/1.1 200 OK
Date: Tue, 21 Oct 2014 08:46:31 GMT
Content-Type: application/json;charset=UTF-8
Transfer-Encoding: chunked
Server: Jetty(9.2.2.v20140723)
{"id":"myId"}
I tried to set Property (source is response from…

Cherry
- 31,309
- 66
- 224
- 364
3
votes
1 answer
Saltstack: Transfer multiple files (using wildcard?)
I'm new to Staltstack and I'm starting to do some tests with it, however, I'm facing a small issue and I cant find how to solve it.
I would like to transfer all the files inside a path on the master to a slave, however, I can't get it to…

jrance
- 35
- 1
- 5
3
votes
2 answers
Using GameKit to transfer CoreData data between iPhones
I have an application where I would like to exchange information, managed via Core Data, between two iPhones.
Has anyone attempted this and if so what is deemed to be the best approach to doing so (i.e. are people using some intermediate format such…

Urizen
- 2,331
- 6
- 23
- 33
3
votes
1 answer
Using cURL to download large XML files
I'm working with PHP and need to parse a number of fairly large XML files (50-75MB uncompressed). The issue, however, is that these XML files are stored remotely and will need to be downloaded before I can parse them.
Having thought about the issue,…

ndg
- 2,585
- 2
- 33
- 58
3
votes
1 answer
Paramiko equvalent of pipeline controls and input/output pipes
I need a method of paramiko based file transfer with a lightweight SSH2 server (dropbear) which has no support for SCP or SFTP. Is there a way of achieving a cat and redirect style file transfer, such as:
ssh server "cat remote_file" >…

chris
- 7,222
- 5
- 31
- 37