Newest Questions
24,150,583 questions
0
votes
0
answers
3
views
Spring STOMP not resolving session token from connect header while enabled WebSocket security
I did a demo project, that integrates Spring Security, Spring Session, Spring Websocket, with the http header session id resolving enabled to avoid cookies usage, and a simple browser web page ...
Advice
0
votes
1
replies
22
views
During a git bisect, how can I find out which revision would be next if I mark the current one as good or bad, without marking it so?
I am in the middle of a long bisection, and at each step the compilation takes a long time and testing takes even longer. I want to compile the next candidate versions in advance to speed up my ...
0
votes
0
answers
10
views
SwiftUI Text alignment next to centred Text [duplicate]
I have the following view featuring two lines of text:
VStack {
Text("first line of text")
.font(.callout)
Text("100")
.font(.largeTitle)
.bold()
}
...
0
votes
0
answers
18
views
Flask app SQLite3 objects created in one thread cannot be used in another
I've defined all functions of my code, which require the execution of SQLite3 SQL statements in a file, main2.py . I have imported all functions and objects into my app.py file which will create a ...
-1
votes
0
answers
17
views
Custom Endpoint not being used for auto inline suggestions
I was able to setup a custom endpoint for the chat window on the side and quick chat window (ctrl + i).
but it seems the auto inline ghost suggestion autocomplete is not requesting the custom endpoint ...
1
vote
0
answers
18
views
Flutter package in_app_purchase: ^3.2.3 integrated for Apple InAppPurchases but after payment completed it gives appAccountToken=null in backend
In my Flutter app I integrated in_app_purchase: ^3.2.3 for Apple InAppPurchases
My backend is in java.
and I set the PurchaseParam like :
final purchaseParam = PurchaseParam(productDetails: product, ...
-1
votes
0
answers
16
views
Java java.util.NoSuchElementException: No line found in catch block [duplicate]
I want to make ability to input again in case there would be an exception, but when it reaches catch block there is Exception in thread "main" java.util.NoSuchElementException: No line ...
Advice
0
votes
0
replies
14
views
How do I solve viber activation fail issue?
Please explain and tell me how to solve viber activation faild in myanmar.
Private dns change 1.1.1.1 and dns.google, uninstall app ,reset device, install app, this way isn't work.
If any other else ...
0
votes
0
answers
30
views
Cannot access WSL2 python http.server (port 7070) from Windows 11 host via localhost
I am running a Python HTTP server inside my WSL2 (Ubuntu) instance on Windows 11, but I am unable to access it from my Windows host browser.
Here is what I did inside the WSL2 terminal:
drown@DESKTOP-...
-2
votes
0
answers
37
views
undefined reference to `SHA256' [duplicate]
I want to hash passwords using the OpenSSL library in C language but it gives me these errors:
undefined reference to `SHA256' collect2.exe: error: ld returned 1 exit status.
It says it can not find ...
Advice
0
votes
4
replies
48
views
Can C for-loop syntax can be shorten?
C for-loop syntax is pretty short:
for (int i = 0; i < n; i++)
But what's about shorter version:
for int i(0)++ < n
where i(0) is iterator i initialization.
In this variant we have only one ...
-1
votes
1
answer
36
views
I click on the submit button and it gives me a white screen in Codio [duplicate]
I am doing this all in Codio. On my registration form I click on the submit button and it pops up a white screen but if I download the regForm.php it gives me a text document with this on the screen. ...
Advice
0
votes
2
replies
50
views
Programming| System Development
Can someone provide me with a structured framework for web app development, covering the key stages from planning and design to deployment and maintenance?
Idea:
Requirement analysis → Understanding ...
2
votes
1
answer
41
views
gnu makefile builds pre-requisites but doesn't run the recipe until make is re-run
I am building a project and running make fails with a file not found: src/cross-tile.o, but re-running make again will continue and be able to build it.
doing make ../src/cross-tile.o in the src ...
2
votes
0
answers
25
views
SwiftUI menubarextra app running twice consecutively
I’m developing a menu bar agent app using SwiftUI and SwiftData. For some reason, at random times while debugging, a second icon appears in the menu bar. The icon has no window or menu attached to it.
...