Newest Questions
24,174,273 questions
0
votes
0
answers
4
views
Why when using plot.style_columns is the output so small? Why doesn't the scale adjust to the output?
I've created an indicator to plot columns of positive and negative values. However, the rendered output is tiny and I have to drag the right side scale for ages to see the values as they should be ...
0
votes
0
answers
10
views
Docker Colima SSL Errors on Amazon/Maven
I am running docker on Colima (macOS Apple Silicon) and am on a corporate network behind a VPN. I have been able to get docker to download images from remote repositories by adding a corporate ...
1
vote
0
answers
22
views
How to allow a Container class to modify its children's protected members
I'm writing a small GUI library as practice and for personal use, I have the following situation:
Originally, I had everything as a public members of Elem, but now I've decided to add a bit of ...
0
votes
0
answers
9
views
PowerShell Get-ADUser Published Certificates Import Error
I'm looking for some help with pulling certificate information from Active Directory. When I'm troubleshooting accounts, it can take a while to manually check each individual settings. One of the ...
0
votes
0
answers
6
views
Multi-Input Field in a table on Object Page - missing filter
To display mutltiple values in my table I'm using association
@UI.lineItem: [{ position: 50, value: '_values.FieldValue' }]
and it works well - in the table I can see many values
enter image ...
0
votes
0
answers
8
views
Change the hardcoded sidebar TOC title
Sphinx Alabaster theme and Python 3.14. I want to change the sidebar toc title. The hardcoded one is "Table of Contents":
That is set in /sphinx/themes/basic/globaltoc.html:
{# Sphinx ...
0
votes
0
answers
8
views
Using @DataMongoTest in Spring Boot 4.0.x
We updated an Spring Boot project from Spring Boot 3.5.8 to 4.0.2. The developed application connects to a MongoDB server using the org.mongodb:mongodb-jdbc:3.0.5 driver (dependency included in the ...
0
votes
0
answers
17
views
Handle user click interaction for a Tic-Tac-Toe board (Shiny)?
I’m trying to build a simple interactive Tic-Tac-Toe game in R using Shiny. The UI part is mostly done: I render a 3x3 grid of buttons, and I store the game state in a reactive matrix.
The part I’m ...
0
votes
0
answers
9
views
MySQL Workbench throw error code : <urlopen error unknown url type: https> when check for updates
How can I resolve error code : in MySQL Workbench when I check for updates in "Help" menu?
Regards
1
vote
1
answer
27
views
Vscode extensions
For some reason if I try to install "C\C++ extension pack", it's just getting stuck on the "installing..." stage, and yes, I tried waiting like abt a hour, reistalling vs code, ...
1
vote
0
answers
38
views
Segmentation fault when using rwlock in shared memory
I'm trying to create a server/client library where the server reads and decodes images from a camera and the clients read the decoded frames from the shared memory. In order to do this, i wanted to ...
0
votes
0
answers
13
views
How to document a MCP (Model Context Protocol) server API?
The industry has developed several "standard" approaches for machine-readable documentation of various APIs: OpenAPI Specification (OAS), AsyncAPI Specification, etc. In particular, for JSON-...
0
votes
0
answers
30
views
How to use epoll_wait in a TCP server accept loop?
I am writing a tcp server in C++ on Linux and am currently trying to move on from my thread pool to a event driven I/O system using epoll. My Server currently creates a listening socket, then accepts ...
0
votes
0
answers
8
views
Does Android Fused Library support including local AARs?
I am trying to use Android Fused Library Plugin to build and publish our library.
I am using a sample code at https://github.com/android/gradle-recipes/blob/agp-9.0/applyFusedLibraryPlugin/...
1
vote
0
answers
16
views
Settling preprocessor definition value conflicts between different dependencies
Suppose I'm writing the CMakeLists.txt of a project named baz, with:
find_package(foo REQUIRED)
find_package(bar REQUIRED)
add_executable(baz baz.c)
target_link_libraries(baz foo::foo bar::bar)
Now, ...