Latest Questions

Conditional formatting stops macro from running all the way

I have some conditional formatting together with a module, that for some reason prevents my macros from running all the way through. =NOT(TestColor(E8)) is my c

Check if string exists in list made with data from a csv file

I import data from a csv file and then store it in a list (List<Customer> customers). The data is added to the list by creating and adding objects. The ob

Nextjs change 308 to 301 redirect

My task is to set up a redirect from pages with a trailing slash to a page without a trailing slash through 301 redirects for SEO. By default, nextjs has a 308

Determine Kubernetes cluster size

I am confused in finalize the cluster size for my QA kubernetes deployment which can be used by 150 people. Follwing are the services i need to deploy: 6 Spring

how can we see the .exe printf message [closed]

I have an question about the .exe log. I am using raspberry pi 4 module with Debian OS where I am running my c-program from the .service base

Creating classes dynamically in python [duplicate]

Is it a good coding practice to have the class name as variable. E.g def create_class(class_name): class class_name: def __init__(self

Listen a ValueNotifier from class

Hi im new in flutter and i have a class for notify changes of a global values in my app like this import 'package:flutter/material.dart'; class GlobalNotifier

What is a NullPointerException, and how do I fix it?

What are Null Pointer Exceptions (java.lang.NullPointerException) and what causes them? What methods/tools can be used to determine the cause

How to set global property for react using esbuild

According to the docs using define is the suggested way of setting the env properties for a build. When I run my app with I get a process is not defined error.

Getting index of selected item in a ListView while WPF MVVM pattern is used

I want to get selected Item from ListView. My view is: <ListView Name="StudentGrid" Grid.Row="1" Margin="1,1,1,1" ItemsSource="{Binding studentList}" Selecte

Problem with time picker not working flutter

Problem with the time picker not working when I choose the time it should be typed automatically in the field code : https://codeshare.io/WddQvl onTap: () {

jupyter notebook resource management in vscode

I have some .ipynb file and open these files in vscode but my vscode taking a lot of resources so i should reopen my vscode again and again.

Using Django-channels3 on connecting throwing error

I am using Django-Channels3 with django-redis, following a youtube tutorial, being a newbie @ Websockets, i got no idea, why WebSocketKing Client throwing this

Typegoose not working with vuetify in electron

Im trying to build a very simple model with typegoose inside Vue + electron. This is my simplified code: import { getModelForClass, prop, modelOptions } fro

How to correct VS Code terminal pointing to wrong folder C:\Windows\System32\WindowsPowerShell\v1.0?

I try to open a React project path in terminal window using VS Code's Open in Integrated Terminal (Ctrl+Shift+`), but it sets C:\Windows\System32\WindowsPowerSh

How to use TransparentUpgradeableProxy as Transparent Proxy

I'm Solidity Newbie. I'm learning how to implement Transparent Proxy using Openzeppelin's TransparentUpgradeableProxy contract, but am having some problems. Ste

How to block modification of .htaccess file wordpress

please tell me what can I do to protect my .htaccess file ? Recently I was hacked and I noticed that I can navigate into different place of my wp-admin (Posts,

set arrow with tooltip of matTooltip angular material

in angular material it provide matTooltip attribute to show tooltip . i want to show arrow with tooltip pointing towards overflow text. but tooltip position is

how to open passward protected excel file and save in dataframe

i know this question has been asked many times , i have read through the answers of previously asked question however im still not getting how to open the file

How to get input in a for loop in Node.js with only using the inbuilt methods?

I am trying to get multiple input and process them in the for loop. For Example - for(let i = 0; i < 10; i++) { input = how to get this is my question

calculate business day of the month in SharePoint

I have a SharePoint list where I need to find the next due date based on today's date and the business day. For example today is 5/13/2022 and the next due date

litstudy Package Installation Python

I am Trying to do Co-Citation Network analysis and have to install package called "litstudy" in Python but I am getting an Error installing it in Jupyter and Py

How to draw double coordinate CDF and PDF with R

I want to plot a picture with cumulative distribution function (CDF) and probability density function (PDF),which has a unified x-axis and y-axis with re

Disable tooltip for Line chart for one line

I am creating a line chart with multiple lines. I am trying to disable the tooltip that pops up over one of the lines. Is it possible to disable the tool top

Node JS "Importing binding name 'default' cannot be resolved by star export entries" for HLS.js

Currently I have the following folder layouts in node JS and installed express js sdk-components --- HlsLoader.js node_modules --- hls.js --- s

Can g++ (gcc) 11 be used on Debian Bullseye?

Can g++ (gcc) 11.1 be used on Debian Bullseye? Debian 11 (bullseye) is soon to be released, and I am interested in a compiler with C++20 and modules support. De

Why can't my app run on the intended port in Heroku?

I can't figure out what is the problem with heroku, I've spent 2 days trying to figure out what this error means to no avail. 2021-07-18T04:27:08.741998+00:00

How to fill area below geom_line plot in ggplot with geom_rect?

This is my plot: library(ggplot2) economics <- economics %>% mutate(year = year(economics$date)) ggplot(economics,aes(year, unemploy))+ geom_line() +

Is there a way to seed a key with a value of an array of strings?

I'm trying to seed some data using an external trivia API. Here's what I have in my seeds.rb file where HTTParty is a gem that parses JSON into a ruby hash: res

Why won't my QFileSystemView start at the 'set' location?

I have a QDialog that is passed a starting folder, which I expected to be the folder that would be selected and the upper level folders expanded. Everything wor