Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
61 views

With my code which is just a regular RAW input example.... WM_INPUT, RIM_TYPEMOUSE... I'm getting on Windows 10 the full 1,000Hz of my mouse and on Windows 11 I'm getting about 128Hz. How to fix this ...
Gr3g's user avatar
  • 21
0 votes
1 answer
67 views

I have an AKS, Azure App Configuration (AAC) and a Key Vault in my Azure cloud. I have in AAC some environment variables like BgTaskTimer = 10, and in Key Vault DbConnectionString which is added as ...
Mihai Socaciu's user avatar
2 votes
1 answer
112 views

I came across a behavior in SDL3 that concerns me. In SDL3, the standard position of the origin of the screen's coordinate system is in the upper left corner. I tried rendering a simple 100x100 ...
Moritz Holzwarth's user avatar
0 votes
0 answers
18 views

Here in my code when accessed on a PWA(Ipad in my example) the API call is made successfully also the PWA asks for notification permissions but after that there is no notification received on the PWA ...
Siddhant Welinkar's user avatar
0 votes
1 answer
98 views

Problem : An external API sends an event in Kafka topic and I insert it into the table when I receive the event. Meanwhile frontend calls my own API (/execute) and I need to do some processing based ...
Akash E's user avatar
2 votes
5 answers
513 views

I'm trying to create a high-frequency polling loop in C#, but I've issues with accuracy and CPU usage. Example 1: The loop sleeps for ~15.6ms, instead of the specified 1ms per iteration. I discovered ...
justpen's user avatar
  • 306
0 votes
1 answer
29 views

I am using SockIO for my Flutter project. In production environment, the above error occurred. Flutter version: 3.22.3 Socket_io_client version: socket_io_client: ^3.0.2 void initialize() { socket ...
TechMind's user avatar
1 vote
0 answers
250 views

I have an application written in C++ for reading market data. The networking layer is implemented using boost asio, effectively tcp ssl websockets. When the market throughput is high, I can observe ...
Eduard Rostomyan's user avatar
0 votes
1 answer
127 views

Here is my desired functionality: I want to listen over the local host for a variable, let's say state 1 and state 2. I want my main script to execute function b, but if it receives a state 1 over the ...
souren.p's user avatar
0 votes
0 answers
33 views

I need to scrape the latest informations from the website: https://x13.bet/double And I saw that all the informations from the website that I need is from: https://s.x13.bet:2053/socket.io/?EIO=4&...
Guilherme Gobbo's user avatar
0 votes
0 answers
62 views

I have a main thread which should do some work every N seconds (20 in this case) and wait/block/suspend in-between. However, at the same time, I want the application to stop correctly on a SIGTERM/...
user3895986's user avatar
0 votes
1 answer
368 views

I have a PostgreSQL events table partitioned by event_timestamp: CREATE TABLE events ( id SERIAL PRIMARY KEY, event_timestamp TIMESTAMP NOT NULL, processed BOOLEAN DEFAULT FALSE, ...
Forece85's user avatar
  • 518
0 votes
1 answer
172 views

Suppose we have a file descriptor for a TCP socket. Is there a way to poll for data written to a socket (as opposed to data being available for reading, or the socket being available for writing)? i.e....
InterLinked's user avatar
  • 1,496
0 votes
0 answers
55 views

I added a GPIO driver to the kernel code of Linux v3.10, and added a .poll function to the driver code. I don't know why I added 8ms to the poll() function of test code, but I noticed that the delay (...
Vimer's user avatar
  • 21
1 vote
2 answers
114 views

I have a 3rd party library with mainloop. I want to use GLib/Gtk with the app I'm developing. Is it possible to integrate GLib mainloop into another host? The host loop allows to register an fd and ...
haael's user avatar
  • 1,059
0 votes
2 answers
106 views

when my fragment go backgroud of system, it invoke onStop().and then when my fragment go front desk of system, it invoke onResume(). but mainViewModelScope does not lanuch a coroutine. my fragment ...
eta cao's user avatar
0 votes
0 answers
142 views

I communicate with a hardware device via serial link RS232 (no other option available). I need to continuously poll some data "foo", every second (if possible). Sometimes I also need to ask ...
Basj's user avatar
  • 47.5k
2 votes
1 answer
612 views

I want to do some calculation every 5 seconds. For that I created a timerfd with interval and value of 5s and passsed that fd to epoll but the epoll_wait seems to be triggered multiple 1000 times in ...
Sourav Paul's user avatar
1 vote
3 answers
1k views

Problem Statement I have an application in which the data on the client side (frontend) needs to be updated in near-realtime. The backend updates a field in the database. There is a GET endpoint which ...
Rishabh Rusia's user avatar
1 vote
0 answers
407 views

Using python3 aiogram library for a telegram bot. Is there a way to remove the messages from console generated by the executor? messages like Goodbye! or Updates were skipped successfully. if you ...
OscarAkaElvis's user avatar
0 votes
0 answers
485 views

I have a flask application running locally and on my device's IP address. In my app.py file, I have configured SocketIO with the below options. import eventlet socketio.init_app(app, async_handlers=...
Zaina's user avatar
  • 1
1 vote
0 answers
580 views

We're currently building a platform which offers both a website and a mobile app (both for iOS and Android). The website is basically ready, the mobile app being built now. The customer desired that ...
DevelJoe's user avatar
  • 1,552
-1 votes
1 answer
129 views

I am writing a C# program to poll data from Arduino serial port which generates data through "serial.println". In C# program, I found "port.BytesToRead" sometimes returns 0 even ...
universe123's user avatar
1 vote
0 answers
424 views

I'd like some help for this powerAutomate adaptive card I've made. I got the backbone for the card from Microsoft docs. However, when I post it in a teams channel, I can only select an option and ...
Phi Tiet's user avatar
2 votes
2 answers
813 views

I want to use the result of a react-query v3 useQuery statement to possibly stop refetching, depending on the result. Therefore I'd use the response data object in the QueryOptions to determine the ...
cachius's user avatar
  • 2,015

1
2 3 4 5
30