Questions tagged [transmission]

For questions relating to data transmission.

Data transmission is an increasingly important part of software design, particularly with regard to the secure transmission of private information and the variety of ways that data can be trasmitted.

Transmission can also refer to Transmission, the BitTorrent client.

228 questions
1
vote
2 answers

How to prevent AJAX server side transmission?

Not asking how to abort AJAX. In this case, does anyone know how to prevent the server from transmitting? For example, in dynamic pagination, a user may scroll 1 line at a time rapidly, causing many requests. This can easily be cancelled on…
user1382306
1
vote
2 answers

css3 background-position change without roll over?

Is there a way to cross fade a background image with CSS3 Transitions. Basically need the exactly like "twitter hover" in this video http://youtu.be/uCcQHXeiPTY eg: opacity 0.5 to 1 like that I'm new in CSS3 :( HTML & CSS
Mo.
  • 26,306
  • 36
  • 159
  • 225
1
vote
2 answers

-Java- Data 'loss' in TCP (strange, since TCP doesn't allow the data to escape)

first of all, I know there are already a couple of posts here about similar issues, but I've gone through them and their problems were not mine nor their solutions solve my problem. If anyone has a post which solves my question, please reply with…
1
vote
1 answer

[Android]Determine the transmit power of a wifi tethered device without rooting the phone

I need to determine the transmit power value of a a tethered wifi network in ad-hoc mode. The current wifi tether applications in Android are mainly using iwconfig to configure the tethering which is an unofficial API. Using this API it is…
insyncim64
  • 125
  • 1
  • 8
1
vote
3 answers

Remote Transmission session doesn't respond after providing corrent session id

Well, that would be a rather obscure topic but I'll give it a try, maybe someone will know the answer. I am writing a little remote Node.js client for the Transmission BitTorrent Client. Communication is handled via RPC using JSON objects. Here is…
Przemek
  • 6,300
  • 12
  • 44
  • 61
0
votes
1 answer

How do find transmission delay of a network?

In my book it says that transmission delay=(length of the packet)/(transmission speed). However in all of the study problems they do not follow this logic. For example, they ask for the transmission delay of a 1,000 byte packet over a 1Mbps…
user1205853
  • 651
  • 2
  • 8
  • 14
0
votes
1 answer

transmission-daemon web interface

I'm set up transmission-daemon on my remote server. But I can't to make RPC (web interface) work. //Ubuntu server 10.04.3 LTS Here is my config /var/lib/transmission-daemon/info/settings.json { "alt-speed-down": 50, "alt-speed-enabled":…
Shara
  • 801
  • 3
  • 11
  • 23
0
votes
2 answers

Sending files through connect direct from UNIX to MAINFRAME

I am sending a file from UNIX to MAINFRAME server via connect direct. I am able to upload the file successfully.At the destination host, when the file is received it is not readable and not in the same format as I sent from the UNIX server. Below is…
Sachin
  • 20,805
  • 32
  • 86
  • 99
0
votes
1 answer

Adafruit LoRa RFM96W payload limit is 252 bytes but I want to send 512 bytes of data

So basically I have a numpy array, its shape is (8,64) after array.tobytes() and len(array) is 512. And the send() function in the adafruit_rfm9x library has a payload limit of 252 bytes. Is there any way to do it? Parameter in both…
0
votes
0 answers

Synchronization of two(2) decoder [SSTV and AFSK]

I am currently working on my Android-based application capstone project, where I have integrated two decoders: the SSTV (Slow-Scan Television) decoder and the AFSK (Audio Frequency-Shift Keying) decoder. The SSTV decoder processes images received…
0
votes
1 answer

Implementing CRC in Java for a hex string

I have been tasked with implementing a CRC using Java. I wasn't given a specs to follow, but I am following this PDF: https://cdn.standards.iteh.ai/samples/6904/2c02d323a7ae41838de8b8b806cf3725/ISO-2111-1985.pdf I was given two sample strings to…
AliasDan
  • 3
  • 3
0
votes
1 answer

How to find the original image from a binary string "1001011110001...." using Pillow python?

def binaire2image(binaires): r = 100 while True: try: c = len(binaires) // 8 // r v = [binaires[i:i+8] for i in range(0, len(binaires), 8)] d = [int(n, 2) for n in v] arr =…
0
votes
0 answers

EtherCAT CoE acyclic data transmission triggered by internal event implementation

I am totally new to EtherCAT. I have Microchip LAN9255 based EtherCAT slave device and TwinCAT3 software tool as EtherCAT master. Some configuration data are required to send from EtherCAT master (TwinCAT3 master) to LAN9255 EtherCAT slave. This…
Ravi
  • 1
  • 1
0
votes
0 answers

Using RF Modules with Raspberry Pi Pico

I have 2 Raspberry Pi Picos running MicroPython. I am trying to use a 433 MHz RF transmitter on one Pico and a 433 MHz RF receiver on the other Pico. I am currently using UART to transmit and receive data: # Receiver import os import machine from…
0
votes
1 answer

Why is nginx container redirecting my private domain to a different location?

I kind of avoided using Nginx because it didn't match my needs across the years. But now, I find myself forced to start using it. Goal: to have a private "ho.me" domain and with it, to go to my 2 containers: /t to my Transmission server container…