Newest Questions
24,238,019 questions
0
votes
0
answers
10
views
how do i determine what is the problem with fxmlLoader?
if i should send anything else i can edit this but for now
i am basically getting this :
> Exception in Application start method
> java.lang.reflect.InvocationTargetException
at java.base/...
0
votes
0
answers
5
views
how to run curl command using php file with headers and data
I am new in PHP. So please guide me how can use this curl command in my PHP File
curl -X 'POST'
'https://www.fynamics.co.in/api/einvoice/enhanced/authentication'
-H 'accept: application/json'
-H '...
0
votes
0
answers
7
views
Trained model has "training_args.bin" along with other essentials but I don't see "pytorch_model.bin"
I am training a model, and the trained model has "training_args.bin" along with other essentials. But I don't see "pytorch_model.bin". I read a bit and GPT'd, it says "...
0
votes
0
answers
6
views
Angular Library Update from 15 to 17
I'm upgrading my Angular library project from Angular 15 to Angular 17. After updating dependencies like ngx-spinner and @ng-select/ng-select, I'm encountering errors when using them in the library. ...
-1
votes
0
answers
16
views
My website keeps crashing when I try to upload an image
I am making a resume builder in Next.js and I am using React-Hook-Form with Zod and Shadcn.
"use client"
import { Button } from "@/components/ui/button";
import {
Form,
...
0
votes
0
answers
8
views
SwiftUI Colors on Older Hardware Don't Appear as Expected with SwiftUI
I have created an Indicator for a horizontal scroll view that contains SwiftUI Images. The Indicator works and does just what you would expect. However, I was very surprised to find that these colors ...
0
votes
0
answers
5
views
ArrayDeque is not faster than LinkedList
In java doc, they mentions that ArrayDeque is likely to be faster than Stack when used as a stack, and faster than LinkedList when used as a queue.
I am trying to used ArrayDeque instead of LinkedList,...
0
votes
0
answers
11
views
How to make custom curved SliverAppBar and allowing content to scroll under it?
I'm trying to create a custom SliverAppBar in Flutter, and I’m running into an issue with how my layout behaves during scroll.
Here’s what I want to achieve:
I want the red area to be the AppBar only ...
0
votes
0
answers
14
views
Does Apache Mina SSHD/SFTP require slf4j?
I am writing an sftp client application using Apache Mina sshd sftp.
The following exception is thrown while running the application
*Non-SSL Server started on port: 8101
Exception in thread "...
0
votes
0
answers
9
views
remote: GitLab: LFS objects are missing. Ensure LFS is properly set up or try a manual "git lfs push --all"
I am trying to move the source code across some different git repos.
Both are using git as the vcs.
Here are the steps I am following-
git clone --mirror
cd
git remote set-url origin <...
-2
votes
0
answers
12
views
Text generation with LLMs: Funciton Calling vs Dynamic Prompting
I am using GenAI for improving industry-domain specific text drafts via proofreading and formatting.
The question: for each text draft, I have a set of certain context-specific ambient parameters, ...
0
votes
0
answers
14
views
Why does a==b call b.__eq__ when derived from list and tuple with missing override?
Background
I am writing math utility classes ListVector and TupleVector,
inheriting from list and tuple respectively:
class ListVector(list):
...
class TupleVector(tuple):
...
(Aside: I'm not ...
0
votes
0
answers
6
views
Solving a ports conflict with Traefik and docker
In the next docker-compose.yml I believe I have ports conflict that I do not understand how to solve. The first container redcap-admin exposes 8080, shibboleth-sp exposes 80 and 443, traefik ...
0
votes
0
answers
10
views
How to navigate to first/default route of GoRouter StatefulShellBranch
I'm using a StatefulShellRoute with StatefulShellBranches as in the code below.
I would like to achieve the following: when I am inside a route in a StatefulShellBranch I want to navigate to the first/...
1
vote
0
answers
14
views
Why does Python disallow chaining descriptors `@classmethod` and `@property` since 3.13? What is the ultimate solution for class property?
Disclaimer: I know that there are similar questions already answered, but my question focuses more on the reason behind the solution instead of the solution itself. If this is considered duplicate I'...