Newest Questions
24,149,594 questions
Tooling
0
votes
1
replies
20
views
How computers store objects` attributes and methods in memory?
I know how fast the stack is and how flexible the heap is, but in these 2 memory segments where the methods and/or the attributes of an object are stored and how does it figure out when multi-objects ...
Best practices
0
votes
1
replies
14
views
WIX Pricing Plans - Taxes & Custom Plans
I am newbie to WIX & have been working on WIX website that currently handles SaaS subscriptions (Silver, Gold, Custom) setup using Wix Pricing Plans and trying to understand the best way to handle ...
-1
votes
1
answer
12
views
Java-like executor service for javascript using WebWorkers
I want to implement something close to Java's ExecutorService in browser JavaScript.
This must use WebWorkers for real parallelism but keep java style submit loop with later await loop.
Results must ...
Best practices
0
votes
0
replies
10
views
Best practices for reducing latency when playing multiple tracks simultaneously via web audio API on less performant devices?
I'm testing playing multiple audio tracks at once on my very slow phone (with very simple html and vanilla JavaScript), and, while the file type matters somewhat (mp3s and m4as have less latency than ...
0
votes
0
answers
12
views
Using TTS models like Omnivoice with AI models
this might not be an Omnivoice issue. I'm programming a bot that can respond with voice commands. I tried Omnivoice and loved the results, but since I'm already using the Gemma 4 model via llama.cpp ...
0
votes
1
answer
13
views
.gitignore is not ignoring untracked files and folders
I am having a similar issue to the question answered by this, but the answer here is not resolving my problem. I created a new git repository in a new folder to try to troubleshoot, but something is ...
-1
votes
0
answers
11
views
React.js Swapping Objects In useState Array
I have a state Array of objects as such:
const [slots, setSlots] = useState([
{id: 1, name: 'a'},
{id: 2, name: 'b'},
{id: 3, name: 'c'},
{id: 4, name: 'd'},
{id: 5, name: 'e'},
]);...
1
vote
1
answer
40
views
Extend a query result using JSONata
I'm playing around with JSONata library and I'm wondering if there is any way to extend a query result similar to ... spread syntax. E.g: I have the following object:
{
"input": {
&...
Tooling
0
votes
3
replies
31
views
Comparison of Two CSV Files with a Large Number of Columns Spanning Multiple Lines (Generated from an SQL*Plus Spool)
I have these two CSV files and I have already tried using Copilot without success.
https://drive.google.com/file/d/1GURMVn10LCMQFHOVpgwcW-6SUnqDBO01/view?usp=drive_link
https://drive.google.com/file/d/...
Best practices
0
votes
1
replies
28
views
Refactoring a Flutter Service for Better Code Quality
import 'dart:convert' as convert;
import 'package:flutter_revisao_2bi_ads5sn/cliente_model.dart';
import 'package:http/http.dart' as http;
class ClienteService {
List<ClienteModel> _clientes ...
-2
votes
0
answers
36
views
كيف؟Access Kali Linux repositories and mirrors if you are geo-blocked? How [closed]
اقوم بادخال هذه الاكواد علي التيرمنال
Sudo nano apt sources.list
deb http://http.kali.org/kali kali-rolling main contrib non-free non-free-firmware
sudo apt update
sudo apt full-upgrade -y
اقوم بتشغيل ...
1
vote
1
answer
18
views
In application-test.yml, spring > main > banner: "off" (or false) not turning off Spring Banner in mvn clean install on jUnit execution
We are using Spring 3.5.14 and have the 2 standard Spring files
main/resources/application.yml
test/resources/application-test.yml
The goal is to prevent the output of the Spring Banner, but only ...
-3
votes
0
answers
23
views
eclipse git fetch hangs
since some days the Eclipse git (formerly: egit) hangs during fetch, and specifically on "teams -> synchronize". It worked like a charme for years, and since some days I have this issue.
...
-2
votes
0
answers
47
views
a member with an in-class initializer must be const [duplicate]
Why I am getting "a member with an in-class initializer must be const" error? and how to solve it
I am trying to create a counter variable that counts the created objects from class ...
0
votes
0
answers
43
views
IConfiguration.Get<>() not retrieving for elements with properties with empty arrays
I'm trying to import my ServerProcessConfig[] from my appsettings.json. If I have an element in the array that has an empty array for Dependencies, it does not import the whole object for config.
...