Newest Questions
24,169,312 questions
0
votes
0
answers
11
views
Revit API 2025 NewFamilyInstance always with default value
I am new to a project where we work with the Revit API to import IFC luminaires in Revit families. I am running into an issue when creating a new FamilyInstance using:
public unsafe Autodesk.Revit.DB....
0
votes
0
answers
2
views
Direct Collocation Oscillating Reconstructed State Trajectory
I am working with the DirectCollocation class and an often getting trajectory solutions with large oscillations (sometimes in the position, almost always in the velocity). These oscillations seem to ...
-1
votes
0
answers
5
views
How to solve Invalid schema configuration Problem
I am encountering a "TypeError: Invalid schema configuration: `` is not a valid type at path type" error within my Mongoose schema, specifically in the bookstore.model.js file. I am using ...
0
votes
0
answers
18
views
JAVA corretto21 SPRING "javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated"
I've got a microservices system in Java Spring Boot
I create my SSL self-signed key and stores like this way
File "sub.conf"
[req]
default_bits = 4096
prompt = no
default_md = sha256
...
Best practices
0
votes
0
replies
22
views
Am I safe to merge Entity Framework Core migrations added by "feature branches"?
I have a workflow I use with our development team that involves merging EF Core migrations in our C# project. Our team works in feature branches and often needs to create new EF Core migrations. They ...
-1
votes
0
answers
37
views
gpt 5.2 chat model is not giving complete output [closed]
I am using azure openai gpt 5.2 chat model for extraction of data from given input text. Here i have passed the text which contain all required data. but model is not giving me complete output. I am ...
0
votes
0
answers
17
views
Why ticklabel_format has no effect in this matplotlib script?
This Python 3.14.3 script with matplotlib 3.10.8:
import numpy as np, matplotlib.pyplot as plt
a = np.random.rand(5)*3
b = np.random.rand(5)+1000
fig, ax = plt.subplots()
ax.plot(a, 'r')
ax....
0
votes
0
answers
14
views
Instagram Graph API-Cannot get green checkmark for instagram_business_* scopes in App Review due to UI bug (API test calls remain 0)
I'm currently trying to submit my Meta App for App Review to get advanced access for the Messenger API for Instagram. My app is already business-verified and the use case ("Manage messages and ...
Tooling
0
votes
0
replies
14
views
Best Query tool for Text search (VB.NET- Studio 2019 and 2026 (long story)
I'm finally getting around to implement custom languages to my application
I did design all my messages from the start around a common function that includes custom variables (\VAR1,\VAR2.....) and ...
0
votes
0
answers
26
views
Type inference not correctly inferring type of generic
I have the following code:
enum UnionType {
a, b
}
type A = {
type: UnionType.a
};
type B = {
type: UnionType.b
};
type AB = A | B;
function f<T extends AB>(x: T, y: T) {
if(x....
0
votes
0
answers
22
views
Ceres: Is my SO(3)+R³ LocalParameterization correct for IMU preintegration factor (especially ComputeJacobian)?
I am trying to add IMU preintegration factor to my optimization in VIO. I just want to be sure if I am doing everything correctly, especially LocalParameterization part. Below is given the IMU ...
Best practices
1
vote
0
replies
32
views
Chatbot that converts questions to SQL queries
I have a usecase where we need to perform complex calculations (aggregate function from multiple tables) on the given customer knowledge base, so I can't use simple RAG mechanisms like Azure Search or ...
0
votes
1
answer
30
views
How to prevent child component from re-rendering when parent state changes?
I have a parent component that updates its own state. However, when the parent state changes, a child component re-renders even though its props have not changed.
I want to prevent unnecessary re-...
0
votes
0
answers
23
views
How to trigger Husky to execute in the VS Code terminal instead of the Windows command prompt
Code in pre-commit after initializing [email protected]:
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
pnpm lint-staged
package.json:
"lint-staged": {
"src/**...
0
votes
0
answers
31
views
R: Prevent lines and arrows from intersecting with each other?
I have this diagram in R:
library(DiagrammeR)
grn <- '#66BB6A'
red <- '#EF5350'
nvy <- '#1B3A5C'
gry <- '#BBBBBB'
lag_diagram <- grViz(paste0("
digraph lag_grid {
graph [
...