Latest Questions

Align children with first child in Column

How can I align my widget to take the same width as ClipRect image? Right now it overflows in my screen. Find attached how it is and how I desire my output woul

Why win32com doesnt show me all emails

I want to parse emails in python through the Outlook application. Running this code I get only a few of my emails. import win32com.client outlook = win32com.cli

Array as argument and using the array in the new function in javascript

var filterKeys = ["hello this is javascript", "Movies"]; var title= "Hello" searchKeyInNo = keySearch(filterKeys, title) function KeySearch(filteredArray, sear

RStudioapi AND RMarkdown not working together

The following code runs nicely in the console or from an .r-file: library(rstudioapi) thisisthepathvariable <- rstudioapi::selectDirectory(caption = "Select

Creating default object from empty value in Laravel 8

For some reason, I still get a warning message: Creating default object from empty value. Product controller public function update(Request $request, $id) {

uninstalling LINUX on same drive of current OS

last year I had to install Linux on my laptop, however, due to some issues I couldn't install it on other drives and it was forcing me to install it on the c dr

Best way to work with a small db in swift ios app from a performance point of view?

I'm using an sqlite db to populate an ios app with data about irregular verbs -- it's a language learning app. The db has 3 tables, verb categories, verbs, and

Why doesn't python3's print statement flush output when end keyword is specified?

from sys import argv, stdout as cout from time import sleep as sl print("Rewinding.......",end = '') # If end is given output isn't flushed. But why? cout.flush

My SQL Store procedure print dynamic QUERY

I am very to the new MYSQL and creating a store procedure using dynamic query which is containing the steps as CREATE TEMPORARY TABLE(THE NAME OF THE TEMPORARY

flutter app - trending posts by using google analytics data api

In my app, users create posts and I'd like to show trending posts by the number of views, comments, etc in a specific date range. To do that I thought I can cre

UINavigationBar overlaps with status bar after presented VC with prefersStatusBarHidden as true

Presenting a VC(1) on Root VC(0) with prefersStatusBarHidden as true. After that dismissing the presented vc(1) and pushing another vc on root vc(2) with prefer

(MUI v5) (Nested Modal) Both parent and child modal die at the same time

I have simulate my issue in codesandbox: https://codesandbox.io/s/trusting-babbage-ovj2we?file=/src/App.js I have create a nested modal, when the parent modal i

visual studio with c# SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:8080 error

I am getting this issue: No connection could be made because the target machine actively refused it 127.0.0.1:8080.I use Sikuli4net library but scrn.click dont

Can I use Health Kit in my app if my app is not published on app store

I have an application that is not published on Apple App Store but it can be installed via a URL. Now I want to integrate Apple Health Kit into this app. Are th

Using numpy.where function with multiple conditions but getting valueError

So I have a dataframe with multiple columns with numbers in them. It looks like this: H C T P R 300 200 500 0.3 500 400 300 0.2 I'm trying to perform operat

Shopify GraphQL: How to know when there is not available product variant image

I need to know with my GraphQL query request when one of the product variants doesn't have the relative image. I have tried to figure it out how to do that but

How to transfare owner ship of disk folder to non domain account?

I would like to transfer a folder owner permission to a non domain account. But there is an issue which doesn't allow me to do it for non-owned accounts. How c

Return json response in ajax request laravel

I have the following ajax code in my frontend. var formData = $('#application-information-step-one').serialize(); var actionUrl = $('#application-informatio

Session Cookie (Authentication Related) Does Not Contain The "HTTPOnly" Attribute

Can someone help me in resolving Qualy's issue? After Qualys scan, there is an issue that says to add the HTTP Only flag. I have set the HTTP Only flag in web.c

How to Scrape Discord members using Python?

I am trying to scrape members of a Discord server. This is code I am using. But I am running into KeyError: 'guilds'. Can anyone please help me with this? impor

MongoDB/Mongoose Aggregate Data Duplicates, problem with displaying automatically created ID

I have a Customer DB and I want to aggregate through my data and display all the duplicates on frontend, I'm checking my get request with Insomnia and I get al

how to crate navigation menu for blogger via page list widget

i'm creating blogger template and in that i have a side navigation menu. everything is perfect in navbar. You can check it Here so, its a very simple navigation

SQL CROSS JOIN with WHERE CLAUSE not returning anything

I am trying to get a result for the query: SELECT product, exportcountry FROM is_exported_to CROSS JOIN is_produced_in WHERE product = cheese AND origin = 'Fran

C# - Calculating HMAC from using params list, json body and a secretkey?

How do I do this? I'm lost. The header parameters: new KeyValuePair<string, string>("checkout-account", MerchantId), new KeyValuePair<string, string>

3d model looks inside out or distorted outside and perfect inside (VULKAN)

Any 3d model loaded into my vulkan code is perfect inside and wrong outside.How can I make outer surface look like inner surface? It is like the same in 3d mode

Why does using 'Optional<>' give me the next error'Failed to convert from Optional to Mono?

I am doing a functionality that allows you to save users, but before that it does a validation to validate if the nick exists in the database, when I run I get

Error: "Module build failed (from ./node_modules/happypack/loader.js):"

This is the theme I am using for a dashboard project (I am under serious timeline pressure). https://themeforest.net/item/enlite-prime-reactjs-fullstack-website

How can I write an adapter for my React Final Form component with Typescript?

I need to write an adapter for a component, to which I need to pass certain props. For example, I have a component which can receive certain props as "disabled"

How to display existing annotations in dcc.Graph

I'm working on a tool that loads some of my precomputed annotations in the form of bboxes = [ ((x0, y0), (x1, y1)), # annot 1 ... # more

How can I avoid control character interpretation in Javascript template string interpolation?

I have a string variable containing a control character (newline). I want to output that variable but with the control character as its literal representation a