text
string
meta
dict
Q: Tomcat docker image with Openj9 Does anyone have a current Tomcat image along with Openj9 ? I built it myself based on Tomcat 9 with jdk11 adding to the image : # set variables to create shared class cache ENV JAVA_SCC_OPTS "-Xshareclasses:name=tomcat_scc,cacheDir=/tmp,enableBCI -Xscmx20M" ENV JAVA_OLD_OPTS ${JAVA_O...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603141", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: module 'tensorflow.compat.v2.__internal__.tracking' has no attribute 'TrackableSaver' i was trying to do this # Define the model model = keras.Sequential([ keras.layers.Flatten(input_shape=(28, 28)), keras.layers.Dense(128, activation='relu'), keras.layers.Dense(10, activation='softmax') ]) model.compile...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603142", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Javascript set Interval is running more then one time in single second I am writing a code where A video will play and then through faceapi we will catch the emotion of the user every second so far every thing we going good As soon as I added one validation that if face is not detectable for 5 seconds it will pause ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603147", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How do I set up autoscaling on an IBM Cloud MongoDB database? I have an IBM Cloud MongoDB deployment. I can set up autoscaling in the UI, but I want to do script it. How can I do that? A: You can set up autoscaling using the IBM Command Line Interface (CLI) autoscaling command. You can install the CLI from here and...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603148", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: How to change the height of 2 by 2 figures in rmarkdown I want to make each figure longer in heights under 2 by 2 style. Any idea, please? attach(mtcars) par(mfrow=c(2,2)) plot(wt,mpg, main="Scatterplot of wt vs. mpg") plot(wt,disp, main="Scatterplot of wt vs disp") hist(wt, main="Histogram of wt") boxplot(wt, main=...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603150", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to transactionally rollback consumed message in camel kafka? I have a scenario where I need to consume a message from one Kafka topic and publish it to another Kafka topic. from("kafka:topic1?groupId=topic1&broker=broker1") .process(<business-logic>) .to("kafka:topic2?broker=broker2") .process(n...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603151", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Sharing cookies between TLD and subdomain (particularly Wordpress multisite/network) I have a Wordpress installation using Network/Multisite all the multisites are folder i.e * *domain.com *domain.com/uk *domain.com/it *domain.com/es One multi-site is a subdomain, subdomain.domain.com When logging as a user my...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603152", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to solve: "SequelizeConnectionError: Connection terminated unexpectedly" in GutHub Actions Am currently testing my app using jest in CircleCI but after running a single test it return SequelizeConnectionError: Connection terminated unexpectedly by that the test fails. I was expecting the test to run and succeed ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603153", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: pnpm install - transitive dependency strict version (ignore caret) Let us take a example, I want to install a new package (a@1.0.0) using pnpm. This package a@1.0.0 is dependent on package b@^1.0.0, and getting b's 1.2.0 (latest version). Is there an option to tell pnpm to strictly bring b's 1.0.0 and not use caret....
{ "language": "en", "url": "https://stackoverflow.com/questions/75603154", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Modify API response before passing back to controller in .NET Core I'm able to achieve same behavior easily in .NET Framework but coming to .NET Core I don't find needed methods to achieve same Snippet: below response has only Getter no setter and CreateErrorResponse is not supported var error = new HttpError ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603158", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: RDS for SQL Server to EC2 Migration Does anyone know how we can migrate SQL Server from RDS to EC2? We have some privilege problem using RDS, and decided to move to EC2 for more administration freedom. A: * *Create SQL Server on an EC2 *Backup the RDS SQL Server *Restore the RDS backup to the EC2 SQL Server Mic...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603159", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why won't spingboot connect to the mongodb server and instead give me a socket error? I'm trying to make a springboot application and I'm using mongoDB as the database. I have all the proper dependencies in my pom.xml file but upon running my application, I get the following error: com.mongodb.MongoSocketOpenExcept...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603160", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Where am I going wrong when upgrading my react native version from 0.68.5 to 0.71.2? we use Nx Monorepo and our former mono repo and project versions and files are listed below; 0.68.5 { ..., "dependencies": { ..., "@react-native-async-storage/async-storage": "1.14.1", "@react-native-community/checkb...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603161", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "2" }
Q: Markdown images not showing in Blazor Server App I am creating a simple article/blog style website and using markdown files to store the content for the articles. In Visual Studio 22 I can see the image fine in the markdown preview panel, however when the application runs, it does not render the image. Here is the l...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603165", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is it possible to unset git config entries ad-hoc I can set different config options on a per-command basis with git using the -c (or --config) option, e.g. git -c interactive.diffFilter=cat add -i Is there a way to also unset a config option? Certain behaviors in git are triggered by the mere presence of a config ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603166", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Discord JS v14 - Get all the servers where the member is in I'm using the following code to retrieve all the server's IDs where the member is in. I'm am getting the member from the interaction. Can someone help me? async execute(interaction) { const guilds = await interaction.client.guilds.fetch(); const userGui...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603169", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Problem with data table webcsrape (web with open data) I need read table from web (city open data) directly to pandas dataframe. But when I use pandas.read_html(), python return error message No tables found. My code: import requests import pandas as pd url = 'https://opendata.kosice.sk/datasets/kosice-mesto::v%C3%...
{ "language": "sk", "url": "https://stackoverflow.com/questions/75603171", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: React Native Drawer Sidebar with subMenu. Is there a better approach? I create a custom Drawer Navigator, like a submenu when the sidebar opens. This is the way i did it. Each item has an index which is hardcoded. If you press on an item it sets the id to the index setId(index) , once you press the subItem and you ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603172", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: libcurl FTP get working directory to string I have an application which interacts with an FTP server using libcurl. I'm struggling to retrieve the value of the working directory. How is this meant to be done? In my code I connect to the server and issue a CWD command, which is successful, followed by a PWD command, ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603179", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Issue with .htaccess on IONOS I have hosted a website on IONOS and have an SSL certificate, however, the site sometimes directs to the http version rather than the https version. I found what I think is the correct fix to this by editing the .htaccess file and putting in: RewriteEngine On RewriteCond %{Server_Port}...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603182", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to get the matching data in python I am trying to get the matching data in list by passing a key word.Below the code. lst = [{'Name': 'an1-cs-ea-Primary-Asg', 'Region': 'us-east-2'},{'Name': 'an1-cs-ea-Secondary-Asg', 'Region': 'us-east-2'},{'Name': 'an1-te1-atrmm-Asg', 'Region': 'us-east-2'}] Key = ['ea'] newls...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603183", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Swiftbot Text file When ‘Q’ is entered, the program should write the following information to a text file. ▪ The names and the sizes of all drawn shapes as well as the angles of the triangles, in the order they were drawn. For example: ‘Square: 60, Triangle: 60, 45, 75 (angles: 53.13, 36.87, 90), Square: 30 ▪ The ‘l...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603186", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: C# Unity networkStream.ReadAsync sometimes stops at last bytes I have a C# script to receive files asynchronously. I develop an Android app in Unity 2020.3. The problem is that the code sometimes works perfectly and some other times it gets stack in the last 1000 + some bytes for receiving an objects, while in Unity...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603187", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Prettier Typescript configuration for keeping the object in one line but its type definition in separate lines I have code with functions of this format: export const loginService = async ({ email, password }: { email: string; password: string }) => {} I want all these functions to be formatted in this manner: expo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603188", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Why component doesn't re-render correctly? My timer app works incorrectly. I'm trying to write timer which can save data on the sever. App logic: When page rendered 1st time, it's get data from server (mockAPI) to render actual time, and pass it to child component. But component re-renders correctly only it's state ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603189", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Large geospatial join usign BigQuery I'm using a large table in BigQuery with a geometry column and nested fields. The query is as follows: WITH temp_01 AS( SELECT id, geometry, mle.metadata.localId AS localId, FROM `dataset.maps_layer` mle WHERE layer_id = 4 ) ---------------------------------...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603190", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is it possible to use global variable that change continuously over time from matlab workspace to use with simulink? I've been coding a matlab program to read data from esp32 with matlab serial port connection and I extracted angular(degree or rad) and angular velocity(degree/s or rad/s) data and store them as varia...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603192", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unable to view the argument types Assume I have an interface interface Types{ name?:string, age?:number } When I call the below function why does Intellisense not show the options of interface Types that I can pass? function display(options: Types) { console.log(options.name); } display({name: "hey"}) Is ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603195", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to use STEPControl_Writer in openCascade.js? I'm trying to write a stp file from from my shape. I dowloaded the example to import a stp file, do something with it and then save it again as a stp file. So far this is my reader and writer: var reader = new openCascade.STEPControl_Reader_1(); const readResult = rea...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603196", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: SonarCloud SAAS platform integration with Bamboo CI These are the tools I am using: VCS Provider: BitBucket Cloud Orchestration tool: Bamboo CI SAST tool: SonarCloud (SAAS soln) Objective: Run automatic scans with SonarCloud whenever new code is pushed or PR is raised. * *I have created Bamboo CI project which is ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603197", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Chartjs: How do I make sure it always create a certain ticks on Y axis I am trying to create a dual Y-axis chart for RSI and price in which I want to label Y axis of RSI as: 0,10,20...100 I am using Chartjs v3 The issue is that despite of setting min and max and stepSize to 0 it does not keep the Y axis fixed. How d...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603198", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Print pdf file with Zebra Printer using xamarin forms I'm trying to develop an android app to print a pdf file with my zebra printer, but i'm not being able to. I'm using Link-OS SDK and Xamarin forms. I've tried using .SendFileContents and .Write(System.IO.File.ReadAllBytes(pdf) but it just prints a bunch of ASCII ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603201", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: No Mapping Spring Boot i have tried for hours i cant get the solutions, pls help i got an error NO MAPPING FOR GET like this below, i used jdk 19 2023-03-01T18:28:59.771+07:00 INFO 14832 --- [nio-8080-exec-2] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' 2023-0...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603203", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Angular Checkboxes in mat-table initial value i have a mat-table of rules, which can be activated with a checkbox. I dont know how to implement an inital value for the checkbox. This is, how it looks like at the moment. <ng-container matColumnDef="activate"> <th mat-header-cell *matHeaderCellDef class="...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603204", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to resovle dependencies names between Debian and Buildroot? We have a running app with nodejs and @abandonware/noble package on Radxa Zero with DietPi OS (Debian) which controls a bluetooth device. The documentation of the package says you need sudo apt-get install bluetooth bluez libbluetooth-dev libudev-dev. T...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603207", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: React table v8 column define Here is my react table column def where i have defined header and accesor key. Now can i use my metadata to define my columns using react table.Like how should i use columnHelper or some other def? export const ColumnMetaData = { columns : [ { header: "BRANCH STATE", ...
{ "language": "es", "url": "https://stackoverflow.com/questions/75603211", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Cancel notification in local notifications plugin flutter in flutter's local notification plugin, my aim is that when the notification appears, it should either be dismissible by the user or self dismissed itself after 5 seconds. this is the code displayNotification({@required String title, @required String body}) a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603212", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How do I protect my formula cells from being edited by a user, but allow updates from a website (external source)? What I want to do is protect the majority of my spreadsheet (there will be some cells that the user can edit - have worked out how to do that). But I want the other cells to be locked to prevent accide...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603213", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Send mail notification after an event occurred, after 5 days and after 15 days using Azure and .Net I have the below requirement: * *After an event is occurred(In .Net side), we need to trigger mail notification immediately, after 5 days and after 15 days. *These days will be calculated based on workdays only(Mon...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603216", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Selenium and Cucumber in a Java/SpringBoot enironment - automatic retry of failed tests I've got a rather large test suite with Selenium/Cucumber, which runs in a Java/Spring-Boot/Angular environment. The problem is the classical one: Flaky tests, due to page hickups and/or server/environment issues. I know there is...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603220", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Symfony commands execution error: The environment "= " contains invalid characters I'm encountering a strange problem on symfony 5.4 when executing every command , made by me or of the framework like cache:clear , i instantly recieve this error: In Kernel.php line 418 The environment "= " contains invalid characters...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603221", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Traefik routing and Lets Encrypt fail for regex matcher HostRegexp(`{subdomain:[[:ascii:]]+}…`) In Traefik proxy this otherwise valid regex matcher fails to pass traffic and obtain Lets Encrypt certificate: - 'traefik.http.routers.dokku-http.rule=HostRegexp(`{subdomain:[[:ascii:]]+}.dokku.${SERVER_HOSTNAME}`)' and ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603223", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: What text editor with git integration is there for macOS? Atom just shut down. I do not like how Sublime requires another app "Sublime Merge" for all things git. Are there any good alternatives? I cannot ask GPT, because it might be too new for him/her. ;)
{ "language": "en", "url": "https://stackoverflow.com/questions/75603226", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Memory Management with Nested Pointers in C Programming Assuming you have allocated memory for a struct pointer using malloc() and assigned values to its members, how would you free the memory while ensuring that no memory leaks occur if one of the members of the struct is also a pointer to another dynamically alloc...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603229", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Is it possible to save a variable in a file between executions? I'm trying to be able to save a list of lists in my program so that if it is updated the next time I run the code it will remain updated. I know this is possible by writing it to an external text program however I would prefer a solution where I am able...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603232", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to make python 3 code overcome Windows 10 long path name? I cannot make my python 3 code work with Microsft Windows 10 long path names. I have searched the net and various forums to no avail. There is literature and posts about this issue but no matter what I do, it does not work. Literally, I have been spending...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603233", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Shopify - Dynamic Images with MetaFields I have in the MetaField "Color" - 3 values. Red, Green and Blue. in Shopify. I want to provide hints for these colors on the Product page. Since I have only created the meta field on all products and I don't want to create a photo meta field here, I am checking to see if I ca...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603238", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Reference a file that is generated by the same script Having a trouble referencing a json file that is to be generated by null-resource local-exec. Here is the snippet of the resource creating the file: resource "null_resource" "clusterDO" { provisioner "local-exec" { command = "cat > DO_template.json <<EOL\n ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603239", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Python Pandas difficulty displaying both DataFrame and caught exceptions New to Python/Pandas. I have a DataFrame, df_out, and there's something wrong with it because at runtime a particular operation is failing: logger.info('analyze: dataframe size - {}'.format(len(df_out))) logger.info('analyze: dataframe head - {...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603240", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: SonarQube method usage report Is there a way to tell SonarQube to report methods, whose only calls are JUnit tests? We do have SonarQube in use and I found one case like mentioned above - now I'm wondering how much of these false negatives we have. A: I assume what you meant to say is "whose only calls are FROM JUn...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603242", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to listen to MIDI device change events using AudioKit - iOS Im developing my own CapacitorJS midi plugin using AudioKit in Swift, to use in Angular. But I have little to no knowledge in working with swift. I have installed AudioKit version 5.6.0. I have implemented a simple Class: MidiWrapper.swift: import Foun...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603246", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: C# maikit pop3: Find a specific message, messages unread I need to find messages by certain parameters and return them. At the same time, do it in such a way that the messages remain unread. I need to do this exactly using the pop3 protocol No way, except to search all messages and select the right ones, I have not ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603247", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to require iuplua module from another folder? I have a simple test.lua script that creates a window using iuplua. I call it with lua C:\path\to\test.lua. If I call it from C:\lua-5.4.4\iuplua where all the iup libraries at, everything is fine no matter where the script itself is placed. The line from command pro...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603248", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to find the false detection in the SVM classification model? I wrote a support vector machine algorithm code to classify 3 classes of data labeled in the target row with (1,0,-1), after predicting the test dataset with 79 percent accuracy, there are some misclassified values. How can I find them? For more inform...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603250", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: kubectl replace loadbalancer responds with error about duplicate nodePort apiVersion: v1 kind: Service metadata: name: feature-branches spec: selector: app: nginx-proxy-bot ports: - port: 80 targetPort: 80 type: LoadBalancer I changed the above to add forwarding for port 443 with: - po...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603253", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: vee-validate add class to input I have a simple form on vee-validate along with yup. Everything is working well, validation is going great. But I also need to add a class to input, I can't figure out how to do it with vee-validate I try do it with useField,but I didn't succeed. I need an example of how to add a clas...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603255", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Create a batch script that does the work of VLOOKUP for CSV files I have two files: File11 and File22. Their first columns are similar and named concatenatedValue. I want to use this concatenatedValue column from File22 and search it in File11 and get the column values corresponding to it from File11. The result can...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603256", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to interpret Apyori (Apriori algorithm) output for association rules longer than 2? I have implemented the Apriori algorithm to find frequent itemsets and association rules on my dataset and the Apyori library in Python gives me these results : Motif Support Confidence Lift 0 [05M09T, 05M093] 0...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603257", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: How to access angular components property in cypress I have a captcha component in angular and I have to access this components variable X in my test script. captcha component.ts: export class CaptchaComponent{ public x:number; // it is a random value in every call }; my test.cy.ts: it('login', () => { cy....
{ "language": "en", "url": "https://stackoverflow.com/questions/75603262", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Unable to bulid sucessfully in Netbeans showing error BUILD FAILURE Total time: 12.968 s Finished at: 2023-03-01T16:54:08+05:30 Failed to execute goal on project unicentaopos: Could not resolve dependencies for project com.unicenta:unicentaopos:jar:5.0-BETA: Failed to collect dependencies at org.jpos:jpos:jar:2.0....
{ "language": "en", "url": "https://stackoverflow.com/questions/75603263", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Running conan from powershell script Is there a way of using conan package manager commands in a bat file or ps1 file? Or any other automated way.. I want to automate the conan install / build / package commands. NOTE: All commands runs smoothly as single calls from PS already. A: I managed to get it working.. don'...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603265", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: aws glue logs: logs storage limits I would like to know what is the default behaviour for storing glue execution's logs. For example, by default aws-glue will store "n" number of executions, once "n" is reached next execution of same glue-job will delete the oldest one. Or by default aws-glue will store, for the sam...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603266", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: excel increment by letter instead of numbers in number and letter combination I have a cell a1 which contains value 25, b1 cell contains 30. c1 contains 35. I want to just drag and get these values. So when I drag I should get a1, b1, c1 instead of the general form which gets us a1, a2, a3 when you drag a cell. How ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603271", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Quotations in dplyr I'm learning dplyr and I'm confused about the use of quotation marks when specifying column names in some functions. For example, when passing column names in the functions select and arrange, they should be unquoted, but when invoking the function rename, the arguments should be quoted. This is ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603272", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: elasticsearch and cassandra data type configure both acceptence using geodistance query with latitude and longitude in elasticsearch in the spring boot class using geopint which data type i need to use in cassandra table to configure the both class and table data type for geodistance query GeoDistanceQueryBuilder g...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603273", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Post-installation script in Jpackage for Windows I have been exploring jpackage to create installers for an app and I have already created installers for both MacOs and Linux. Now that I'm trying to create an installer for Windows I came across a problem, while MacOs and Linux both offer the possibility of having a ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603275", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Using the `find` method of `QueryList` inside HTML template in Angular Is there a way to use methods on QueryList inside the HTML template ? For instance, in the TS file I can have : @ContentChildren(DonneeEntiteDirective) content!: QueryList<DonneeEntiteDirective> let test = this.content.find(e => e.name === 'surfa...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603277", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Async Java Mail Sender not sends all mails I have a Spring MVC web Application with have to send mails for a lot of user actions which, at the first time, was made by a synchronous method. If i make many actions (4-5) on sequence, the mail sender is not sending all mails but only some. I've tried with an @Async meth...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603278", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Reactjs Quiz App with API : cannot display the questions I'm trying to build a ReactJs quiz app using API. After the player select a level, I use redux to store this info and go to Questionnaire page. It will fetch the question according to the level. I used the level in my fetch but it seems like there is some erro...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603280", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Spa-router push() fonction redirect but my component has no style, like it's empty i'm trying to redirect on new component but no styles has charged ! i use push() from Spa-router to redirect push(`/user${encodeURIComponent(user.uid)}`); result : result what i can do ? my complete function /** * @param {boolea...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603281", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: problem about minimum execution time of parallel and sequential processes Problem. In the factory to make a device, two procedures must be done. Procedure A is done by A robots and B by B robots. All robots might have different times of execution. Question: write an algorithm(formula) that describes the minimum time...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603282", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Out Of Memory Exception in C# Application We have an inhouse WPF tool which basically deals with certain type of file handling(reading and writing). When the file file size is huge say greater than 150MB, the application becomes too slow and it takes huge time to load the file. When I debug the code I figured out th...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603283", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to create a linked server in Azure SQL MI to connect IBM AS400 i series I want to fetch some data from AS400(IBM i series) from Azure sql Managed Instance. Currentlty I am not finding any solution to do that. Please suggest if there is any way to do this. please help me getting the information to connect to IBM ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603285", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Does Cloud Spanner actually work with Hibernate DDL using PostgreSQL dialect? It seems a little bit strange that I haven't seen anyone else run into this problem: I'm trying to use Google Cloud Spanner as a drop-in replacement for PostgreSQL. My application connects to two databases, one which is local Postgres, and...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603286", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to golden test widgets with BlocProvider in it? In one of my apps, I'm trying to write some golden tests. However, I'm also doing some shared pref,go_router and bloc actions in the widget.Because of this, I can't setup my golden tests. I somehow solved the Bloc related errors but still can't get a png etc. ..add...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603287", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: I cant access process env file from react components In my react app I set base_url in process env file. But I can't access it from components. Is I needed to install dotenv module or something? BASE_URL=http://localhost:5000/api I cant access .env from components A: If you want to access .env files in your react a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603289", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: POST request not including payload data in Electron app I'm trying to get my server to accept bug reports and feature requests sent from within my Electron app. Using either the net.requests or https module on the main thread, GET requests work perfectly fine, but POST seems to not include the data no matter what I ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603291", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: Is there any way to understand the state of the Auto Revoke Permissions settings? I show a screen asking the user to disable the auto-revoke permission, but in some cases the setting is not there or is disabled. I want to not show the screen if the user cannot change it. activity.getPackageManager().isAutoRevokeWhit...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603292", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: PostgreSQL Table data auto purging through Datastage Job We are having a Postgres table which is filling very drastically (almost 5GB/day). We wanted to purge the Table for every 2 months old record. We want to implement a Datastage job for auto purging the table. Kindly suggest the possible ways to achieve this tas...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603293", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Node js does nothing Im trying to build this project : https://www.w3schools.com/nodejs/nodejs_raspberrypi_webserver_websocket.asp But when I tried to run the js file I got no respond and no errors. It creates the webpage but it doesn't send any respond. I tried to reinstall node.js and socket.io but nothing changed...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603294", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: WireMock json stub not adding the request body to response body in a post request I am trying to print the contents of the request body that I receive as a JSON object using the following code: { "request": { "method": "POST", "urlPath": "/endpoint" }, "response": { "status": 200, "body": "{\"r...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603296", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Trigger Azure alert from function app script with context Is there any way to trigger Azure Alert results by PowerShell script in the function app and attach results? I would like to pass the result of $res to the Azure Alert and send the email. $res = Get-AzResourceGroup $actionEmail = New-AzActionGroupReceiver ` ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603298", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Do all elements of the persistence.xml need to be deployed? So I am working on a multi-model project in the Jave EE environment with Maven. We have a core module that provides different classes for all other modules like interfaces, enums, and some utility classes. So what I tried to do is to put a @Converter class...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603299", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Flask - How to use config.from_object() I'm having an error: RuntimeError: Either 'SQLALCHEMY_DATABASE_URI' or 'SQLALCHEMY_BINDS' must be set. While trying to set up my flask app: init.py from config import Config from .models import User from flask import Flask from flask_sqlalchemy import SQLAlchemy from flask_lo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603301", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: I am trying download a website for scrapping purpose but i keep getting an error I am trying to download https://www.classcentral.com/ for scrapping purposes but I am not able to download it as it shows me a mirror error in the log it shows me error 403 forbidden error. I was expecting the website to be downloaded s...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603304", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Is throwing exceptions still bad in javascript? I learned a long time ago that throwing errors in Node.js and V8 is bad (here some sources), and modern languages seems to confirm this trend with Go having error checking as idiomatic, and Rust having the Maybe type. It makes sense because throwing errors boils down t...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603306", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: ERROR {org.wso2.is.notification.EventSender} - Error while sending Revocation Event In logs i'm getting this Error while opening admin page. ERROR {org.wso2.is.notification.EventSender} - Error while sending Revocation Event to https://:/internal/data/v1/notify javax.net.ssl.SSLPeerUnverifiedException: Certificate ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603308", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: a common algorithm to parse a relational algebra tree into an SQL sentence? What is a common algorithm to parse a relational algebra tree into an SQL sentence? There are a lot of algorithms to translate SQL into a relational algebra tree. I can implement such an algorithm by using temporary tables at each node, but ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603309", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-2" }
Q: How to determine the length of a string? I have a code who transforms a csv table in an different csv table, for example the numbers in the file are shortened and written to a new file. All numbers who are longer than seven digits have to be ignored from the programm. I tried to fix it, with following code: if lineS...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603316", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: Google Analytics detects conversions for old Mailchimp campaigns We send emails through Mailchimp and have GA connected to track conversions (customer see's email, clicks product and purchases online). However, I'm seeing lots of conversions and revenue in GA from old email campaigns. Take our black friday email fo...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603317", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: "No url found for submodule path 'PropWorx.Portal' in .gitmodules" error when running pipeline in Azure DevOps I have an Angular 12 web app which build and runs just fine locally on my development PC. The code is in a git repository in Azure DevOps. I now want to publish it to Azure Static Web App (using CD/CI), so ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603320", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to count values of result (data returned as tuple) returned from criteriaQuery? Currently, I have a criteriaQuery which returns the following values. source | id ---------------- AWS | id1 GCP | id1 AZURE | id1 AWS | id2 ALI | id2 Currently, I am retrieving all these result rows in my application a...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603322", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: AspNetCoreGeneratedDocument.Views_shopping_Category.ExecuteAsync() in Category.cshtml this is my category.cshtml @model IEnumerable<EcommerceWebsite.Models.CategoryTable> <table> <thead> <tr> <td>@Html.DisplayNameFor(model=>model.CatName)</td> </tr> </thead...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603323", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: leaflet Map only having correct position after browser resize first I want to show you a screenshot what my issue is, I think it makes it easier to understand https://i.gyazo.com/05f4d98fd68d9802264a9f016ba05cc6.png As you can see in the image, there is a gap between my left navbar, which is expandable, and the left...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603332", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: elasticsearch nest client (5.x) : UpdateByQuery does not work I am using ES Nest Client 5.x (legacy project) and need to patch my documents. My UpdateByQuery simply does not work; query never fetches anything to run the script against. There are no errors though. foreach (var index in indices) { ...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603334", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: How to fix node: bad option: --openssl-legacy-provider I started my react app with npm start but i got this node: bad option: --openssl-legacy-provider and i am using node v16.15.0 i tried deleting all the node modules and running npm install but it didnt work.
{ "language": "en", "url": "https://stackoverflow.com/questions/75603337", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "-1" }
Q: How to customize Api endpoint for Azure function I am currently building Azure functions using VS Code on my local now. There are 9 azure functions and all of them are placed in the root folder. Now, I really want to make my project structure like this. * *Feature A * *Function 1 *Function 2 *Function 3 *Fe...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603339", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }
Q: Orbeon Forms: Dynamically Reference a Control Value Depending on other control values we may need to get data from one of many sources (up to 100), not we know we can do this with a huge IF statement, but it would be easier to maintain if this could be done dynamically.. Regards PeteA Is there a way to dynamically b...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603340", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Does cdk deploy wait for a complete deployment? When deploying tasks of a service in an AWS ECS cluster by executing cdk deploy, does the command return before all new instances are spin up and all old instances were drained or does it wait? I checked the documentation of AWS CDK and AWS CloudFormation. The latter o...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603342", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "1" }
Q: Dynamic pipe in Modelica I can't understand the benefit of the nNodes parameter in the .Modelica.Fluid.Pipes.DynamicPipe component. How can we choose this parameter and from the point of view of physics, what does it mean? Now, i`m trying to realize, how this model works to use it in my project. A: nNodes determine...
{ "language": "en", "url": "https://stackoverflow.com/questions/75603344", "timestamp": "2023-03-29T00:00:00", "source": "stackexchange", "question_score": "0" }