Latest Questions

How can i persistently set the default values for control elements in ms access

I am using a Plugin for Version Control with gitlab. This Plugin exports a whole Database to Textfiles which can be commited to a git-repository. You can than b

Azure DevOps pipelines for cypress tests not running in the test environments(Dev, QA, Stage and prod) that I selected before clicking on run

I have different environments added in my cypress.env.json file like below { "environment":"staging", "prod":"http://production.com", "staging":"http:/

run both master & slaves as docker containers "Jobs"

I have Jenkins Master runnig on docker conatiner and Every time I need A slave to run my jobs a docker container spins up as a Jenkins slave and my script is e

Why is Composer installing an old version when it isn't specified?

When I do: composer require deployer/deployer I get the following output: Info from https://repo.packagist.org: #StandWithUkraine Using version ^4.3 for deploy

what is the best way in flutter to implement payments?

I have to implement an app and a web app with payments. I wanted to use Firebase functions, what do you think is the best way to do it? APay, GPay, PayPal, Stri

Memory leak in Spark Structured Streaming driver

I am using Spark 3.1.2 with hadoop 3.2.0 to run Spark Structured Streaming (SSS) aggregation job, running on Spark K8S. Theses job are reading files from S3 usi

.Net standard project docker COPY file not found visual studio

I have a .Net standard project called PrivateSales with a Dockerfile that looks like this #See https://aka.ms/containerfastmode to understand how Visual Stu

Is it possible to interact with PDF-VIEWER (Selenium or other tools)?

This issue has been driving me crazy lately, I've been looking all over the internet for days and just found unaswered questions. Is it possible in any way to i

Can't use Keras MeanIoU to train semantic segmentation model

I'm working on a binary semantic segmentation problem. I built an UNet model with MobileNetV2 backbone. Here is my model code: def upsample(filters, size, apply

How to pass template variadic arguments by reference in C++?

I want to get repeated inputs, therefore I made the function to get inputs with variety of types. template <typename InputType> void get_inputs(const std:

Get mySQL full text match score for strings not in the table (optimally in a mixed result set with matches from the table)?

This must be a niche scenario since I have not been able to find a similar question around and in my brief testing in my SQL workbench just using the string in

Get all rows from table and sort them by timestamp

I have these test tables which I would like to select and combine the result by timestamp: create table employees ( id bigint primary key,

How to create bar graph with table attached to it using plotly dash?

I want to create bar graph for different communication interfaces and for different build versions . Somewhat similar to this : In my case ,the table header wi

converting recurrent to bi recurrent

I want to convert this below RNN into bidirectional RNN, how can I do that? #Call the function and compile the model. model = RNN() model.summary() model.compil

For Wumpus World model, why is the probability of pits in squares assumed to be 0.2?

At the beginning of the probability derivation for a pit in square (1,3), it is stated that "there would be a 'prior' assumption for the placement of pits in th

In javascript react how to remove two symbols that end up together in a string but keep the last one like a calculator?

Basically I am doing a FreeCodeCamp project and I am stuck one of the last points on the checklist. What we have been told to do is to make a calculator that ha

Return filename with wildcard

sFile = Dir(sPath & sFile) Debug.Print sFile 2022.txt is returned if sFile (the active cell) contains 2022.txt; how can I return the same if sFile contains

[Firebase/InAppMessaging][I-IAM700002] Error happened during message fetching Error Domain=NSURLErrorDomain Code=403 "(null)"

I am working on an Angular + Cordova project. I am trying to use the cordova-plugin-firebasex plugin for push notifications functionalities. It is doing good fo

Uncaught Error Error: Cannot find module 'express' [closed]

im trying to make a discord bot using discord.js it works but whenever i try hosting it i get (Uncaught Error Error: Cannot find module 'expre

Actual meaning of 'shell=True' in subprocess

I am calling different processes with the subprocess module. However, I have a question. In the following codes: callProcess = subprocess.Popen(['ls', '-l'],

Cypress Connecting to postgres database issue

running into a issue using cypress-postgres connecting to the database. Server has multiple databases along with multiple schemas. Tried multiple plugins, but c

Not able write a jasmine test case for radiobutton, eventlistners and buttonclicks

Below is my code I want to do Jasmine test on it and I was wondering if I use beforEach and afterEach or may be spyOn() on it? I get test to pass if expect(func

Problem with CancelIoEx function on some platforms

I work with usb device and use async functions of usbdk driver for I/O operations. I have a problem with canceling of operations on some win platforms. Im using

Cron job: how to run a script that requires to open display?

I want to set up a cron job to run a python script, but it gives me this error: RuntimeError: could not open display This is because I import a module that

How to input on the keyboard currency numbers such as: 289.54 in visual basic. What function do I use?

I have written a budget program years ago, and have recently discovered that the fractional parts of the input are being rounded. For example an input of 289.54

How to manage values for a kivy Spinner widget in kv?

I'm trying to implement a feature that would change spinner values (dropdown items) depending on which button was previously pressed. But for some reason, any a

Creating Python Lambda@Edge to access a secret in Secrets Manager

I wrote a python lambda that does basic HTTP auth using a user name and password. I created a simple static website in S3 and the python auth lambda is to be i

Problem with getting testnet data from binance

I am trying to get trade data from the Binance API using the testnet server. The code I have written runs, however, I am trying to collect data for daily interv

Collect Flows in Service

So, I'm trying to collect data from flows in my Foreground service (LifecycleService) in onCreate(), but after the first callback, it is not giving new data. Th

How to run coverage for a Python project with src-layout?

My python project is structured in the so called src-layout. hyperorg ├── README.md ├── setup.cfg ├── setu