Newest Questions
24,179,820 questions
0
votes
0
answers
4
views
How to find missing runtime dependencies in .NET?
My .NET Framework 4.72 runs fine on several PCs, but on some mscorelib.dll throws an TargetInvocationException with an inner FileNotFoundException for one of my assemblies or its dependencies.
The ...
0
votes
0
answers
6
views
How to add a dependency to another project using gradle (and eclipse)?
Hi got this project structure:
Gradle Wrapper
App
Base
Import
Now I want to refer from both other projects to Base.
I tried adding this to build.gradle.kts
eclipse.project {
referencedProjects(&...
0
votes
0
answers
7
views
Old redhat.java extension is installed in devcontainer since code version 1.107.0
First of all, I'm not 100% sure if this is intended behavior!
Given is a Java project in version 25 which is built by means of a development container based on an alpine image (currently eclipse-...
0
votes
0
answers
10
views
Push notifications no longer appear in IntelliJ
IntelliJ IDEA no longer shows push status notifications. No balloon, no item in the notification panel. Commit notifications are still listed in the panel. It's inconvenient since I have to manually ...
-2
votes
0
answers
15
views
Rescale SVG to a Target size
I have a number of SVGs that have been produce, as an example:
<?xml version="1.0" encoding="UTF-8"?>
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 ...
1
vote
1
answer
27
views
C++ std::optional::emplace() rejected by clang, accepted by gcc and msvc
The following C++ code fails to compile with clang 20, while it compiles with gcc and msvc.
This is not the first time I see some construct being accepted by some compilers and rejected by others. ...
0
votes
0
answers
17
views
AG Grid v34 – Server-Side Row Model with Client-Side Sorting Not Working
I am using AG Grid v34 with JavaScript and the Server-Side Row Model (SSRM).
https://www.ag-grid.com/javascript-data-grid/server-side-model-sorting/#client-side-sorting
According to the documentation, ...
-1
votes
0
answers
23
views
J-Link RTT and UART simultaneous operation causing data corruption
I'm experiencing an issue where running J-Link RTT (via RTT Viewer or any RTT client) causes data corruption on a separate UART interface on my target device.
Symptoms:
UART receives corrupted data ...
0
votes
0
answers
11
views
How to reuse SwiftData models in multiple apps via Swift Package Manager while defining app-specific relationships?
I’m trying to reuse SwiftData models across multiple apps without duplicating code. Specifically, I want a model like Address to live in a Swift package, while each app can define its own ...
0
votes
0
answers
25
views
tokio's select! macro seems to be ignoring a branch
The two futures matched in the select! are:
the next event in a crossterm EventStream (doc)
the next batch of items received in an Archipelago game, obtained using con.sync() (source)
initstate ...
0
votes
0
answers
14
views
JMS destination lookup error on JBOSS EAP 8
I have a queue - TestQueue created on JBOSS EAP 8 and my application (EAR) has a MDB which publishes messages to this queue.
standalone.xml
<subsystem xmlns="urn:jboss:domain:messaging-...
Advice
0
votes
0
replies
4
views
How to count specific word frequency in text using boolean in OpenRefine
I have a large CSV table containing columns with metadata and text data with thousands and thousands rows. I would like to know frequencies for specific words in text by using regular expression and ...
-1
votes
0
answers
13
views
minitest suite broken following change in Gemfile
Running a minitest command
`bin/rails test test/controllers/users_controller_test.rb:89 ` - any command - generates the following error:
/Users/deploy/.local/share/mise/installs/ruby/3.3.0/lib/ruby/...
0
votes
0
answers
29
views
Is it possible to get all the text from text field?
is it possible to get all the text from text field?
i used this but they only get approximately 200 Character
let before = proxy.documentContextBeforeInput ?? ""
let after = proxy....
0
votes
0
answers
30
views
Invoke-command with single quotes in ScriptBlock
As part of a script I'm working on, I need to call a NetBackup command via PowerShell using invoke-command.
The command should be like so:
invoke-command -scriptblock { bpflist -d $startDate -e $...