Newest Questions
24,162,594 questions
0
votes
0
answers
5
views
AWS CLI returns UnknownOperationException when logging in
I've been using the AWS CLI on my Ubuntu machine for several months with no problem. A few days ago, the browser page opened by aws login began failing: I see <UnknownOperationException/> and ...
0
votes
0
answers
10
views
navigator.getInstalledRelatedApps() is empty on Chrome in Windows 11
Something must be missing, but I just don't know what. Because the installed web app should be listed in the array when calling navigator.getInstalledRelatedApps() but the array is just empty.
Chrome (...
0
votes
0
answers
4
views
Adding HTTP security headers to WSO2 APIM (4.1.0) /service and /services endpoints
I have added the http security response headers to the wso2 api manager gateway profile main and fault sequences, so the headers are present in the root (/) endpoint and are available in all the ...
-1
votes
1
answer
9
views
Mouse macro issues on macOS
So my WLmouse beast x pro does not send keyboard inputs on macOS, so mapping keys to keyboard shortcuts does not work. Other mouse functions work. I have tried many things including trying different ...
0
votes
0
answers
15
views
GML Sequence incorrect depth
I'm trying to have a sequence that pops up a window with descriptions for items in my inventory. I know Draw on GML works top to bottom, so im not sure why the sequence is going bellow everything. ...
1
vote
0
answers
17
views
Agora Web SDK startChannelMediaRelay fails with UNEXPECTED_RESPONSE invalid_appid even when App ID looks correct
I am building a demo agora livestream app with agora-rtc-sdk-ng (Web, React, Vite).
My flow:
Join source channel as host
Generate RTC tokens from a local Node token server (agora-token)
Call ...
Advice
0
votes
0
replies
20
views
How to get started with QEMU internals for a custom Android emulator (GUI and I/O modification)?
I am working on building a custom Android emulator (similar to BlueStacks) and I’ve decided to use QEMU as the underlying virtualization engine.
However, after reviewing the official documentation, I ...
0
votes
0
answers
11
views
Follow-up on Amazon Alexa Developer Support Case (No Resolution After 2+ Weeks) + Published Skill Returning 404
Follow-up on Amazon Alexa Developer Support Case (No Resolution After 2+ Weeks) + Published Skill Returning 404
I’m seeking guidance regarding an unresolved issue with Amazon Alexa Developer Support ...
0
votes
1
answer
23
views
Spring Boot 4 + Hibernate 7: Cannot persist JsonNode to PostgreSQL jsonb (InvalidDefinitionException)
I am trying to persist a JsonNode field into a PostgreSQL jsonb column using Spring Boot 4 (Hibernate 7).
Entity
import tools.jackson.databind.JsonNode;
import jakarta.persistence.*;
import org....
0
votes
0
answers
20
views
React native expo Flatlist with items containing an input field
I have a React native expo app where in one page I use a FlatList to show a list of products. Each list item has a input field, weird design but this is what the client needs. The problem is the ...
1
vote
0
answers
28
views
Is there a clang/llvm equivalent #pragma or attribute to optimize("2")?
In a clang-based build system compiling 100's of C modules with -O1 optimization level, I need to optimize two functions (or their containing modules) to -O2 or better level. From what I could find so ...
Tooling
0
votes
0
replies
17
views
Looking for a reliable and cost-effective token relay for GPT/Claude/Gemini API
I'm developing an AI application that uses GPT-5.4 and Claude-sonnet-4-6. The official API costs are too high for my scale (thousands of requests per day). I've heard about token relay services that ...
Advice
0
votes
0
replies
16
views
Moving documents from OneDrive to Google
I'm a student, I was not thinking about storage early on. Now, everything is in OneDrive and I need to transfer it to Google. I have all my folders labeled, and I would like to transfer those first, ...
1
vote
1
answer
63
views
Why does this valid C++20 code compile on Clang but fail on MSVC with a template deduction error?
I’m experimenting with C++20 concepts and encountered a compiler discrepancy.
This code compiles on Clang 17 and GCC 13, but MSVC (VS2022) rejects it:
template <typename T>
concept HasFoo = ...
1
vote
2
answers
56
views
Number formatting with 2 decimal places on a textbox populated by a variable
I can't seem to be able to force two decimal places on the end result of the 'unloadedtotal' textbox after clicking the calculate button. I only know of '.force(2)' but can't get it to work no matter ...