All Questions

New search experience powered by AI

Stack Overflow is leveraging AI to summarize the most relevant questions and answers from the community, with the option to ask follow-up questions in a conversational format.

Get early access
Filter by
Sorted by
Tagged with
0 votes
0 answers
2 views

Workaround for "TypeError: 'NoneType' object is not subscriptable" in ArcGIS Import data Tutorial

I'm trying to follow this ArcGIS tutorial. I'm receiving a TypeError: 'NoneType' object is not subscriptable. This happens when I try to execute csv_item = gis.content.add(trailhead_properties, ...
Ted M.'s user avatar
  • 300
0 votes
0 answers
2 views

Adding * for p values using geom_text after selectInput in RShiny

I have an app that looks like this - different plots with vastly different y-axis ranges appear according to the category selected: I have a dataframe that includes a column called "Sig" of ...
hks's user avatar
  • 85
0 votes
0 answers
4 views

Issue while trying to post listing in Ebay

About I am trying to post Listing in Ebay Trading API. As we can see that there is brand info mentioned as per the Ebay API documentation here: https://developer.ebay.com/devzone/xml/docs/Reference/...
Pankaj's user avatar
  • 9,946
0 votes
0 answers
4 views

How to change status field automatically from 1 to 0 when end_time is reached

This is my Auction model. class Auction(models.Model): auction_id = models.AutoField(primary_key=True) crop = models.ForeignKey(Crop, on_delete=models.CASCADE) image = models.ImageField(...
UTSAV BHANDERI's user avatar
0 votes
0 answers
2 views

Python Django HTMLCalendar How To Set First Weekday To Sunday

Like title states goal is to get the weeks in the calendar to lead with Sunday as opposed to Monday like the below shows. I know calendar.setfirstweekday(calendar.SUNDAY) should be able to do the ...
blueblob26's user avatar
0 votes
0 answers
2 views

Testing function that returns gin.HandlerFunc

I have a golang function that returns a gin.HandlerFunc: func CheckLoggingServiceAccount(config *config) gin.HandlerFunc { return func(c *gin.Context) { userId, _ := c.Get("userID&...
nespondev's user avatar
0 votes
0 answers
4 views

Referenced library not being recognized even though I added the external JAR to the build path

I am working on a messaging app and want to use jmDNS for peer discovery. I went to properties -> Java build path -> add external JARs and added it. It appears in my referenced libraries and ...
plakosizzle's user avatar
0 votes
0 answers
4 views

How can I get the aws profile id from the aws configure sso command

As part of a bash script to automate connecting to our postgres instance I need to configure the aws cli tool and set the AWS_PROFILE variable. The command outputs this in the final line of its output....
kaan_a's user avatar
  • 3,733
0 votes
0 answers
3 views

keras module not found error while deploying ml model

i have python version 3.10.5 , facing issue with keras , ModuleNotFoundError: No module named 'keras.src' anyone tell how to solve this . i tried to deploy , but stuck here can anyone mention the ...
Sushanth's user avatar
0 votes
0 answers
4 views

Minikube tunnel - Ingress not working on windows

Im triying to access a microservice inside minikube with ingress so I can access it by the service name, I’m working on windows and I was trying to find info online but nothing is working, so I’m ...
sibok's user avatar
  • 1
0 votes
0 answers
3 views

androidx media router and media session

I'm going through MediaRouter documentation: https://developer.android.com/media/routing/mediarouter and it looks like I must use the media router button in order to connect and create a media session....
TheDragoner's user avatar
0 votes
0 answers
7 views

cpp when std::queue initializing, it allocate memory and then throws Access violation reading location

Problem description My complex code can be simplified as follows: #include <vulkan/vulkan_raii.hpp> #include <functional> #include <queue> #include <iostream> class TestClass ...
CheapMeow's user avatar
0 votes
0 answers
12 views

Video error when trying to download the src [closed]

I used HTML <video> tags to display videos. Getting the source through vimeo. It works once every 10 tries. I have no idea why. Is it only a problem of network? The problem is even more severe ...
user23873005's user avatar
0 votes
0 answers
4 views

Resolve shift/reduction conflict in grammar for expressions in PLY for calls to embedded functions

I'm creating a grammar for an interpreter in PLY. At the moment I'm trying to implement embedded function calls as expressions, but I'm having a problem seeing where the conflict is for the following ...
luisepa1420's user avatar
0 votes
0 answers
7 views

How can I create a javascript animation that recognizes when it hits things, in other words a hit box?

I am currently building a piano with visualizer in React. The users can record their song and play it back. This recording records a list of notes + start/end timestamps. I currently have note ...
The Canadian's user avatar
0 votes
0 answers
3 views

BigQuery: How to filter out nulls from ARRAYS of STRUCT

I am having trouble getting my SQL in BigQuery to work when my query contains nulls in an ARRAY of STRUCT. Here is the error I'm getting: Array cannot have a null element; error in writing field ...
Joe's user avatar
  • 127
1 vote
0 answers
16 views

Run java program

I haven't programmed much in Java, I once had to write a few applications for school, and it wasn't a problem to run it, now I would like to develop it and look for some other projects, (MyLocalTon to ...
kuba's user avatar
  • 11
0 votes
0 answers
14 views

Client unexpectedly closed TCP connection (RabbitMQ) [closed]

I'm using MassTransit (RabbitMQ) to publish messages through an API and in separate threads of that API, I consume these messages. However, after some time connected and consuming messages normally, I ...
Leonardo Chinarelo's user avatar
0 votes
0 answers
4 views

Flutter: Data Not Displayed After Implementing Shared Preferences

My Flutter application has a feature Dietary Management. Now, I finished this feature for a long time and it is working well. To explain this feature in short, the user can create a meal and give it a ...
Noobinator's user avatar
0 votes
0 answers
8 views

How do you make the pop up appear and print a sentence in the main/side panel?

I want to make a R shiny application that prints a riddle (raadsel) and where somebody has to enter an answer (antwoord). If someone puts in the right answer, a pop up appears that says "Goed ...
alexdegrote1995's user avatar
0 votes
0 answers
4 views

Dealing with Null Values in GraphQL API Response

I recently undertook an interview task where I was required to develop a React application utilizing a GraphQL API. The API in question is the SpaceX GraphQL API. As part of the task, I needed to ...
MindaugasP98's user avatar
0 votes
0 answers
9 views

How can I loop a copy/paste code based on a filter?

I need to send a daily update that's giving me a lot of trouble, so I tried automating it. I have a dataset with clients attributed to different sellers, and I basically need to filter the list for ...
Felipe's user avatar
  • 13
0 votes
0 answers
8 views

Java get objects elements from List<Objects> and add to new ArrayList

I am quite new to Java, but I seem to having a brain fog at the moment as I should be able to do this. I have a List that includes quite a few items including Latitude and longitude elements, see ...
John Lewis's user avatar
0 votes
0 answers
7 views

How do I get the close button to work after popup has appreared?

I have most of the code activated the .active class when you click a team member but the close button doesnt do anything onclick? Basically, it adds .active class which shows the popup on click and ...
Lauren's user avatar
  • 31
0 votes
0 answers
14 views

Simplify complexity [closed]

I came across this questions which asks to create a function which will return true/false based on the passed array containing all the letters to make up the passed word. Each letter from array can ...
M11CH's user avatar
  • 46
0 votes
0 answers
3 views

Logic App Function App reading and writing Binary Files

I am having a weird problem that I have been fighting with for several days. I have the Logic App below: My Logic App is supposed to take Excel (template) as input from Sharepoint, write to it(using ...
Leonard's user avatar
  • 37
0 votes
0 answers
6 views

I need assistance with scripting between tabs for Google Sheets

I know I'm missing something, but please know that I have poured over Stack, and other resources as well, and I have tried and modified a number of base scripts, and worked with formulas, and still ...
JAMager's user avatar
0 votes
0 answers
3 views

Latex overleaf error that i cant seem to solve

so im currently starting on my master's thesis, in which in want to use Overleaf Latex. I have some small experience in using Overleaf latex, so i started by creating a new project and used a preamble ...
Sermad NaJar's user avatar
0 votes
0 answers
7 views

Slate.js - How to get Absolute Text Selection

I'm trying to implement a collaborative text editor using Slate.js, with React and Typescript. For applying text styling and broadcasting to other clients, I need the exact selection of the text that ...
r1c4rdco5t4's user avatar
0 votes
0 answers
6 views

error ORA-12514 TNS:listener does not currently know of service requested in connect descriptor

Currently, I'm facing the error "ORA-12514 TNS:listener does not currently know of service requested in connect descriptor" when trying to login on my front end. Every solution I've seen so ...
pat's user avatar
  • 11
0 votes
0 answers
3 views

I have a horizontal line drawn in the header of the last page of the list of tables in my document, how can I remove it? (LATEX)

enter image description here Just as I say in the title, I have this line in the header of the last page of the list of tables in my document. Just before the headers start in the content, which is ...
Katherine Guthrie Tabilo's user avatar
0 votes
0 answers
3 views

NullpointerException when trying to connect Application to AxonIQ Console

I'm trying to connect my axon application to https://console.axoniq.io/ I do not use Spring because I have a quarkus-application. So in my pom.xml I have the following dependency: <dependency&...
Veilchen4ever's user avatar
-2 votes
0 answers
8 views

mySQL incorrect dates

I have a mysql table. One column has many records. However, the date is sometimes formatted incorrectly. So 1998-00-00 or 2024-00-00. Why does mysql allow this and how can I find or correct/delete ...
SirSmokealot's user avatar
0 votes
0 answers
6 views

Azure Open AI Embedding Skillset - Error in skill 'Azure OpenAI Embedding skill': 'uri' parameter cannot be null or empty

I am working on integrating Azure OpenAI's embedding skill into my skillset for Azure Cognitive Search, but I'm encountering a RestError when I try to create or update the skillset. The splitSkill ...
shreyas dasari's user avatar
0 votes
0 answers
10 views

Setting and sending http only cookies from Next.js 14 to Express.js

I have an express.js (node.js) as my backend, and next.js v. 14 as my frontend. In the backend, I can send the cookie just fine, and I can protect certain endpoints also with the cookie. However, I ...
user10033434's user avatar
0 votes
0 answers
4 views

How to redirect to parent object after child record creation

Looking for a standard ways to redirect to parent Object after Child record creation on salesforce Lightning by using URL's on Master Object List view button Could not find a way to redirect to parent ...
GCK SFDC's user avatar
1 vote
0 answers
6 views

python script using bluetooth running on windows 11 vs raspberry pi4

I've run into an issue with a python script which performs differently when run on Windows 11 (through VS) versus running on a Raspberry Pi4 The script has been modified from a CLi script found to ...
IronDad75's user avatar
0 votes
0 answers
4 views

Lost PrimeNg styling after upgrade to version 16

All of a sudden margin padding font etc of PrimeNg gone crazy when i upgraded my versions to 16 (Both Angular as well as PrimeNg). This is my package.json: { ... "private": true, "...
Tanzeel's user avatar
  • 4,572
0 votes
0 answers
2 views

DRF, corsheaders and SSL certificate error on deploy on VPS

I'm using DRF (+ corsheaders) port 8000, React port 3000 and on VPS nginx. All start in terminal manually. Without SSL all works ok. After I add SSL certificate to my project on ubuntu VPS, I start to ...
WWik's user avatar
  • 1
0 votes
0 answers
8 views

How do I run a python file without using Command prompt

I am learning python and wondering if I can run/launch a python file by just like clicking it like it is a vbs file. Please help. Cant find anything to help me online so I just came here as a last ...
Sayyid Talebi's user avatar
0 votes
0 answers
4 views

How to get and update tags for given VM using vCenter APIs?

I am able to get a list of all VMs and then get each VM property, but the VM property endpoint does not show the tags assigned. Which endpoints should I be using? I am getting all VMs with /api/...
Prashant Mall's user avatar
0 votes
0 answers
10 views

"Critical error detected" in double import of python module - Pybind11

basically I have an embedded interpreter in the main thread that is replaced by a new interpreter in a new thread. I got crash if the first module import has the same import statement that is in the ...
Roberto Casalegno's user avatar
-2 votes
0 answers
10 views

How do I add tags to HTML web pages and sort them with a filter? [closed]

I need to add tags to my HTML web pages and be able to add a tag filter to my search bar. Anyone know how?
Death's user avatar
  • 1
0 votes
0 answers
9 views

Need help on _tkinter.TclError: invalid command name "<!DOCTYPE"

My question refers to this video: https://m.youtube.com/watch?v=8m4uDS_nyCk&list=PLs3IFJPw3G9LQfo8GYbnPRaD8DKHj9aOJ&index=20&pp=iAQB At time 3:46 she runs the code for root widget: from ...
Frjoap's user avatar
  • 1
0 votes
0 answers
16 views

How I can use actual value which depends on date

I am analysing sales at marketplace and can't decide how to use a cost price, which depends on a date when I've changed it. For instance I had received an order, item A, in 12 March and it cost ...
Mike Silver's user avatar
0 votes
0 answers
7 views

Next.js App Directory - Update Client Component upon completion of async function. Component only updates upon page refresh

Using Next.js (14.1.0, app router, no SRC folder). I need a client component that itself lives in a globally present menu to update somehow upon the user logging in, however it will only do so when ...
Ribs's user avatar
  • 1,485
0 votes
0 answers
9 views

how to enable permission for support web address on android 12 and above

deep links don't work on android 12 I have set the manifest file <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> ...
MarwanAg's user avatar
0 votes
0 answers
5 views

Custom control's name is not recognized in application's namespace

I'm making a simple navigation control in WPF by following this tutorial. But for some reason it name doesn't exist in the namespace. The errors, sorry they're in Polish Can someone explain where I ...
Despresso's user avatar
0 votes
0 answers
7 views

How to only transform Dataframe Mapper to PMML

I want to use multiple PMMLS to keep my transformation of the data and the application of the model separate.Following is the code I am using. I am doing this because I want to include some kind of ...
Habenzu's user avatar
  • 75
0 votes
1 answer
8 views

How can I improve concurrent message processing with Google Task Queue?

I have a Google Task queue set up with the following configuration: Max rate: 500/s Max concurrent: 1000 Max burst size: 100 So theoretically it should be able to handle 1000 tasks concurrently. The ...
bflynnigan's user avatar

15 30 50 per page
1
2 3 4 5
482649