Newest Questions
24,232,186 questions
0
votes
0
answers
5
views
the return value is nill form dayofweek
I have a google form which want the user to input date. And I want to have a script to show day of week.
var dayOfWeek = date.getDay;
Logger.log('weekday number is: ' + dayOfWeek);
result :
2025年5月4日 ...
-1
votes
0
answers
4
views
Understand Sequelize model relationships after creation
I have my Sequelize set up, I'm not asking how to do that.
I want to do something weird, and just go with it because explaining why would be a massive wall of text and just leave you more confused.
Is ...
0
votes
0
answers
6
views
How to Connect a Dockerized Python App to Ollama Running on Host (localhost:11434) – Connection Error
I'm running Ollama locally on my machine with the llama3.2:latest model. I can confirm the model is up and running:
ollama ps
NAME
ID
SIZE
PROCESSOR
UNTIL
llama3.2:latest
a80c4f17acd5
4.0 GB
100% GPU
...
-1
votes
0
answers
6
views
supabase TypeScript error when inserting a row
The code below tries to insert a row in the supabase database, which works fine. However, there seems to be a TypeScript error with the part .insert(body):
No overload matches this call.
Overload 1 ...
0
votes
0
answers
5
views
HTTP 2 server using nghttp2 library on Windows
I have built nghttp2 server for Windows following the official instructions. Now I need to implement HTTP 2 server in C++ using this library. The official documentation has an example of creating a ...
0
votes
0
answers
9
views
Fabric.js does not produce red square
I am developing a web based application using Dancer2. I want to use Fabric.js to make an interactive drawing. However, I am unable to execute even the simplest drawing.
I can make a drawing as a ...
0
votes
1
answer
15
views
How to integrate/access google drive API when deploy in cloud run (trouble when using ADC)
I have developed an application using GCP- using python, and have tested it on local environtment and it was running successfully.
My apps access google drive API using local OAuth credentials.json ...
0
votes
0
answers
5
views
GremlinServerError 499: “The traversal source [g] for alias [g] is not configured on the server”
I’m trying to connect gremlin-python (v3.13.2) to a local Gremlin Server 3.7.3 on macOS 15.4.1 with Java 17, but every query fails with:
GremlinServerError: The traversal source [g] for alias [g] is ...
-1
votes
0
answers
13
views
What is generally the best class method type to support PowerShell cmdlets
I have created a custom class that generates objects which I would like to compare to the [Guid] object for the shake of this question. The module has another class with an method that gets a single ...
0
votes
0
answers
5
views
How to auto-populate field based on another field?
I am working with Azure DevOps Server 2020.1 using XML process. I have created custom fields where the user can enter different kinds of relationships.
E.g. one field is "references" and one ...
0
votes
0
answers
10
views
SwiftUI TextEditor UI glitch on macOS if line breaks
In SwiftUI macOS TextEditor I noticed a weird behaviour, the whole text is sometimes flickering if a word breaks to a new line. Unfortunately I could not find any fix as it appears in this simple ...
0
votes
0
answers
10
views
Using semantic kernel with databricks models
I am currently trying to use semantic kernel with databricks hosted sonnet-3.7 model. And I faced with the problem, that when creating an agent with the plugins, the plugins are not executed. It seems ...
1
vote
0
answers
7
views
ReferenceError: LiveKitClient is not defined when loading JS SDK (UMD) on Parrot OS
I'm trying to integrate LiveKit (using LiveKit Cloud) into my web application (Python/Flask/SocketIO backend, plain JavaScript frontend), and I'm stuck on a persistent client-side error I can't seem ...
1
vote
0
answers
9
views
React Native App failing build after project restructure: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'
tl;dr: I restructured my projects file structure, and now it doesn't build anymore. Why?
I restructured my projects file structure. Before that, it looked like this:
root
all react-native files and ...
0
votes
0
answers
17
views
How to run an external js code in angular
Following this link I was able to load external js files as following:
import { Component, OnInit, Renderer2 } from "@angular/core";
import { ScriptService } from "@app/element-types/...