Newest Questions
24,158,515 questions
0
votes
0
answers
54
views
ASP.NET Core 8.0 MVC - call to internal API does nothing
I am working on a conversion of an ASP.NET project to ASP.NET Core 8.0 MVC. There is a web service which is called by a SQL agent job that calls a stored procedure to kick off the web service.
I am ...
-1
votes
0
answers
38
views
Django Allauth email verification
Im running into an issue with email verification by code with Django Allauth. I've configured my settings to turn on verification by code instead of the regular URL, however I am running into an issue:...
Best practices
0
votes
8
replies
122
views
Reducing significant digits and eliminating scientific notation when float/double approaches zero
Surely, a number of ways are at a developer's disposal to reduce a rounding error of 1.78814e-07 variable assignment to 0.000000. What is best practice?
My best solution is to include a method as such:...
-3
votes
0
answers
37
views
Unable to git pull from TFS on some wifi networks. ssh: connect to host tfs port 22: Connection timed out [closed]
We use TFS for hosting our git repo, and I have a work laptop that I've been using for hybrid work the past two years. I connect it to my home's guest wifi network (to keep it separate from my own ...
Advice
0
votes
4
replies
66
views
Difference between __const and __const__ extension keywords
The GCC and Clang frontends for C, as well as their C++ counterparts, support both __const and __const__ as alternate spellings of the C99 const keyword in all language modes.
What is the difference ...
Advice
0
votes
0
replies
27
views
App that will print multiple drawings that are on the model tab
Looking for an app/plugin that will print multiple drawings that are on the model tab and a few on the layout tabs, screenshot attached. Printer/Plotter and PDF preferred. Ability to combine PDF would ...
Best practices
0
votes
3
replies
49
views
How do I Register Open Generics in ServiceCollection when they aren't "equal"
I have an open generic registration that works fine
services.AddScoped(typeof(IAsyncRepository<>), typeof(AsyncRepository<>));
My point is that I have this other case
public interface ...
-3
votes
0
answers
32
views
Overriding set_privacy in Wagtail Python CMS [closed]
I want form.fields["groups"].queryset in wagtail/admin/views/page_privacy.py (l. 66 in wagtail 7.0) to be filtered by request user properties, is there a way to do this?
-3
votes
0
answers
44
views
Yarn upgrade blocks install, Yarn install blocks upgrade
I've pulled from a shared repository and seem to be stuck
> yarn install
warning package-lock.json found. Your project contains lock files generated by tools other than Yarn. It is advised not to ...
-3
votes
0
answers
51
views
Issue to resolve org.bouncycastle and org.apache.batik.css using Equinox version 4.35
Recently I am upgrading my application from Eclipse Equinox version 4.23 to 4.35. I was facing some weired issue where org.bouncycastle and org.apache.batik.css bundles are not resolved though there ...
-4
votes
0
answers
40
views
Reviewing changes to an xml file that is does not have a Repo in Azure [closed]
I have a rather unusual situation. We have a vendor that we use for generating documents we send to clients. The documents are built inside the software provided by the vendor. The vendor's software ...
Tooling
0
votes
0
replies
35
views
How can I stop Next.js from writing to cache after builds?
I’m doing a lot of vibe coding with Next.js 16. After every turn, Copilot tries to validate its changes by running a full project rebuild.
The build itself isn’t too slow, about a minute, but it ends ...
Best practices
1
vote
0
replies
60
views
Best design for request handling with DTOs that have a type field that defines the behaviour of an endpoint
First of all, It's my first question here, I'm not experienced enough. But I will grant all the needed information for understadning this.
I'm making an application for a college project, and I'm ...
1
vote
2
answers
125
views
How can I set a placeholder (sentinel) without using None?
I have a value that always needs to be defined but may not always be meaningful, and I need a placeholder for when it doesn't yet have a meaningful value. Usually, I would use None as that placeholder ...
1
vote
0
answers
29
views
Laravel queued job from observer throws ModelNotFoundException after created() event (No query results for model [Invoice])
I'm facing an issue when dispatching a queued job from an Eloquent Observer.
Error
Illuminate\Database\Eloquent\ModelNotFoundException:
No query results for model [App\Models\Invoice]
in vendor/...