All Questions

Filter by
Sorted by
Tagged with
0
votes
0answers
3 views

Incorrect number of arguments for type List<E>; it cannot be parameterized with arguments <JSONObject, JSONArray>

I have imported java.util.List interface. trying to create a function as follow: public List<JSONObject,JSONArray> getDetail(String s) But it shows error as "Incorrect number of arguments ...
0
votes
0answers
2 views

How can i convert python nested dictionary to json file?

I have a python nested dictionary in the following format data = { 'item1': { 'name': "A", 'price': 10 }, 'item2': { 'name': "...
0
votes
0answers
2 views

How to make Echarts areaStyle fill whole polar?

I'm working with line-polar eCharts on Angular, and I ran into a problem with areaStyle. I want it to fill the whole area from the line to the outer most circle with the yellow color, but eCharts left ...
0
votes
0answers
3 views

home/bitnami/apps apps folder not found on aws ligthsail

bitnami@ip-23-45-56-230:~$ ls bitnami_application_password bitnami_credentials htdocs stack bitnami@ip-23-45-56-230:~$ cd apps -bash: cd: apps: No such file or directory
0
votes
0answers
2 views

Game on a Strip :August lunchtime challenge

Tzuyu gave Nayeon a strip of N cells (numbered 1 through N) for her birthday. This strip is described by a sequence A1,A2,…,AN, where for each valid i, the i-th cell is blocked if Ai=1 or free if Ai=0....
0
votes
0answers
4 views

Addons in Docker Odoo 13.0 not recognized

I try to use latest (13.0) Docker image for local development and I'm using docker-compose.yml from docker documentation for spinning up containers: version: '2' services: web: image: odoo:13.0 ...
0
votes
0answers
5 views

Pressing the button from js without jquery and getelementby

Im fighting with auto logging script with js. Currently im pasting my username and password to the input fields. It seems like the site is blocking possibility to click LogIn button after I call ...
-1
votes
0answers
8 views

invalid parameter number number of bound variables does not match number of tokens

<?php require_once('../include/dbConnect.php'); /************************************* INSERT ********************************************/ if($_POST['action']=="Add") { $sql = &...
0
votes
0answers
4 views

How to write this simple Monad?

I try to write this: data A=A Int deriving Show instance Monad A where return x=Just x A x>>=f=f x main=print a where a=A 1 I learn it from the book 《Learn You a Haskell for Great Good》: ...
0
votes
0answers
7 views

white page after using context api in react. js with no error

i am facing this white screen error , when i use. this context API logic. and when i did't use this concept in my index.js then the code works properly, can someone explain me this issue, why i am ...
0
votes
0answers
5 views

how to get output of a wrong command with libssh

I have this function which can connect to a remote system via ssh: std::string _ErrMsg; int _RetVal = 0; MyException errMsg; int port = 22; try { if (...
0
votes
0answers
4 views

pip install django-allauth- Error: No module named 'allauth.socialaccountallauth' python django?

I'm trying to add social authentication to my login page . for that i have installed pip install django-allauth to my project. I have added required apps it to the INSTALLED_APP, added ...
0
votes
0answers
2 views

With konva, how to set the fillPatternImage to a rect?

With konva, how to set the fillPatternImage to a rect? My code as follows: function drawView(viewItem, parentRect, backgroundColor) { let xmlAttributes = saveXmlAttributes(viewItem); let viewXmlns = ...
-1
votes
0answers
21 views

could someone help me to understad this code logic , how it works?

var eatsPlants = true; var eatsAnimals = false; var category = eatsPlants ? (eatsAnimals ? "omnivore" : "herbivore") : (eatsAnimals ? "carnivore" : "undefined");...
0
votes
0answers
4 views

Segementation of Azure Subnet for appllications

We manage big environments inside Azure with multiple customers, we are redesigning it and in it we wanted to manage traffic within multiple common subnets like app, web and db subnets. So ...
0
votes
0answers
4 views

how to get the PR to do prebuild

we are using ALM, when the PR created, it will trigger prebuild pipline, in the pipline, we want to get the PR and apply it in the local workspace to do prebuild, how to get the PR in ALM?
1
vote
0answers
9 views

How to terminate execution

I have an ASP.NET Core API, which consumes Webhooks from Shopify. For example, if user places an Order in Shopify, I will receive an Webhook payload (a HTTP POST request) to endpoint myApi.com/shopify/...
0
votes
0answers
5 views

PHP SoapClient can't call external API

i trying to implement external SOAP API inside our project. Our inicialization of SoapClient in PHP 7.3 $serviceLocation tried both http://address.com/smsXMLWebService/SMSXMLWebService.svc and http://...
0
votes
0answers
4 views

Manual link react-native-fs in react native

im mac user and "react-native link react-native-fs" doesn’t work for me i want to know how to manually link this. its just matter for me to work in android please help me it’s urgent . ...
0
votes
0answers
3 views

Deep link to Smart Home Action

I would like to send users from my app directly to my Action in the Google Home app. Do any of you know if this is possible? The only thing I can find is a link to my Action in the Google Assistant ...
0
votes
0answers
8 views

I keep getting errors in running the npm start command on my react project

0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\Program Files\nodejs\node.exe', 1 verbose cli 'C:\Users\SingleOn3\AppData\Roaming\npm\node_modules\npm\bin\npm- cli.js', 1 ...
0
votes
0answers
12 views

My variables cannot have an assigned value with gcc? Windows 10

Here is my test program where g is equal to 0 when it should be equal to 10. I compile this program with the following line: gcc -c kernel.c There are no error. This code was launch by start function ...
0
votes
0answers
5 views

Why Google indexed our posts with the wrong dates?

Google indexed our posts with the wrong dates. For instance, one of our posts has this tag in sitemap <lastmod>2020-08-29T00:08+04:30</lastmod> However, on the Google search results page, ...
0
votes
0answers
4 views

Three.js Tweening issue

I have a problem for tweening my camera.position . I create a codepen with the minimum of code just to reproduce my issue and I annotate all my code. I also put a lot of console.log() for debugging ...
0
votes
0answers
10 views

Why I cannot use UITextField in Custom View in Custom keyboard ios

I am creating a custom keyboard in ios. I want to use UITextField inside my custom keyboard. But I found that i cannot use. The context of parent textField is lost. But When i made an experiment. The ...
0
votes
2answers
11 views

Give required field for show/hide textbox when selected from the dropdwon

I have to give the show/hide textbox required field.. When user selects Others from the dropdown textbox will be shown.. I have to give required field for that textbox.. Here is the code $("[name=...
0
votes
0answers
7 views

How to open new vb.form without previous data?

I have a form named "FormA.vb" In a gridview, On every form Load a Column is being added to the Gridview. I am calling Form.Dispose() method in a save function. It works fine. But when I ...
0
votes
0answers
8 views

Accessing Angular Project teamcity build number

There is an angular application developed by Angular 7. The CI/CD tool is TeamCity. What required is to display the application version with format Major.Minor.Path.BuildNumber. The major , minor, and ...
0
votes
0answers
5 views

Yocto NodeJS persistence

I have Node working ok and added the path variable to /etc/profile After boot I can see the path via env and also node -v shows it's version The issue is Node cannot be called by typing it in? Any ...
-1
votes
0answers
7 views

I have designed my website using elementor in wordpress. My footer widget is not displaying even after much try. What can be the solution?

You can visit the website for getting a clear view for what I need solution of. https://vastrawala.in
0
votes
0answers
6 views

Error in storing HTML content with image in a file in spring boot

Hello I want to store email templates HTML Coded with images in a file and I got an error that entity is too large, However, it works fine with tiny images but whenever I want to store big images it ...
0
votes
1answer
9 views

How to inject a single command into the powershell history?

If I have the following string defined in powershell ( or any other value for a valid command ) $foo = "Get-ChildItem -filter *.cmake" How could I inject that string ( without executing the ...
0
votes
0answers
7 views

Transfer Learning twice

I had a data set that was really small and so found another data set that was very similar and trained it on that one first but used pre-trained model (DEnsenet 121). After training this initial model ...
0
votes
0answers
8 views

List NodeMetrics with client-go

As we know,we can get node list by code: nodes, err := clientset.CoreV1().Nodes().List(metav1.ListOptions{}) ,the list option just like this: metav1.ListOptions{ FieldSelector: "spec....
0
votes
0answers
6 views

How to Adding trigger to update quantity of tblProduct whenever user order a list of products

I want to Adding a list of product into tblOrderDetails, after that trigger auto update quantity into tblProduct whenever user order a list of product My Database:enter image description here
0
votes
0answers
7 views

What is the life span of a browser cache

So I have a common files folder for a set of files. I have uploaded the files on a LCMS server. if I have changed a common file after a month will the change reflect on the browser after a month or i ...
1
vote
0answers
22 views

Why is bounding a class instance method different from bounding a class method?

I was reading the python docs and stumbled upon the following lines: It is also important to note that user-defined functions which are attributes of a class instance are not converted to bound ...
0
votes
0answers
14 views

i have this error in my laravel.log file. I don't know what is happening

SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /var/$ Stack trace:
0
votes
0answers
11 views

Couldn't convert object to integer [duplicate]

I tried to change type from object to int. Code: df['CODE'].astype(str).astype(int) Error: invalid literal for int() with base 10:''
0
votes
0answers
9 views

How to pass a certain LIST from one component to another component in REACT JS?

How to pass a certain LIST from one component to another component in REACT? This is the code, I could not pass the LIST to another components. I tried many ways but still couldn't pass the list. ...
0
votes
0answers
7 views

If-else statement error in Scheme using guile

Total newbie to Scheme here. I've been stuck on a scheme problem for sometime now. I don't understand how to code this right. I've looked every where on this site and others, and I just can't get this ...
-1
votes
0answers
16 views

Is there still a way to make this code more pythonic?

I am still a beginner in python though I came from java and now I am learning python and can somebody help me if it can be coded less? like more pythonic? # def main(): # Saves the pirate and ...
0
votes
1answer
12 views

How can I create Oracle SQL with specific Order by?

This is my initial data pattern I would to order data in Value column ascendingly but reserve its original groups like this
0
votes
0answers
7 views

Node alpine image compilation error with mongodb-client-encryption

I am using Docker with node:12.18.3-alpine image. I added mongodb-client-encryption to package.json but when i'm installing packages inside image it gives me error. Everything works on node:12.18.3 ...
0
votes
0answers
5 views

How to use CosineDecayRestarts in tf2.2

Here is my code def make_model(nh, lr_scheduler): z = L.Input((nh,), name="Patient") x = L.Dense(100, activation="relu", name="d1")(z) x = L.Dense(100, activation="...
0
votes
0answers
3 views

Converting-punycode-with-dash-character-to-unicode

This is in reference to this topic on the page here: Converting punycode with dash character to Unicode I do not know where to place the input to make the JS work. I am not much of a programmer. I ...
0
votes
1answer
5 views

Why does R2-value increase after feature-reduction with RFE?

For an exploratory semester project, I am trying to predict the outcome value of a quality control measurement using various measurements made during production. For the project I was testing ...
0
votes
0answers
3 views

Connection is not secure ecross all sites and multiple browsers

I'm having a realy weird problem regarding accessing sites. Whenever I try to access any site - such as facebook, stackoveflow etc with chrome/firefox I get "your connection is not secure" ...
1
vote
0answers
6 views

Spring boot with thymeleaf starter excludes javassist from other dependencies

I have 2 project, the 1st project is depending on javassist and 2nd project is dependint on the 1st and spring-boot-starter-thymeleaf. The build gradle is like below 1st project plugins { id 'org....
0
votes
0answers
4 views

Cannot create file with Jupyter Notebook running in Docker in Windows 10

I have installed Docker Toolbox for Windows v 18.09 in Windows 10 Version 10.0.19041 Build 19041 and am trying to run a docker container to run Jupiter Notebook with Pyspark. I am using Windows ...

15 30 50 per page
1
2 3 4 5
…
401310