Latest Questions

I called Paypal subscription API which returns success message but don't see any active subscription in the Paypal dashboard

I am trying to create Paypal subscription through its Rest API using live client and secret. The API returns success message. The GET subscription API returns t

Convert getdate to format 22nd APR, 2022

Can anyone please help me with this, How can I convert getdate() to format 22nd APR, 2022, 21st APR, 2022, 23rd APR,2022, 24th APR, 2022, nd or th or rd is impo

Java -> operator

I know that -> is used for lambda expressions with the syntax ()->{}. But I saw this code: file -> file.isFile() - with no () and {}. What does it do?

Emacs Org-mode: org-agenda-custom-commands and hiding future scheduled tasks

I have set my org-agenda-custom-commands to (among others) this: (setq org-agenda-custom-commands `( ("x" "Scheduled tasks with Prio"

More descriptive error messages for Django Serializers?

I am deserializing JSON data from file to a model object. I'm using a Django Rest Framework serializer. The JSON is quite large and I expected some fields that

Google Drive API to identify the changes in files

I have a list of files and folder stored on a google drive folder. My objective is to identify any changes (modify/create/delete) related to any file/folder wit

ASP.Net MVC returning 404 for generated JS

ASP.Net MVC project is not able to serve js in wwwroot/js folder (generated by webpack). I'm getting a 404 when page is trying to access js/app.js. The csproj h

Send register name to mapped command

I made this command to send my current buffer's file path into the + register: :nmap <Leader>yp :let @+=expand("%:p")<cr> I'd like to extend it so

Filter between dates in MongoEngine

I have a problem filtering between date_from and date_to in MongoEngine. This is the document structure and the next MongoEngine query: def devices_graph(device

Customize the default error on vuetify's v-data-table : "no matching records found"

How can I change the warning message "no matching records found" by a customized one? For example: I want to change this by my own customisation Shown in the do

Does Rust narrow lifetimes to satisfy constraints defined on them?

Please consider this example (playground): struct Container<'short, 'long: 'short, T: 'long> { short_prop: &'short u8, long_prop: &'long T

How to use drop down to lock and unlock cells according to values selected and still matain drop downs in the unlocked cell

Google Sheets I have a sheet with two cells (B2 and B3) and I added drop downs to the cells, Cell B2 has Yes and No as its values(drop downs) and B3 has Yes and

How can i filter parents that has at least one active child on parent child relationship model

I have "Category" model which has multiple parent/child relationship. class Category(models.Model): pass class CategoryParent(models.Model): parent_cat

Do I need two different queue submissions here?

I have once command buffer 1, and command buffer 2. Both have had their recordings finished, and now I want to submit both of them, preferably in an efficient w

Dart preview Flutter UI guides is not present in vscode?

I can't find the dart preview flutter UI Guides... I have installed flutter and dart extensions in vscode... Can anyone help?? my Flutter version 2.10.4 and Dar

Delay STATE change in React

I'm writing a website. It's a website that uses and fetches data from a stock API to displays stock prices and charts. I have a search bar which changes state w

How to use async calls in WPF event handlers

I have this event handler in WPF with async call. private void Button_Click(object sender, RoutedEventArgs e) { var folderStructure = restApiProvider.GetFol

ASP.NET Core MVC & C# - redirect to same view ( action ) when changing language using culture

I have localization in my project. What I want is to whenever a user changes language it redirects him to the same page he was in. But now I always redirect him

Using Brackets in MathJax - Tree Question

I have used LaTeX using different packages to make trees, e.g. using the format below. Is there a way to get a tree to run using MathJax using the code below? I

Week number calculation in Power BI

I am new to Power BI.I have one year filter (Range filter) and one week number filter (Range filter). I want to calculate values such that when i select year 20

Platformio compilation error in bison file

I'm using bison with flex combined with Arduino framework in Platformio. Compiling .y and .l files goes without a problem, but when I'm trying to make a Build i

Why is it not dividing correctly [closed]

Why is this code not dividing correctly? This code is supposed to find the sum of all the numbers that can mod b(from 1 to a), and the numbers

Problem with adding image on map with leaflet-distortableimage to the correct coordinates using corners

Maybe someone faced a similar problem. When such a code is executed, the image added to the map is displayed not in the coordinates specified in the corners, bu

Expected type 'object'. Found 'string|false'.intelephense(1006) on json_encode()

Please find my code sample below where I take the POST input data and convert into JSON after which I check if the data has the required info or not. I'm using

setInterval freezes react app after some time (couple days)

I have a react app (nextjs) and show a QR code that refreshes itself every 5 seconds and a clock which updates every 1 second. Further, I have added service-wor

How do I find the difference in hours between two time zones?

I have this code here that can find the time in two different timezones at the moment. I want to calculate the difference in hours, between the two timezones. d

Sympy: Differential Geometry - Christoffelsymbols (&Riemann Metric)

I am a little bit puzzled. I wanted to check the christoffelsymbol calculation and Riemann Tensor calculation by using the Schwarzschildmetric. But I do not get

How to convert a stream to another type without using map?

I've this code: Stream<int> get fooStream async* { barStream.listen((_) async* { int baz = await getBaz(); yield baz; // Does not work });

check weather the user readed data or not in flutter using firestore

I was developing the chat app in flutter using firestore, the users successfully chat one-to-one. but I also want to send the notification to the user that some

How can I access each element in an array and use it for filtering data

I am trying to get an array in my req.query and want to use the elements in that array for filtering of data but unable to do so. As you can see in the below co