Newest Questions
24,161,407 questions
Advice
0 votes
0 replies
2 views
Need help registering to use APIs
I want to have the ability to write Python script that use the Imgur API but I'm confused about registration and getting authenticated and the help is not very helpful. I'm following Registration ...
0 votes
0 answers
21 views
I want to change the program icon in a Visual Studio C# project
I have a Visual Studio MAUI C# project and I want to change icon(s). I have followed several routes from AI and have not found a solution. Can any real person give me direction? I am starting with a ...
Advice
0 votes
0 replies
8 views
How to Inject a .NET managed DLL from a web url into a Unity game
I'm creating an injector where it retrieves a .dll from a web url [like a raw github url], and then injects into another process, and i'm not seeing any success, and the only method i've gotten to ...
0 votes
0 answers
17 views
Leaderboards not accessible in App Store Connect / Newest entries missing
I have a set of leaderboards and archived some of them for older versions. When I go to App Store Connect Game Center Leaderboards, I see the current leaderboards: When I go to edit, the archived ...
0 votes
0 answers
14 views
Add Parent and Child entity in the same context.SaveChanges
I have a lookup item and a parent entity that I want to add in the same transaction. So for instance, I use this code: Parent newParent = new Parent(); LookupItem item = new LookupItem(); item.data= &...
2 votes
1 answer
36 views
Why is casting to object first needed to satisfy the compiler but the compiler also says casting to object was unnecessary
Here is a MRE that tries to reduce my initial problem to something as small as possible: using System.Diagnostics; List<string?> xs = new() { "a", "b" }; // normally xs ...
0 votes
0 answers
23 views
ChaCha20 Implementation in VHDL something wrong with my KeystreamGenerator Module
i tought everything but i have not solve the problem yet. I don't know where is the problem. The other modules like, QuarterRound and ChaCha20_Cipher are fine and very basic. Also QuarterRound Module ...
0 votes
1 answer
57 views
Assigning a pointer type to a non-pointer class type [duplicate]
I am currently following an online course about C++, and I came across the following code snippet: class A{ private: const bool state; public: A(bool state) : state(state) {} };...
-1 votes
0 answers
32 views
Feign multipart file upload intermittently fails with RetryableException: Incomplete output stream
I’m facing an issue while uploading a file between two Spring Boot microservices using OpenFeign. task-service generates an Excel file It sends the file to system-service using Feign (multipart/form-...
-1 votes
1 answer
63 views
Can I install mathutils on Python 3.14?
Mathutils is a Python library maintained by ideasman42. I have been using it on older versions of Python and want to update an old project to a more recent version of Python. When I try to install ...
0 votes
0 answers
28 views
Spring Boot Rest/JPA: Create only 1 parent, when cascade the child creation to parent creation
I need to create a Restfull API with Spring Boot 3.x./ Spring_Data_JPA (Hibernate) I have this scenario. I need to create child entities and cascade the persist/merge to the parent entity. This means: ...
Advice
0 votes
0 replies
15 views
Selenuium with Java - how to handle popups
Hi I still can't get rid of the following popups x as dont want to sign up and I want to accept all cookies when running a Selenium with Java test to find web elements in www.whitestuff.com. ...
-2 votes
0 answers
41 views
Tkinter notes app not saving to JSON file — notes disappear on restart [closed]
I am building a Google Keep-style notes app in Python using tkinter. Notes appear on screen while the app is running, but when I close and reopen it they are gone. The JSON file is either not being ...
-2 votes
0 answers
25 views
Can I use setUIID to change the colors in a dialog body?
I am trying to use CSS to change the background of a dialog. Changing the theme.css does not make any changes.
0 votes
0 answers
50 views
What does storing in buffer actually means? (for std::cout) [duplicate]
std::cout stores value in buffer and then print them to the console . Have this example in c++: #include <iostream> int main() { for(int i=0;i<10000;i++) std::cout << "...