1,898 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
114
views
Cypress not receiving push notifications that typically work in Chrome
Overview
I have a Quasar application setup with InjectManifest (and Vite, if that matters) for access to custom service workers.
When running Quasar normally (PWA mode), push messages are received ...
2
votes
1
answer
268
views
Rails turbo stream broadcasting, does `respond_to` cancel broadcast?
In Rails 7/turbo-rails 2, my Comment model is set up to broadcast creates/updates/deletes like this:
broadcasts_to(->(comment) { [comment.target, :comments] },
inserts_by: :...
0
votes
1
answer
245
views
Issue with turbo frame, turbo stream on record update after background job process
I am having issue using turbo frame and and turbo stream:
There is a detailed version of the implementations and the logs.
setup
Ruby 3.2.0
Rails 8.0.1
# config/routes.rb
Rails.application.routes.draw ...
0
votes
0
answers
37
views
Receive Broadcast UDP Datagram Packet
An application running on the iPad is sending out a broadcast message once every 10 seconds on Port 6122. The goal is to read this message in my Laptop. I'm running the below C# program in my Laptop....
1
vote
2
answers
486
views
ESP32 Successfully Sends UDP Packets, but .NET Program Fails to Receive Them
I have been trying to set up a simple UDP handshake function on an ESP32 that broadcasts packets over my local network on a specific port, so a .NET application running on a PC (Win10) on the same ...
1
vote
0
answers
75
views
Communicating between two domains with postMessage()
I was trying to communicate between two tabs opened in the same browser. Both of the tabs have different domain (page1.local and page2.local). I used the following code, but it is working only if the ...
1
vote
1
answer
126
views
Why Spark won't store Broadcasted data in off heap memory? Why does it store one copy per executor?
When we broadcast a dataframe (let's say broadcast joins), it broadcasts the same copy of dataframe to all the executors, i.e. each executor (not node, but executor) will hold one copy of the data. So ...
0
votes
1
answer
231
views
Laravel Broadcasting Events from Queue Job Not Triggering Filament Livewire Listener
I'm working on a Laravel/Filament application where I need to broadcast events from a queued job to update a Filament RelationManager's state.
Setup
I have a queued job that generates an analysis for ...
0
votes
0
answers
192
views
UDP Broadcast Packet Captured by Wireshark but Not Received by Python Socket (even after binding correctly)
I'm trying to implement a UDP communication system where a sender broadcasts a packet, and a receiver (Python code) listens for it. The packet is successfully captured by Wireshark on the receiver ...
1
vote
0
answers
49
views
MPI_Bcast not Bcasting
I am running an MPI application on 32 processes.
The stdout of the rank 0 process tgets sent to a separate file for startup error logging, we will call this file STARTUP_ERROR while the stdout of all ...
0
votes
1
answer
172
views
broadcast addresses for all local netowk interfaces AND their prefix lengths
I know that question about broadcast address was many times discussed. But I did not find any, when the answer considered netmask prefix length in the calculation of broadcast address.
All answers ...
1
vote
0
answers
56
views
Can I use route model binding in channel routes?
I want to use route model binding in channel route via customizing the key (https://laravel.com/docs/10.x/routing#customizing-the-key). I've created a channel in route:
Broadcast::channel("users.{...
0
votes
0
answers
41
views
Social-application: Broadcast auth take too long
I want to build a social application using Laravel 11, React and Reverb for websoket, I got this problem when connect to multiple channel for each conversation, each channel require auth, and it very ...
1
vote
0
answers
579
views
SMS Broadcast Receiver in Android Studio
I need an App that starts itself when a message either from a specific number or with a specific text comes in. I set up a SMS Broadcast Receiver, setup the permissions in the AndroidManifest, and in ...
1
vote
1
answer
198
views
Laravel / Pusher, broadcasting/auth, Broadcast channel not working correct
I'm trying to use one Server (Backend) as source to transmit data to private channels.
Trying as Client another place/machine (mob app / , server/client), connect to private channel to be able to read ...