Latest Questions

Can't click on stack trace links in Android Studio anymore

After a recent update for Flutter I found that in Android Studio the package links in stack traces are no longer clickable. This is not the case with Visual Stu

how to change gradle version in nativescript

I'm confused as how to change a specific configuration somewhere to determine the version of my gradle, in a nativescript project. My workspace is created with

How to call Phtml file in Email template

I am trying to call p html file in email template for low stock notification to admin. Can you please suggest any plugin or code. Thanks

How to localize pdf with flutter_localizations

I'm using dart pdf to generate PDF files. It works, but now I want to provided the pdf based on the user language. Within the other parts of the app I use flutt

How to order a query by translated attribute of associated model in Rails using Mobility gem

I've two associated models: class Food < ApplicationRecord extend Mobility belongs_to :food_set, inverse_of: :foods translates :name, type: :string,

Are indexes built CONCURRENTLY different in any way?

Does PostgreSQL CREATE INDEX CONCURRENTLY mean that even after initial index build, new and future inserts won't be indexed immediately (strongly consistent in

I am getting error around <?xml version="1.0" encoding="UTF-8"?> line

I'm new to java and learning spring-mvc framework. I'm Writing simple program to for login page . I'm getting error around line.

Google Tag Manager- is there a way to track when a checkbox is selected and then the user hits the Checkout button on that same page?

Sorry if this is a dumb question. I'm a GTM noob and from googling I see tutorials on tracking the clicks (checkbox element and Checkout button) separately but

Openapi Generator. How to generate method with HttpServletResponse as parameter?

everyone. I use strategy "Design first". I describe specification. One of the methods accepts HttpServletResponse as paramether. But i don't know ho to describe

Client XYZ is configured for secret but secret was not received

I'm using AWS PHP SDK and I'm getting this error when trying to signup a new user: Error executing "SignUp" on "https://cognito-idp.eu-central-1.amazonaws.com";

John Martin Introduction to Languages and the Theory of Computation book

Show that if L ⊆ Σ* and L is infinite and recursively enumerable, then L has an infinite subset that is not recursively enumerable and an infinite su

MIPS Assembly - how to calculate the square of n recursively

I want to write a program that calculates the square of n using recursion based on the equation n^2 = (n - 1)^2 + 2(n - 1) + 1 But I don't know how to write th

Passing ReactiveSecurityContext into GraphQL - How to enable Spring @PreAuthorize annotation for Reactive Resolvers

After I migrated to Reactive GraphQL, Spring ReactiveSecurityContext is not accessible in GraphQL. The question here is, how I can use Spring @PreAuthorize anno

Why isn't the size increase animating with ngShow (angularjs)?

I have this dropdown that I want the height to be animated. I'm using max-height to achieve this and it kinda works, but when it expands it won't do the transit

Why I cannot authenticate an app in Azure

I am trying to authenticate app in azure, but getting the following error, Response status code does not indicate success: 401 (Unauthorized). Authentication

How to Get Subcollection docs in Firestore Collection Group Query Flutter

I have a collection and Subcollection, I want to get the data of subcollection along with main collection data. I am using collectionGroup query, but don't know

How can I disable debian python path/recursion limit

So, as of late, I've been having path length limit and recursion limit issues, so I really need to know how to disable these. I can't even install modules like

Apache POI incorrectly printing cell that is auto formatted to time

I am trying to print out a cell from an encrypted Excel workbook. The cell contains a time and when i try to print cell.getNumericCellValue(), the result is a r

Having State names as names instead of numbers Python

I'm trying to have an if statement condition based on state value being equal to a certain value (0,1,2,3 etc.) Is there away to have the condition be with name

anyone know what ppMediaTypeMixed and ppMediaTypeOther refer to?

long time user of the forum but first time I'm actually asking something so please let me know if I'm doing something wrong. So I'm writing a Powerpoint Macro t

How to prevent onDismiss Callback to be call, in custom AlertDialog with Jetpack Compose

I was developing an app which I use Jetpack compose to define the UI. I was implementing some localdatabase such as Room, and I try to implement the remove oper

Replacing first occurrence line after first matched line

Let's assume the following XML file: some text <addresses> <something/> </addresses> some more text <addresses xm

Test a decorated function in Python

I have a Python function which is decorated. @retry_if_access_token_expired(app_id) def add_something( self, *, argument1,

How can I get Toast-UI editor content?

I am a student studying. I think I'm doing it conceptually wrong. I'm trying to use vue3 and type script and I'm going to use Toast-UI editor. I get an error. r

Does having a less popular TLD affect website performance?

I was watching a video about how DNS is resolved and understood the following. There are 13 root servers that tell you where the resolvers are for your TLD. The

Can I use different namespace as variable depending on the configuration?

For example, I have two namespaces, provided by other dlls. and cannot be modified. namespace A_Build { public class D {} public class E {} } namespace A

why does the ObjectOutputStream throw the invalid stream header 000000 error?

the method receives a stream of bytes and returns an object of type Data. Everything works fine without threads. But when using threads, the method causes the i

how can I use a function as an argument to another function,

I am trying to write a simple code that displays 3 sets of greetings in accordance to what day of the week a user inputs. I am learning about functions as I am

SQL Update query via VBA using ODBC connection

I have an ODBC connection to a database set up in Control Panel using a DSN. I can use this to see data from tables and Views in Excel. What I need to be able t

What is the equivalent of this php code in Nodejs?

I have this php code to encrypt and decrypt with RSA, I use only the encrypt data, because I need to decrypt the data with Node.js <?php include 'vendor/auto