text string | meta dict |
|---|---|
Q: setState() or markNeedsBuild() called during build and how to fix Flutter I am displaying a popup survey in my app so after completing the survey and clicking done, the popup appears again. I do not want that to open.
I get this error
setState() or markNeedsBuild() called during build which makes the widget show tim... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590458",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Why javascript function not getting called inside the jquery ready function in edge browser alone? $(document).ready(function () {
var classlist = [];
var options = ' VERSION. DROPDOWN ';
var userid = localStorage.getItem("user");
var date = localStorage.getItem("date");
if(userid != null) ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590459",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Python Google Cloud Function - How can I access "request.form" data in Flask I am trying to make a simple login that will run on Google Cloud Functions. It will ask for a username inp_username and a password inp_password.
My problem is that I cannot access the data from inp_username and inp_password inside my funct... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590460",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: How to set browser and environment from the command line in cucumber.js I am a noob using Playwright with TypeScript and CucumberJs and I want to pass from the command line a String to my switch cases, something like this, on Windows. However, using set BROWSER=whatever and set ENV=whatever does not work.
I tried mu... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590461",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Angular frontend Spring backend file download not working or corrupt I have some files (.odt) stored in a mysql database which I try to download
Spring backend (not Spring boot):
Controller:
@RequestMapping(value = "/downloadRequest", method = RequestMethod.GET)
public ResponseEntity<Resource> downloadRequest(@R... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590471",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to match a partial string to a range of possible values? I have the following dataframes:
df1:
ZIP code
Other columns
1011AA
...
1011AA
...
2316XH
...
5815NE
...
df2:
starting value ZIP code range
last value ZIP code range
Province
1000
1200
North-Holland
1201
1500
South-Holland
150... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590476",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: boost the speed of recusrive function The function is too slow, or infinite, i didnt get the result. how to fix that?
def x(a):
return x(a - 1) + x(a - 2) + 42 if a > 1 else a
print(x(195))
A: Use functools.cache to save the results of each call to x().
from functools import cache
@cache
def x(a):
return... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590485",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: The following indentation is causing an error in the logic l = 1
str='abcdef'
for i in str :
for a in range (0, l):
print(str[a], end='')
l += 1
print()
the above code causes no error but if i indent the l +=1 as :
l = 1
str='abcdef'
for i in str :
for a in range (0, l):
print(str[a]... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590488",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: react native server response data format Among the data coming from the server as a response, the time comes as follows: Dec 1, 2021 12:07:32 PM
I want to use the above format as 'YYYY-MM-DD HH:mm:ss'. How should I convert it?
new Date('Dec 1, 2021 12:07:32 PM') => Date { NaN }
moment('Dec 1, 2021 12:07:32 PM').for... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590489",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Can I combine rules with the LALR parser without intermediate rule? I have something equivalent to the following code:
STRING_LITERAL: /"[^"]*"/
NUMERIC_LITERAL: /[0-9]+/
stmt: foo | bar | baz
foo: "FOO " any_expression
bar: "BAR " string_expression
baz: "BAZ " numeric_expression
?any_expression: function | STRING... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590490",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Difference between MultiheadAttention and Attention layer in Tensorflow What is the difference between the following layers in Tensorflow: tf.keras.layers.Attention, tf.keras.layers.MultiHeadAttention and tf.keras.layers.AdditiveAttention?
Also how to implement tf.keras.layers.MultiHeadAttention using fundamental la... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590491",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to send Post Request from axios, can I right axios.post(url, { data : obj})
I attend a interview and interviewer say question post from axios
A: const URL = "http://localhost:5500/register";
let data = {
name: 'dalpat',
email: 'test@gmail.com'
};
axios.post(URL, {
data: data;
})
// Routes
app.post("/regi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590493",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: I'm getting following error "Cannot read properties of undefined (reading 'then') at lazyInitializer at resolveLazy " while using React Lazy This is the Error I'm getting
//This is my code where I used the react lazy in React functional component.
import React,{Suspense, lazy} from "react";
import { BrowserRouter, R... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590494",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Change Boolean from true to false in a vue directive if the slot is empty then, the directive should return true, else false
Is it possible to get a variable from a directive so I can toggle it and use it? I read that there is binding, but I'm sure how could I set binding from true to false and then access it in my ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590497",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Exclude files from type: module without changing file extension I had to set "type": "module" in my package.json file and I would like to exclude some files from being treated as ES module files but WITHOUT changing its extension, as I need to keep it as .js file because other server scripts, (which I cannot change)... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590500",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to authenticate as Server and Client SslStream I've been trying to implement an SSL connexion with a server and client side using certificate but I've been hitting on a nail and can't seem to be able to authenticate, after numerous posts and threads carefully read, I'd hope you could help me find the problem sou... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590503",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How do I specify properties for a Azure Key Vault Secret from a Function App? I'm trying to create an Azure Function that creates a secret in a Key Vault with an expiration time of 30 minutes from now.
Just creating a secret with no properties works without any issues:
using Azure.Identity;
using Azure.Security.KeyV... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590506",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to add other dataframe attributes to the network according to the node id in networkx? I have undirected graph which includes nodes;
G.nodes = [1, 2, 3, 4]
So, I wanted add another dataframe attributes to these nodes according to node ID;
Node ID
Attribute (degree)
1
2
2
5
3
2
4
1
then, final ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590507",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Flask Debug mode not switching from configuration file I am facing the problem with flask configurations:
In order to switch from different configuration options I have config.py file:
class Config(object):
TESTING = False
# security options
SECRET_KEY = os.environ.get('SECRET_KEY', secrets.token_hex(16)... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590509",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to identify the View (with text) when the cursor is on it? How to identify the View (with text) when the cursor is on it? I would like to get the text when the cursor shows any view on the screen.
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590520",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I am uploading a CSV file on Bigquery, but I cannot see the word 'schema' for me to create table I intend to to upload a file on Bigquery and proceed with sql command. After opening my account in Bigquery, I choose a project in which my file will be uploaded to. Then, I press on create table, and I name it appropria... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590523",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I keep the values of chosen filters, if I come back to the page to press back button from the other page using angular 8 I am having a project and new on angular, using angular 8. Facing a problem with handling filters, I have a listing page and having filters on it. I filter the list using filters and go to... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590524",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to data parser JSON in javascript (converter) on N3uron MQTTclient I have a payload from MQTT broker
{
"connected": true,
"tags": {
"AI_INPUT": 93.41,
},
"timestamp": "2023-02-28T02:32:00.000Z"
}
and i need convert data to this format
{
"/AI_INPUT": [{
"v": 93.41,
"q": 192,
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590525",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: SQL dynamic query in ADF I have SQL dynamic query with a "?" that needs to be replaced with pipeline parameters. The fetched query has a question mark "?" how to replace that?
I tried passing the parameters but ADF doesn't recognize the ? symbol and the correct parameters are not passed
A: *
*You can either use co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590526",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Extrmely high gas consumption in solidity contract even if it is called a real simple method i have deployed that simple contract
pragma solidity >=0.7.0 <0.9.0;
contract testGasLimits{
uint b;
constructor(){
b = 0;
}
function testGasA(uint a) public{
b = a;
}
function tes... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590528",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Where to specify the quickfix config details in the quickfix/j spring boot application I want to specify the location and name of the quickfix/j configuration file in the springboot starter project.
quickfixj:
server:
config: classpath:quickfixj-server.cfg
auto-startup: true
force-disconnect: false
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590529",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Exponent on xlabs in ggscatter I am trying to add an exponent to my x axis labels but apparently the expression() is not used in ggscatter
ggscatter(database, x ="x" , y = "y",
add = "reg.line",conf.int = TRUE,
xlab=expression(m.g^-1),ylab="yaxis")
but I get a lifecycle::deprecate_soft() error
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590531",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: When we run pytests on a Lambda, it executes properly the first time, but fails second time onwards I am trying to run my pytest framework on a lambda so that the tests can be run on a single API call.
I save the reports in the directory "/tmp/report.html" as Lambda only allows to write files in the /tmp directory
A... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590532",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Loss always equal to zero while training the model I'm doing trying to solve multilabel classification problem: Large-scale Video Classification with Convolutional Neural Networks.
Since every video can have more that one label, I infer this probelm as a multi-labels classification problem, thus as suggested from ot... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590534",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Serialization with Hierarchy and inheritance System.Text.Json Can you explain why serialization of 'ILevel2' do not include the 'ILevel1' property ?
Serialize(level2), I expect to have {"Scrore":10,"Name":"Benjamin","City":"Lille"}
How to have it ?
Note im using the .net JSON serializer : using System.Text.Json.Json... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590537",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: How to Upgrade/Downgrade subscription in Flutter using in_app_purchase package For purchases, I am using the inapppurchase package. The package provides features for upgrading and downgrading packages. But I am unable to upgrade or downgrade the package. I am sharing details found on their package page.
*
Currently,... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590541",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Parsing of xml files using python etree module How to pass variable in
for i in root.findall(".//variable_name") in xpath for processing dynamically
findall(".//variable_name")
This gives error
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590542",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: while running sonarqube i am getting error was: {"code":"UNABLE_TO_VERIFY_LEAF_SIGNATURE"} while running from azure devops pipeline i am getting below error.
API GET '/api/server/version' failed, error was: {"code":"UNABLE_TO_VERIFY_LEAF_SIGNATURE"}
plz help me
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590543",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: Scroll to anchor breaks in edge and chrome when I use scrollTo with intersection observer. How can I fix this? Im creating a mobile navbar that has the # anchor links. The nav ul is horizontally scrollable to allow the content to fit horizontally. Clicking on a menu item scrolls the screen to the corresponding secti... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590544",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Pandas. Sorting in certain order after multi-level groupby() How to sort the results in each of column in needed order.
Code instance:
f_city = ['Nice', 'Cannes']
f_genre = ['pop', 'rock']
f_days = ['Monday', 'Wednesday', 'Friday']
filters = ['city in @f_city', 'genre in @f_genre', 'day in @f_days']
df.query('&'.joi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590545",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Problems replicating WordPress site Without using any plugins etc., I am trying to replicate a WordPress site, which I will call, for the sake of argument, 'www.mysite.com', at a different subdomain, 'staging.mysite.com'. I am doing this via ssh and I have full root access. I have taken a fairly basic approach. What... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590548",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Excel JS Add-In does not work in Office for Mac for certification. Other Platforms work fine I want to get my Excel JS Add In with User Defined Functions get certified for AppSource. Unfortunately, certification fails for this configuration:
Office for Mac connected to an M365 subscription. OSx Version:13.2 Office V... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590550",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: nginx, questions about $request_method and uri i have the this request:
request: "PROPFIND / HTTP/1.1", host:
However, the uri / path should be updated, should look like this.
request: "PROPFIND /dav HTTP/1.1", host:
How do i achieve this with something similar ?
location = / {
if ($request_method = "PROPFIND") { ??... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590551",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to add screen capture button on Jitsi with react I am using jitsi open sourece packge. I hosted it on the ubuntu server. I am using jisti react SDK for frontend implementation. It's working fine. I want to add a screen capture button. I find some ways.
I tried html2canvas too. but no luck. Have you guys any help... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590552",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Build Shopify Shipping Extension I'm looking to build a shopify extension that when invoked or put to use will create a shipping label from a 3rd party Rest API service.
I have looked at Getting started section @ https://shopify.dev/docs/apps/app-extensions/getting-started and the List of app extensions @ https://sh... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590553",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Improve performance of SFTP fetch using Windows powershell I have script which is working perfectly but it takes almost 15 minutes to copy 220 (10-14kb) zip files to local directory.
below is the script, anyway to improve it.
Thanks.
Set-ExecutionPolicy RemoteSigned -Scope Process -Force
Import-Module Transferetto
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590554",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: System of users, roles and access to the site only for users of certain AzureAD organisations Blazor Server I have a Blazor Server application in which I want to add a system of users and roles, I need my application to be accessible only by 2 organisations @org.a, @org.b. And also to have the Editor role. So that I... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590555",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ThreadPoolExecutor to create new threads until the desired result is obtained? I need to create new threads as long as some condition is met, in this example - as long as the result variable is less than the target variable. How can I achieve this?
import concurrent.futures
import threading
import time
import uuid
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590558",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Get values of multiple mat-form-fields I have the following code in .html:
<mat-form-field appearance="fill">
<mat-label>Min</mat-label>
<mat-select [formControl]="options" multiple>
<mat-option *ngFor="let number of numbers" [value]="{ min: number}">
{{ number }}
</mat-option>
</mat-select>
</ma... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590563",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to download https://www.classcentral.com/ using httrack . When I am trying to download by using httrack it show mirror error or forbidden I am trying download https://www.classcentral.com/ for scrapping purpose but I am not able to download as it shows me mirror error in log it shows me error 403 forbidden erro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590572",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: angular extension might not work correctly because ngcc operation failed vscode Angular Error
How should I fix this error??
I have tried this one but didn't work...
enter image description here
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590573",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-2"
} |
Q: TypeError: 'numpy.float64' object is not iterable in calculation my code is start when I do my generators, as :
train_data_dir= "/Users/awabe/Desktop/Project/PapilaDB/ExpertsSegmentations/ImagesWithContours train"
train_datagen = ImageDataGenerator(rescale=1./255,
shear_range=0.2,
zoom_range=0.2,
horizo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590574",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Datetime for Embedded kernel bootstrap without RTC Wondering kernel how to determine datetime in case of no-RTC.
In my case, I noticed the datetime always set to kernel/SDK compiling time stamp(eg 2023-02-27). not 1970-01-01.
I guest
*
*it is something from .config or variable set to vmlinux.
*My DUT read/set fro... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590576",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: AUTO SORTKEY Redshift We have enabled auto sortkeys for all the tables in redshift. WHich system table stores AWS generated sortkeys per table. The system view SVV_ALTER_TABLE_RECOMMENDATIONS shows the recommendations but is it the actual sortkeys that are generated?
Regards,
Raghu.
Information on auto sortkeys
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590578",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: CUDA fails to initialise when address sanitizer is enabled I have the following CMake project:
File: CMakeLists.txt
set(CMAKE_CXX_STANDARD 17)
cmake_minimum_required(VERSION 3.0)
project(SampleProgram LANGUAGES CXX CUDA)
find_package(CUDA REQUIRED)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS} -G)
cuda_add_executable(s... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590579",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Using pandas in django, how to release memory? In a django project that focuses on data analysis, I use pandas to transform the data to a required format. The process is nice and easy, but the project quickly starts using 1GB of RAM.
I know that Python doesn't really free up memory in this case (https://stackoverflo... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590580",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: I need help to use function result in security order I have a problem,is there any way to make function result in string series in request.security order instead simple string?
I wanna find highest price percent in a watchlist an use name of that currency in the security that returns some data,is anybody have a mind... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590581",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: How to align SVG text to left in SVG path? I'm having a hard time aligning the text of my SVG to the left. As I adjust the max-height value of it, the text always stays in the middle.
Any help would be greatly appreciated!
<svg width="0" height="0" class="hidden">
<symbol viewBox="0 0 150.2 71" id="3a63"><path fil... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590582",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: maincontent bar is not showing silverstripe cms admin I have set up the new silverstripe project. But if I go to the admin page it not showing the maincontent bar
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590583",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: npm run dev is stuck at starting node app.js this is where npm run dev is stucked
Please Someone help
I have made the app.js and register.ejs file with css amd js files but the app is not starting after running np run dev
It is stuck at "Starting "node app.js""
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590584",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Unable to load Lotus Domino V11 version library due to libcrypto64.so.1.1 on AIX I am getting below error while loading libnotes_r.a on AIX. I am using Domino lotus V11. Libcrypto does not contain libcrypto64.so.1.1.
0509-022 Cannot load module /opt/hcl/domino/notes/latest/ibmpow/libnotes_r.a.
0509-150 Dependent m... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590586",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Use key as byte array for DES3 in python I have a key and IV for DES3 as byte array (generated by C#):
var _algo = TripleDES.Create();
_algo.GenerateIV();
_algo.GenerateKey();
Console.WriteLine(string.Join(", ", _algo.IV));
Console.WriteLine(string.Join(", ", _algo.Key));
I get these values for example:
[220, 138, ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590589",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: ./node_modules/@angular/router/fesm2020/router.mjs:2789:20-33 - Error: export 'ɵis I have problem in npm install all package's is added but not working in
Error
./node_modules/@angular/router/fesm2020/router.mjs:2789:20-33 - Error: export 'ɵisStandalone' (imported as 'ɵisStandalone') was not found in '@angular/core'... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590590",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Checking whether something is within a radius in order to alert an enemy in a Unity 2D game using 'Physics.OverlapSphere' As the title describes I am currently experiencing an issue where 'Physics.OverlapSphere' isnt putting anything into the array. I feel as if it is a very simple error but it is something I canno... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590591",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google BigQuery Google Ads import I tried to set up a Google Ads transfer to Google BigQuery. However, I receive the following errors:
Error while processing report for table 'Placement' for account id ##########. Http(400) Bad Request; AuthorizationError.USER_PERMISSION_DENIED<
Does anyone knows how to successfully... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590594",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Appending the removed elements to a list in Python I am removing J1 from J but I also want to append the two. I present the current and expected output.
J=[2, 6, 9, 10]
J1=[6,10]
for i in range(0,len(J1)):
J.remove(J1[i])
J.append(J)
print(J)
The current output is
[2, 9, [...], [...]]
The expected output ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590595",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: MS Access: Duplicates with distinct values I have a database with hundred thousands of objects with geographical coordinates and multiple columns. I am trying to find duplicates by following criteria:
*
*Lattitudes of two objects should coincide;
*Longitudes of two objects should coincide;
*Values of column "Obj... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590596",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: openweather map tiles implementation on osm in android I am trying to set openweather map diffrent tiles on a open street map in android studio . if anyone could share a demo code for this of a android application using java.
I tried to use tile provide to set tiles , but nothing works perfectly .
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590598",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Failure to build unity game apk everytime I try building the apk for my unity android game instead of getting the apk I get a file which is titled ‘NAMEOFGAME_BurstDebugInformation_DoNotShip’ how can I fix this and get the apk I wish to build?
I don’t know what to do to solve this problem
A: After some research I f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590599",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to use PageView and Bottom Navigator together? I want to access page view as well as the bottom navigator with the same controller so that I can have that page swipe action that page view has by default.
I wanted to link pageview screens to the bottom navigator with the controller to have a swipe page change act... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590600",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to run executable from "real msys" inside "git-bash"? I installed rsync inside msys2 using pacman -S rsync and want to execute it from a git-bash shell (not a msys2 shell). This fails with error 127 and no message:
$ 'C:\Tools\msys64\usr\bin\rsync.exe' --help
$ echo $?
127
I know that git-bash and msys ship a f... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590601",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Error tokenizing data. C error: Expected 13 fields in line 4, saw 19 - not sure why? I have a CSV file. The first 5 lines of the CSV file looks like this:
subjectGroup browser version screenWidth screenHeight OS OS_lang GMT_timestamp local_timestamp trial_file_version mindsCode link duration_s ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590604",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can I mock python's subprocess.check_putput when it makes several different calls I have a function which makes several subprocess.check_output calls to glean various bits of information. To unit test the code I want to mock the results of check_output depending on the args so I tried this:
@pytest.fixture
def o... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590605",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Remove items from a list with duplicate column values using Linq If I have a class, say MyClass and it looks like this
public class MyClass
{
public int Id { get; set; }
public string Name { get; set; }
public string Type { get; set; }
}
and resulting List data looks like this
1 John primary
2 John sec... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590606",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Concept issues about initializing avariable in C++ class I'm translating a script form matlab to C++ and I'm given a code snipet in c++ so I can fill it. My BIG issue is that my knowledge about C++ is almost nothing, I know how classes work in a basic way so now I'm stuck in a variable initialization problem.
So, co... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590607",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Skip row depending on value in pandas dataframe I have this pandas dataframe obtained by scraping a website:
As you can see it needs to be adjusted, in particular where the column ID has the "Live" value i need to shift 2 columns to get the entire df aligned properly.
I tried this with my df being db2
rows_to_shift... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590608",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Is there anyone knows how to 'traceroute' over proxies? Currently I'm trying to traceroute over the proxy which supports SOCKS(4, 5) and HTTP protocol.
This proxy service just deliver my requests to hosts it has.
I searched as much as I can and it seems that only two options are feasible: using Proxychains; implemen... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590609",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Typescript Fundamentals: Dynamic call of functions from an object that also contains strings I have some problems getting the last line of this code to work:
const prompts = {
bus_tickets: {
en: 'Your bus tickets',
de: 'Deine Bustickets',
},
signed_in_as: {
en: (user: string) => `Signed in as: ${us... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590612",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Updating Editor field on SharePoint Online using the CSOM with App Only Auth I have the following issue.
I work with CSOM and I want to update the Author and Editor field on a List Item object.
The actual problem is that the Editor is not updated and the value is set to the SharePointApp user. The problem occurs aft... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590613",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Cannot import .CSV product list to Shopify I Exported my dataset to CSV format, bulk edited some data, and cannot import it after that, my db is almost empty now.
I had a tiny data set on my Shopify webshop with ca. 40 items.
I exported it into CSV format to bulk correct some typo's, and html descriptions. After t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590616",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to map to a tuple type? Is there a way to map a type like the following:
type ObjectType = {
prop1: number;
prop2: string;
prop3: boolean;
prop4: string;
};
to the following?
type TupleType = [number, string, boolean, string]
I had no luck first converting an object of type ObjectType to an array with ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590617",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: PyGithub: How to create a branch off the master and check out? How can I create a new branch off the master and check out the branch?
The documentation at https://pygithub.readthedocs.io/en/latest/ does not show how to do this.
Thanks a lot!!
A: I was able to do this with this code
g = Github("user", "pass")
repoNa... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590618",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to convert the last column output labels of excel dataset into categories and then use these labels into training and testing of model` import pandas as pd
import numpy as np
df = pd.read_excel('dataset.xlsx')
df.columns = df.columns.str.strip()
df['last_column'] = df['last_column'].map({'not fire':0, 'fire':1}... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590619",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can i open a mapview in a fragment android? im trying to make my app use MVVM architeture. For that is better for me to use a map in a fragment, but i cant find resources on that.
Can someone help me to figure out how can i add the map in a fragment ?
Im using mapbox
| {
"language": "en",
"url": "https://stackoverflow.com/questions/75590621",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: Why the emit of an event is not working with vue, while the logic is completed I'm trying to emit onClick event to the app component, but clicking on Next and Previous buttons isn't working. Even though I'm handling the events in the Step1 child component. I wonder why could this happen ?
https://codesandbox.io/s/in... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590622",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How to Install a Suit/Advance UI setup.exe silently in InstallShield I'm trying to install suit setup.exe silently but "The setup command line is invalid.The setup cannot proceed" (InstallShield 2019)
I tried commands "Setup.exe /silent", "Setup.exe /r" .iss file is also not creating, "Setup.exe /s /v/qn"
but is it ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590629",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Alternatives to all these if-statements in my C++ program In my beginners coding class, I was quested with writing a basic C++ code, for a pizzeria scenario which has the following requirements:
*
*Based on a budget ask the user if they want additional pizza topping.
*Update the Budget and a Invoice accordingly i... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590634",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Collect Windows 10 log to Azure Is it possible to collect all logs from my Windows 10 on-premise workstation to Azure ? Indeed, I want to read all the event viewer logs of my workstation on Azure, like Log Analytics to Azure VM.
Regards.
Azure log analytics /
A: To collect Windows 10 log to Azure, you can use the A... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590635",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Access to XMLHttpRequest at '' from origin '' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested res We have noticed an error in our webshop because we added a new event in Google tag menager and unfortunately no one is able to help us so far. Please help to resolve ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590640",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: How can a HTTP server know the content-length when using transfer encoding chunked? When I m using both content-length and transfer encoding server is rejecting the request as 400 Bad Request.
Web Server : Nginx
How the server can know the actual file size if chunked encoding is used?
A: When data is sent using tra... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590641",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Google translate(limited request solution) I use a script involving googletrans==4.0.0-rc1, there is a problem with this package, which is limited requests.
My solution when I connect to SQL server is to create a flag column(what record has been translated and what hasn't gone through translation), to translate new ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590643",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Upgrading .netcore 6 to from Core 3.1 throwing error System.IO.FileLoadException: Could not load file or assembly 'System.Text.Json' Version=7.0.0.0 Migrated the .netcore 3.1 to .net6 and updated the nuget package Microsoft.Extensions.Configuration.Json from 3.1.6 to 7.0.0
Have a Powershell task in release pipeline ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590644",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: how to prepare string variables in yaml for python that asign a variable by themselfs I need to build a Python-Script in Python 2.7 that makes a Select-Query to a Specific Database. This Script has to be reusable for certain reasons, but the Query has to be Flexible.
I wanted to add the Query to a YAML-File that is ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590646",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Do all variables of a class become static when we instantiate it with static keyword? I have the following problem, I am having a class which is called Cache and it's working like a standard cache if something is already in in take it, otherwise put it. The class has many other properties but they are not linked to ... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590648",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: How to print the Field Value if it has an empty string in the list in Java [name="zakir", salary="44003", designation=""]
[name="Sheela", salary="24303", designation="Developer"]
[name="Meghana", salary="100000", designation="Tester"]
In the above eaxmple i want to print the name which does not have any thing in d... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590649",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: R tests for trend with summary coefficient and standard errors I have the beta coefficient and standard error for the treatment effect of four independent groups and I want to test for a trend in the effect size across these four groups.
Is there a way to test for this in R?
I have used library meta in the past to t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590654",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: SQL query results not add up when using a WHERE clause What could be causing my second SQL query to return less than the expected count? I have an address table with 1000 entries, and my first query returns 100 when filtering for 'New York' city and 'Mainstreet' street. The second query should return 900, but it's n... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590657",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Set figure options for Python with knitr I have a knitr document (either Rmd or Rnw) in which I want to generate some output with R and some with Python. However, I'm not able to change the figure options that are being used in Python.
Specifically, if I use knitr::opts_chunk$set(fig.width = ..., fig.height = ...) b... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590659",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Not able to add speech recognition in website Im using localhost server for my website. I have integrated speech recognition in my form fields. As I needed speech recognizer in every field of form therefore I used different view function for that and rendering back to same page. The speech is working perfectly but t... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590663",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-4"
} |
Q: Function returns wrong result for duplicated value
function collectPositionChange({
recent,
result
}, value, currentIdx) {
const recentIdx = recent.indexOf(value);
if (recentIdx !== currentIdx) {
result.push({
value,
currentIdx,
recentIdx
});
}
return {
recent,
result
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590665",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-1"
} |
Q: when a user type some message it should be stored in mysql db after calling this function sendMessage function SendMessage(){
var message = `<div class="row justify-content-end">
<div class="col-6 col-sm-6 col-md-6">
<p class="sent float-right">${document.getElementByI... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590670",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "-3"
} |
Q: Mock include property in findMany with Prisma I have setup my project with TypeScript and Jest. I have a repository method that fetches all posts with their comments like so:
const data = await prisma.post.findMany({ include: { comments: true } })
After that I manipulate the comments via data.comments.map(...). Thi... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590671",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "1"
} |
Q: Contact Form 7 dropdown CSS Styling Problem with radio I have a problem with the Styling of the Contact Form 7. I would like that when you click on it, the drop down menu opens via CSS.
My HTML Code is this:
<span class="wpcf7-form-control wpcf7-radio contact-dropdown">
<span class="wpcf7-list-item first">
<sp... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590672",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Difference between Microsoft.AspNetCore.* and Microsoft.Extensions.* Nuget packages? There seems to be a lot of overlap between Microsoft.AspNetCore.* and Microsoft.Extensions.* Nuget packages.
A few examples:
*
*Microsoft.AspNetCore.Hosting vs Microsoft.Extensions.Hosting
*Microsoft.AspNetCore.Http vs Microsoft.... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590674",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |
Q: Merging 2 JSONArrays having same keys in java I have 2 JSONArrays that have same key as follows:
{
"data": {
"Students": [
{
"name" : "Alice",
"div" : "A",
"maths" : 56,
"science" : 89
... | {
"language": "en",
"url": "https://stackoverflow.com/questions/75590678",
"timestamp": "2023-03-29T00:00:00",
"source": "stackexchange",
"question_score": "0"
} |