Newest Questions
24,188,534 questions
0
votes
0
answers
4
views
Entity Framework: How to get the list of attribute codes for each item?
I am writing WebAPI endpoint, data from SQL server, EF Core 8.0.
Having the table of products and the table that maps the product codes to product attributes (one to many) with models:
public class ...
0
votes
0
answers
5
views
Deploying Odoo 18 (Docker/Dockploy): Container crash or 502 Bad Gateway when using custom odoo.conf to pre-configure DB
I am trying to deploy Odoo Community Edition (v18) on a Debian server using Dockploy.
My Setup:
I have a custom folder for my own modules.
I have an oca folder for community modules, managed as Git ...
Best practices
0
votes
0
replies
4
views
Env variables for app deployed to many envirnonments
I have an Nx monorepo that contains multiple frontend applications. Each application is deployed to 7 different deployment targets (for example: app, web, etc.), and each target needs to support 6 ...
0
votes
0
answers
7
views
Java-SpringFramework does not exist
I am currently learning SpringBoot, it was all fine / everything was working earlier.
but now, I cannot run it.
*disregard the ----- (I am hiding it)
Class: BooksApplication -> also the set Main ...
-1
votes
0
answers
12
views
Does TypeScript allow default parameter values in returned functions?
Consider the following code:
type TParser = (str: string, errStr: string) => number;
function LIT(str: string): TParser {
return function (input: string, errStr="An error occurred"): ...
0
votes
0
answers
5
views
How to retrieve the running iOS Simulator UDID for simctl commands?
I'm writing E2E automation tests for an iOS application using WebdriverIO and Appium. My goal is to programmatically toggle the network connection on the iOS Simulator during specific test scenarios (...
0
votes
0
answers
16
views
Sass error during compilation on ruby on rails. @extend rule referencing class in another file wont work in aplication restart
The error is:
SassC::SyntaxError in Devise::Sessions#new
Showing /app/app/views/layouts/application.html.erb where line # raised:
Error: The target selector was not found.
Use "@extend ....
-2
votes
0
answers
17
views
which option i should choose for pdf download function [closed]
the problem is i am for building a project related to coupon a system when some one scans they get a coupon with unique id so i build a function in my backend that when any user click the coupon ...
-4
votes
0
answers
31
views
Issue as Google Gemini 3 giving wrong counts on total number of character's present in a email [closed]
I need a help to understand why Google Gemini 3.0 is giving wrong total number of character's count present in a email.
I am attaching the screen shot of the Both the results Google Gemini from Google ...
-2
votes
0
answers
9
views
Macro about full date autocompletion
With the help of Google Gemini (sorry) I arrived at some code in (LibreOffice BASIC) that does the following in LibreOffice Calc: When I input in a cell a number 1-31, it changes and autocompletes the ...
0
votes
0
answers
8
views
Integrating Unity Project into React Native Expo App (iOS/Android) using @azesmway/react-native-unity
I am attempting to integrate an existing Unity project into a React Native application that uses the Expo ecosystem. I am targeting both iOS and Android and am trying to use the popular community ...
Advice
0
votes
3
replies
33
views
Is using eval() clientside actually a security risk?
I know this sounds bad, but hear me out. I am fully aware that using eval() makes your application at risk of users being able to run arbitrary code via an injection attack, and therefore it is ...
0
votes
0
answers
43
views
Get class vtable address without calling constructor
I am working on a serialize program for Havok physics as a project. I made most of the format already, except the classes that have virtual functions. I have no way to get the correct pointer to the ...
0
votes
0
answers
27
views
Java Swing Invisible Image
Context:
I'm trying to make an app with java swing, however when trying to add a background to the Login Page, the image does not show up. It is there and moves other JComponents when adding a layout ...
0
votes
0
answers
26
views
Add multiple workspace roots for LSP-Server
We keep our library in a git submodule:
.
└── app
├── submodule_lib
│ └── test
└── test
submodule_lib is a standalone compilation target and has its own tests.
The problem arises when I ...