18,182 questions
-4
votes
0
answers
26
views
My solution configuration is not well readable in Visual Studio IDE
I'm working with Visual Studio 2022, version 17.14.20.
I have different solution configurations: "Debug", "Debug Install" and "Debug Localisation".
As you can see from ...
0
votes
0
answers
52
views
Mifare DESFire EV3 Switch to LRP mode fails with Authentication Error
I'm trying to permanently switch the authentication mode on a Mifare DESFire EV3 NFC tag from AES to Leakage Resilient Primitive ("LRP") mode.
Unfortunately, I'm getting an Authentication ...
0
votes
1
answer
57
views
Context-specific default constant values
I'd like to define an API endpoint URL through a TypoScript constant, so that it can be overridden by editors.
At the same time I want to provide different default constant values depending on the ...
0
votes
0
answers
86
views
Spring Boot: Exclude Maven dependency in production
I'm using Spring Boot with its profiles mechanic to configure the proper data source to use per environment. For CI and certain local development profiles, we use H2. For everything else, we use ...
0
votes
0
answers
33
views
How to configure GNU binutils for barel-metal ELF targets with additional PE/COFF support
I'm trying to configure the GNU binutils for x86_64 bare-metal ELF targets with additional PE/COFF binary format support. Need the tool-chain for operating system and EFI development for the purpose ...
2
votes
1
answer
60
views
How to set ASP.NET configuration keys with dots using environment variables on Linux
In .NET you sometimes need configuration keys with dots. For example in logging configuration. .NET itself creates a sample like this (Microsoft.AspNetCore):
"Logging": {
"LogLevel&...
0
votes
0
answers
42
views
Jenkins Priority Sorter Plugin Missing Job Priorities Configuration Section
I just installed the Job Priorities plugin for my Jenkins instance, but I can't for the life of me figure out where the Job Priorities configuration section is located.
The plugin is installed, ...
0
votes
0
answers
82
views
Is it fine to modify the FlutterExtension file for build configuration properties?
I've found that other devs might be doing this to address common issues (e.g., build exceptions) with their app/build.gradle by changing properties like flutter.ndkVersion, flutter.compileSdkVersion, ...
2
votes
1
answer
101
views
neovim 'vim.opt.list' not taking effect
I am using neovim on Linux.
NVIM v0.11.3
Build type: Release
LuaJIT 2.1.1741730670
In my options.lua I have vim.opt.list = false and vim.opt.listchars = { tab = '»'}
I have a keymap set to toggle ...
2
votes
1
answer
107
views
Best way to pass a config object between modules?
I am working on writing a package for others to use. Using many of the functions requires a Config object, this is an example of how it would look right now for a user to use one of the modules:
from ...
-1
votes
1
answer
53
views
When the configured values in my config are changed by my program, how to update them?
I have found some article on how to create/read config values:
string appDataPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "myapplication");
var ...
1
vote
0
answers
26
views
PingIdentity DaVinci Salesforce Connector: getAccessTokenError in Flow
I'm encountering an error
Invalid Salesforce Connector configuration
when using the Salesforce connector in my PingOne DaVinci flow. When I check the network preview, the API call parameters show ...
1
vote
1
answer
1k
views
How do you update an input for an MCP configuration in VSCode?
I have an MCP server configured with some inputs so that VSCode stores the credentials. I need to provide a new token for one of those inputs but I can't find a way to trigger VSCode to ask me for the ...
0
votes
0
answers
31
views
How to inject configuration values into a service in .NET Core? [duplicate]
I am building a .NET Core Web API, and I want to inject values from appsettings.json into a custom service class.
Here's what I’ve tried so far:
public class MyService
{
private readonly string ...
0
votes
0
answers
22
views
How to use the same configuration file in both content scripts and background module in Manifest V3? [duplicate]
I’m developing a Chrome extension using Manifest V3.
My background script is a module ("type": "module"), so it uses
import { CONFIG } from './config.js';.
My content scripts, ...
1
vote
1
answer
54
views
Prevent the whole html template from being highlighted if I click on any html tag
In Angular component development, if I click on any html tag I get all the html code inside the “template” property highlighted and it is annoying especially in this dark mode also because it is of no ...
0
votes
0
answers
44
views
Is it possible to create a common user secrets file in Visual Studio for values common to all projects?
I'm working in a solution in Visual Studio that has over 100 projects. A URL of a third-party API has just been changed. Now the URL needs to be updated in the user secrets of the projects in the ...
0
votes
0
answers
74
views
How to set separate Debug Targets for different configurations in Visual Studio for .net projects?
I've recently updated a solution from .framework to .net 9.0. Sadly, it's caused no end of issues - not with the code or framework, but with the VS UI elements and functionality. The setup is a bit ...
0
votes
0
answers
39
views
Issue with Apache setup for bugzilla on RHEL 8: Unable to setup bugzilla web page
I am installing Bugzilla on my VM, and have completed all the steps as mentioned in their documentation (bugzilla modules & directories, DB config, server config). checksetup.pl gives success in ...
1
vote
1
answer
307
views
How do I configure the Solana CLI to use a custom RPC endpoint?
I am working with the Solana command-line tools and I need to point them at my own RPC node instead of the default public endpoint. I have tried this:
solana config set --url http://localhost:8899
...
0
votes
0
answers
43
views
Melos replaces current configuration at run time
This has been happening for a while now. Whenever I am working on any configuration of the app, after a few seconds, Melos takes over the run configuration. It doesn't matter if I'm in intelliJ or not,...
0
votes
0
answers
146
views
Can't access the Ghost Admin panel from other machines, Only works on original signup device
I'm running a Ghost Blog using Docker and the deployment is working in most cases as expected, I am able to access the blog frontend from any machine anywhere. But, I'm facing an issue that, I can ...
1
vote
1
answer
124
views
Applying multiple environment profiles on run in .NET
I want to create multiple appsettings.<environment>.json files in my .NET microservice, and when I run my app I want to specify the environment profiles to use and have them apply the ...
1
vote
1
answer
50
views
Disable auto scaling for templated jobs
In Dataflow, you can run jobs without autoscaling. This is typically achieved by setting a pipeline_option called autoscaling_algorithm to NONE. Attempting the equivalent on Templated Dataflow Jobs ...
2
votes
0
answers
403
views
Setting up C++ debugger in Neovim
I have been trying to set up a debugger for my nvim cpp setup. Here is my current attempt at configuring nvim-dap, but it crashes once the program starts, and shows the program disassembly instead of ...