79259758

Date: 2024-12-07 01:05:28
Score: 2
Natty:
Report link

@ItsKornBailey I mean there's several valid reasons why a human user would need longer than 12 hours for their AWS SSO session.

Suppose you're executing a function in your SageMaker notebook that's pulling data from a large corpus on you S3 bucket. It's certainly reasonable to expect that function to take 12+ hours to complete, and you don't want your AWS access to severed as soon as that 12 hour session expires.

So I think the 12 hour max session duration is very myopic on AWS's part.

Reasons:
  • No code block (0.5):
  • User mentioned (1): @ItsKornBailey
  • Low reputation (0.5):
Posted by: JohnnyUtah

79259756

Date: 2024-12-07 01:02:27
Score: 0.5
Natty:
Report link

You can definitely outsource your UI/UX work while keeping your code secure. Here’s a straightforward process:

Export Mockups: Use tools like Figma, Sketch, or Adobe XD to create rough wireframes or mockups. If you're starting from your Angular app, you can also take screenshots of the views you want to improve and annotate them with your design ideas.

Component Library: Since you're using Angular Material, you can provide a reference to the Material Design guidelines or your specific theme settings. This helps the designer align their work with your existing design system.

Jira Collaboration: Assign tasks via Jira and attach the mockups/screenshots to the tickets. Be detailed in your requirements and tag related tickets for context.

Code Access Control: If the designer needs interactive elements, consider hosting a staging version of your app or providing dummy data files so they can test their designs. No need to grant access to Bitbucket if it’s unnecessary.

For additional guidance or professional design input, you might want to check out resources like Konversiju Optimizavimas, where they specialize in improving UX for better conversions.

Let me know if you’d like more tips on managing outsourced UI/UX work!

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Faisal_seo

79259747

Date: 2024-12-07 00:52:25
Score: 3
Natty:
Report link

What fixed it for me was adding your maxmind account-id to either .env or package.json file, as suggested in https://github.com/runk/node-geolite2#readme. The license-key only flow must have been depreciated recently.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What fix
  • Low reputation (0.5):
Posted by: Samuel Anozie

79259735

Date: 2024-12-07 00:37:22
Score: 1.5
Natty:
Report link

Both packages have MIT license now, but the geolocator still seems more actively developed. I've also had difficulties with the location package with determining whether the user has selected approximate or precise location.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Hyperion

79259730

Date: 2024-12-07 00:33:21
Score: 0.5
Natty:
Report link

I have achieved converting PPT to PDF using the Spire.Presentation package. See https://www.e-iceblue.com/Introduce/presentation-for-python.html

You have to pay for it: around $600 for a perpetual license. It relies on some DLL. Spire unfortunately does not work perfectly either. It left out the text box in one slide. Very strange.

I have tried using LibreOffice before, but it had a problem with EMF images.

Powerpoint automation as described in the other answers seems to work, but requires a Desktop session running; ie you cannot run it inside a scheduled task.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Martin Stein

79259720

Date: 2024-12-07 00:23:18
Score: 4
Natty:
Report link

To make the subscription, your account must be a tenant other than 'Personal'.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Lucca Toledo

79259718

Date: 2024-12-07 00:19:17
Score: 2
Natty:
Report link

So I was able to access the image in a browser using this url: https://s3.amazonaws.com/my-bucket/image.png On the image property page it shows this url, which doesn't work: https://my-bucket.s3.us-east-1.amazonaws.com/image.png

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Primico

79259709

Date: 2024-12-07 00:15:16
Score: 1
Natty:
Report link

syntax=docker/dockerfile:1.4

FROM --platform=${BUILDPLATFORM} golang:1.22 AS builder

Set up working directory

WORKDIR /workspace

Arguments for cross-platform build

ARG TARGETPLATFORM ARG TARGETOS ARG TARGETARCH

Display build platform and target platform for debugging

RUN echo "Building for $TARGETPLATFORM ($TARGETOS/$TARGETARCH)"

Copy source files

COPY . .

Build the application

RUN make build

Final image stage

FROM --platform=${TARGETPLATFORM} debian:bullseye-slim WORKDIR /app

Copy the built binary from the builder stage

COPY --from=builder /workspace/ /app/

Specify entrypoint or CMD (replace with your binary name)

ENTRYPOINT ["./"]

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammed Salama

79259705

Date: 2024-12-07 00:13:15
Score: 0.5
Natty:
Report link

I just added a class of solid-background and it worked

class="toast solid-background"
Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: John Coote

79259696

Date: 2024-12-07 00:08:14
Score: 3
Natty:
Report link

what is this one animation for? if it's updating local position and another script is meant to move that same transform, it won't move. you've said it's not playing the animation, which tbh I wouldn't know for sure but if you've got an animation moving your characters highest (in the hierarchy) transform, it's probably just bad in general and probably causing the problem.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what is this one
  • Low reputation (1):
Posted by: Skindin

79259685

Date: 2024-12-07 00:01:13
Score: 1
Natty:
Report link

this is probably because seleniuv-webdriver changed their internal name from 'alertBehavior' to 'unhandledPromptBehavior'

you should instead create Capabilities object directly, then call setAlertBehavior(), or if constructing a config object, use the import Capability.UNHANDLED_PROMPT_BEHAVIOR as the key (from selenium-webdriver/lib/capabilities)

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Trung Nguyen

79259678

Date: 2024-12-06 23:53:11
Score: 2
Natty:
Report link
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Om Patel

79259668

Date: 2024-12-06 23:45:10
Score: 2.5
Natty:
Report link

Worked for me .NET 6: Thanks Stokely!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Whitelisted phrase (-1): Worked for me
  • Low length (2):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mike g

79259661

Date: 2024-12-06 23:42:09
Score: 2
Natty:
Report link

It is certainly possible to deserialize a list using Jackson.

But you will need to implement your own deserializer for org.springframework.core.io.Resource. This could be a binary stream (your OpenAPI spec even says this), so how do you propose representing this in JSON? Perhaps Base64 encoded?

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: AndrewL

79259652

Date: 2024-12-06 23:39:07
Score: 4
Natty: 4.5
Report link

Do you figure out what went wrong? I'm running into the same issues.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: lucy mckenzie

79259651

Date: 2024-12-06 23:38:07
Score: 3
Natty:
Report link

docker buildx version

sudo apt-get update sudo apt-get install -y qemu qemu-user-static

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammed Salama

79259649

Date: 2024-12-06 23:38:07
Score: 1.5
Natty:
Report link

Old question, but there are ways to do this, e.g. by inspecting frames like LightningCLI does https://github.com/Lightning-AI/pytorch-lightning/blob/be608fa355b835b9b0727df2f5476f0a1d90bc59/src/lightning/pytorch/utilities/parsing.py#L176

However, the ways above are definitely simpler and more robust.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: gebbissimo

79259639

Date: 2024-12-06 23:30:05
Score: 3
Natty:
Report link

Michael Petch solved my problem. It required changing EXTERN MyProcedure: PROC Into MyProcedure PROTO.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Joanna

79259628

Date: 2024-12-06 23:24:04
Score: 2.5
Natty:
Report link

Workaround for me: __NV_PRIME_RENDER_OFFLOAD=1 ./mat/MemoryAnalyzer

See this: Eclipse IDE Javadoc Hover Tooltip Empty

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MhagnumDw

79259604

Date: 2024-12-06 23:10:01
Score: 1.5
Natty:
Report link

As of this writing (2024), using the Jobs 2.1 API to configure a job allows you to specify the following task-level attributes:

Note that condition_tasks do not support retries.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: cowbert

79259594

Date: 2024-12-06 23:04:00
Score: 1
Natty:
Report link

Send a request to:

https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=<TOKEN>

The server returns HTTP 200 if token is valid and 400 if not. If it's valid the response also contains details about the user.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nur L

79259589

Date: 2024-12-06 23:01:59
Score: 4
Natty: 4
Report link

@Sølve using port in webServer config solved the timeout issue, but now

 await page.goto("http://localhost:3000");

is not working , how do you reference your base url in your tests

Reasons:
  • Blacklisted phrase (1): how do you
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Sølve
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: user3613512

79259586

Date: 2024-12-06 23:00:58
Score: 2
Natty:
Report link

Suppose your need one method to debug the issue, right? Please add "set -x" in the script to debug the issue. man bash: set -x: After expanding each simple command, for command, case command, select command, or arithmetic for command, display the expanded value of PS4, followed by the command and its expanded arguments or associated word list.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: mzhan017

79259582

Date: 2024-12-06 22:58:58
Score: 0.5
Natty:
Report link

Shorter formulas:

enter image description here

[E2]=LET(a,A2:A16,b,B2:B16,f,FILTER(b,a=H1),FILTER(B2:C16,(a=E1)*XLOOKUP(b,f,ISNA(f),TRUE)))
[H2]=LET(a,A2:A16,b,B2:B16,f,FILTER(b,a=E1),FILTER(B2:C16,(a=H1)*XLOOKUP(b,f,ISNA(f),TRUE)))
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Has no white space (0.5):
  • High reputation (-1):
Posted by: rotabor

79259579

Date: 2024-12-06 22:57:57
Score: 2
Natty:
Report link

In Visual Studio 2022, it validates the host.json schema against same in https://json.schemastore.org/host.json which shows the node as invalid. I added the ExtensionBundle node to the host.hson, but has no effect on validation. Going to live with the Invalid node squiggles.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user2085688

79259572

Date: 2024-12-06 22:53:57
Score: 1
Natty:
Report link

To avoid the overlapping, per SwiperJS Docs for Fade Effect, you want to use the prop of fadeEffect and set the value of crossFade to true to achieve what you want so your slides do not overlap.

import { Swiper } from 'swiper/react';

<Swiper
  effect={`fade`}
  fadeEffect={{ crossFade: true }} // this
  ...
/>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: BadCodes

79259569

Date: 2024-12-06 22:50:56
Score: 3.5
Natty:
Report link

This doesn't work ADF is still requiring me to put something in the request body.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jason z

79259565

Date: 2024-12-06 22:48:55
Score: 1
Natty:
Report link

iOS 17+

TextField("Password", text: $passwordText)
.onChange(of: passwordText, {
     passwordText = String(passwordText.prefix(8))
})
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: awex

79259555

Date: 2024-12-06 22:41:54
Score: 1.5
Natty:
Report link

I just Solved mine with the "unresolved plugin: 'org.apache.maven.plugins:maven-compiler-plugin:3.9.9'

What you have to do is go the the .m2 file then rename the repository as "old repo" or you can delete it then go to the intelliJ then reload all maven project which it recreates the "repository" file to the .m2 and the IDE will automatically download the plugins! so hopefully this will resolve your issue!

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Allynn

79259553

Date: 2024-12-06 22:39:53
Score: 1.5
Natty:
Report link

convert numpy .void to dictionary: The numpy.void data is transformed into a dictionary for compatibility with pickle.

serialize to file: The converted dictionary is serialized using pickle and saved to a file.

Deserialize from file The dictionary is read back from the file and restored into pythonnative format.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mihirkumar Thakkar

79259550

Date: 2024-12-06 22:39:53
Score: 1
Natty:
Report link

It's 14 years later, and multi-core processors are no longer rare by any means. I was here looking for an updated version or improved gzip that would use multiple cores for compressing a single file, but will mention for others that zstd -T0 -19 filename will do exactly this, "intelligently" using the maximum cores available to do the task. I realize this is not gzip, but then again neither is pigz, so I feel justified in suggesting a solution that is not gzip.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: W Quayle

79259538

Date: 2024-12-06 22:28:50
Score: 5.5
Natty: 4.5
Report link

Have you resolve this problem ? I encountered the same one.

Reasons:
  • RegEx Blacklisted phrase (1.5): resolve this problem ?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bartosz Podemski

79259536

Date: 2024-12-06 22:27:50
Score: 2
Natty:
Report link

Of course as soon as I post I find my own answer. I thought a Boolean object was the implied conversion to check for a null. Switching from boolean to Boolean as the variable type in my UpdateStoreDto fixed the issue.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sael Torres-Diaz

79259529

Date: 2024-12-06 22:23:49
Score: 0.5
Natty:
Report link

I have found an acceptable solution (after days of error).

I think the question refers to something similar to the pro version of mui Infinite loading

However I have found a way to do it with the community version.

Version of data grid used: “@mui/x-data-grid”: “^7.22.2”

I have created a custom hook to do the same functionality

// useTableScrollInfinitie.tsx
import { useGridApiRef } from "@mui/x-data-grid";
import { useEffect, useRef } from "react";

interface IProps {
  isLoading: boolean;
  onNextPage: () => void;
  threshold?: number;
}

export const useTableScrollInfinitie = ({ onNextPage, isLoading, threshold = 0 }: IProps) => {
  const gridApiRef = useGridApiRef();
  const scrollMonitor = useRef<Function | null>(null);

  useEffect(() => {
    if (gridApiRef.current?.instanceId) {
      // Obtenemos el elementScroll
      const elementScroll =
        gridApiRef.current.rootElementRef.current?.children[0].children[1];

      // Suscripción al evento scrollPositionChange si no está cargando datos
      if (!isLoading && elementScroll) {
        scrollMonitor.current = gridApiRef.current.subscribeEvent(
          "scrollPositionChange",
          (event) => {
            const maxScrollTop =
              elementScroll.scrollHeight - elementScroll.clientHeight;
            const scrollThreshold = maxScrollTop * (1 - threshold / 100);

            if (event.top >= scrollThreshold) {
              onNextPage();
            }
          }
        );
      }
    }

    // Cleanup al desmontar el componente o cambiar dependencias
    return () => {
      if (scrollMonitor.current) {
        scrollMonitor.current();
      }
    };
  }, [gridApiRef, isLoading]);

  return { gridApiRef };
};

Using it is really simple

 const { gridApiRef } = useTableScrollInfinitie({
    isLoading: isFetching, // api rest fetching
    threshold: 0, // fetch data when scroll to bottom
    onNextPage: () => {
      // fetch more data
    },
  });

and “gridApiRef” we will pass it as props to

  <DataGrid
        apiRef={gridApiRef}
       ...
      />

Here is a little demo

Demo infinite-loading

Reasons:
  • Blacklisted phrase (1): está
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fabjiro

79259517

Date: 2024-12-06 22:18:48
Score: 0.5
Natty:
Report link

I solved it. If QT6_MSVC points to <path to qt>/Qt/6.8.1/msvc2022_64 and then you add target_include_directories(ChessCMake PRIVATE ${Qt6_DIR}/include) to CMakeLists.txt, it works

Reasons:
  • Whitelisted phrase (-2): I solved
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Paul

79259514

Date: 2024-12-06 22:17:48
Score: 2
Natty:
Report link

To whomever crosses this path,

after some investigation my mistake was actually not in the shader at all, I loaded an LDR (Low dynamic range) texture as the skybox, which created a blend irradiance map (light has less variance -> less variance in the generated texture), so the fix was to to add proper HDR support and load an HDR texture as the skybox.

results (still not perfect as the AO looks a bit wierd but certainly more "metallic" looking which was what I thought lack): result

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: stav12212

79259512

Date: 2024-12-06 22:17:48
Score: 0.5
Natty:
Report link

TLDR

Add the following property to your application property file if you need slo buckets

management.metrics.distribution.slo.spring.cloud.gateway.requests=50ms,100ms,200ms,300ms,400ms,500ms

If you need percentiles add

management.metrics.distribution.percentiles.spring.cloud.gateway.requests=0.95,0.99

Also make sure you enabled spring.cloud.gateway.metrics.enabled and spring.cloud.gateway.metrics.tags.path.enabled.

Also this solution can be used with every Timer or DistributionSummary metric that you have, you just need to change id-prefix to your metric id.

management.metrics.distribution.slo.{id-prefix}={your desired slo values}

Explanation

Metrics for Spring Cloud Gateway are registered through the GatewayMetricsFilter class. As you can see this is a simple class that does nothing more than create a Timer which is then passed to the MeterRegistry.

The magic is in the MeterRegistry and MeterFilter. As soon as you create a metric via meterRegistry, it goes through a chain of implementations of the MeterFilter interface.

if (config != null) {
    for (MeterFilter filter : filters) {
        DistributionStatisticConfig filteredConfig = filter.configure(mappedId, config);
        if (filteredConfig != null) {
            config = filteredConfig;
        }
    }
}

Their task is to filter and configure metrics that fall into them. If you want to know how they are arranged, you can read the article.

We are interested in PropertiesMeterFilter, which is created at the stage of application autoconfiguration. Thanks to it we can configure all our metrics through the applicaiton.property file. We are interested in how it configures DistributionStatisticConfig:

@Override
public DistributionStatisticConfig configure(Meter.Id id, DistributionStatisticConfig config) {
    Distribution distribution = this.properties.getDistribution();
    return DistributionStatisticConfig.builder()
        .percentilesHistogram(lookupWithFallbackToAll(distribution.getPercentilesHistogram(), id, null))
        .percentiles(lookupWithFallbackToAll(distribution.getPercentiles(), id, null))
        .serviceLevelObjectives(
                convertServiceLevelObjectives(id.getType(), lookup(distribution.getSlo(), id, null)))
        .minimumExpectedValue(
                convertMeterValue(id.getType(), lookup(distribution.getMinimumExpectedValue(), id, null)))
        .maximumExpectedValue(
                convertMeterValue(id.getType(), lookup(distribution.getMaximumExpectedValue(), id, null)))
        .expiry(lookupWithFallbackToAll(distribution.getExpiry(), id, null))
        .bufferLength(lookupWithFallbackToAll(distribution.getBufferLength(), id, null))
        .build()
        .merge(config);
}

As we can see it does a lookup on all the slo values you specified in applicaiton.property:

lookup(distribution.getSlo(), id, null))

And if the id of the metrics match then it publishes your bucket list.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: kairoslav

79259495

Date: 2024-12-06 22:08:45
Score: 1
Natty:
Report link

Put the alignment declaration after the class keyword and before the class's name:

template<typename xyz>
class __declspec(align(16)) myclass
{
...
};
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Martin Connell

79259482

Date: 2024-12-06 22:00:43
Score: 1
Natty:
Report link

Had the same issue on Android Studio Ladybug (2024.2.1 Patch 2).

Adding implementation(platform("com.google.firebase:firebase-bom:33.7.0")) did the trick.

To clarify, simply adding the following dependencies to build.gradle(:app) was not enough:

implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-config'
implementation 'com.google.firebase:firebase-abt'

Invalidating the caches and restarting did not work either

Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MrSALSA

79259481

Date: 2024-12-06 22:00:43
Score: 5
Natty:
Report link

I am having the exact same problem. Here is a simple example of what is getting 503 error:

import pandas as pd
from google.cloud import bigquery

# Sample DataFrame
x = [1, 2, 3, 4, 5]
y = [123, 345, 456, 678, 234]
df = pd.DataFrame({'x': x, 'y': y})

# Construct a BigQuery client
client = bigquery.Client()

# Define table reference
table_ref = client.dataset("TESTING").table("TEST")

# Load data into BigQuery
job = client.load_table_from_dataframe(df, table_ref)
job.result()  # Wait for the job to complete

If you have found the solution to this, please share with me.

Reasons:
  • RegEx Blacklisted phrase (2.5): please share
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am having the exact same problem
  • Low reputation (1):
Posted by: therealchriswoodward

79259474

Date: 2024-12-06 21:56:42
Score: 0.5
Natty:
Report link

While the input is not directly defined for DotNetCoreCLI@2

You can add:

--property:WarningAsError=true

to your list of arguments.

I found the list of valid properties for arguments here:

MS Build command-line reference

And it linked me here:

Common MS Build properties list

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kevin

79259458

Date: 2024-12-06 21:47:40
Score: 2
Natty:
Report link

Got it.

React doesn't care about the value of un, only the states of certain variables. Fixed it by using useState().

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: shamwoah

79259449

Date: 2024-12-06 21:41:38
Score: 2
Natty:
Report link

Please stop confusing the public. Below's the compabitlity matrix:

Spring Framework Spring Boot Springdoc
6.2.0 3.4.x 2.7.x
6.1.15 3.3.6 2.6.x
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Paul Bors

79259444

Date: 2024-12-06 21:36:37
Score: 0.5
Natty:
Report link

I'm not able to help you because it lacks details. But I'll share with you some tips that might help:

  1. Check the RN architecture used to build the app in the file android/gradle.properties searches reactNativeArchitectures

  2. Run the command ./gradlew assembleDebug

  3. Once you've run the command, look for the android/app/build/intermediates/merged_native_libs folder and check that all the folders it contains contain your libhermes.so. If they don't, this means that hermes is incorrectly configured

  4. In this case, create a fresh 0.73.0 application

  5. Check if it works well on your emulator or Android device (Activate / deactivate hermes)

  6. If it works well, check the configuration in build.gradle and app/build.gradle

  7. It's likely that there's a difference between your project and the new one

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Layeb Mazen

79259442

Date: 2024-12-06 21:35:37
Score: 1
Natty:
Report link
$username_or_email = sanitize_text_field($_POST['username']);
$password = sanitize_text_field($_POST['password']);

$credentials = array(
    'user_login'    => $username_or_email,
    'user_password' => $password,
    'remember'      => true,
);


$authenticated_user = wp_signon($credentials, false);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Shweta Mishra

79259438

Date: 2024-12-06 21:33:36
Score: 0.5
Natty:
Report link

This looks very similar to the problem I encountered a few days ago. However, surprisingly, it was actually not a bug, but a feature. This is the devtools feature, that called "Emulate a focused page", and while it is active the page does not lose focus and, as a result, does not receive the expected events. To be clear, It is very useful for some situation, but has some caveats clearly noted:

Caution: With this option turned on, the document.visibilityState is set to visible and the visibilitychange event doesn't fire. For more information, see Page Visibility API.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Kyr

79259436

Date: 2024-12-06 21:33:35
Score: 8.5 🚩
Natty: 6.5
Report link

I've been searching for an answer too, and it seems that when a UITextView shares a layout manager with other text views, the text view unfortunately becomes static. Is there a solution to this problem now? I would be very grateful for help.

Reasons:
  • Blacklisted phrase (3): Is there a solution
  • RegEx Blacklisted phrase (2): I would be very grateful
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Thom

79259431

Date: 2024-12-06 21:30:34
Score: 0.5
Natty:
Report link

That is not gRPC generated code. That is the old Protobuf RPC API, which Protobuf discourages.

You need to build the gRPC generated code using protoc-gen-grpc-java. The generated class name will be your service name with a "Grpc" suffix.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Eric Anderson

79259430

Date: 2024-12-06 21:30:34
Score: 1
Natty:
Report link

I ran into this recently and it was due to circular imports - I had a types file that imported from a model file, but that model file also imported from the types file. The solution was to remove the circular dependency.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: rgahan

79259427

Date: 2024-12-06 21:27:33
Score: 4.5
Natty: 4.5
Report link

This apparently is a bug related to Power BI. The following page explains the solution. https://medium.com/riccardo-perico/how-to-fix-couldnt-connect-to-analysis-service-in-power-bi-report-server-2849537de328

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Abbas Roshan

79259426

Date: 2024-12-06 21:26:32
Score: 3.5
Natty:
Report link

so close, you have to make your table+= requests to become table.innerHTML+=

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: james monteith

79259421

Date: 2024-12-06 21:26:32
Score: 2.5
Natty:
Report link

If you're using EF core , MSSQL is probably the best choice because the configuration is almost simple and you can easily deploy it to cloud like Azure which belong to Microsoft like .Net belonng

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Emeraude Makola

79259417

Date: 2024-12-06 21:25:32
Score: 3.5
Natty:
Report link

The browser doesn't know how to resolve "vue", Unlike Node.js (which has a module resolution system like node_modules), browsers don't automatically know how to locate third-party packages. ( we have Module Specifier Without a Relative or Absolute Path ) for this. and, No Bundler or Module Resolver what can you do? a simple way you can use bundlers like vite to serve your app how? check this link

Reasons:
  • Blacklisted phrase (1): this link
  • Whitelisted phrase (-1.5): you can use
  • RegEx Blacklisted phrase (1): check this link
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: alireza nikzad

79259400

Date: 2024-12-06 21:19:30
Score: 2
Natty:
Report link

In the environment path, ensure the 32-bit dotnet path is before the 64-bit one.

See https://github.com/dotnet/core/issues/5962#issuecomment-780084535 for details.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: GregC

79259394

Date: 2024-12-06 21:16:29
Score: 2.5
Natty:
Report link

Also if you were to add "Group By 1" to your sub query, it will work.

(select max(count(p2.pres_name)) from president p2 where p1.part = p2.party group by 1)

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tyler Hayes

79259391

Date: 2024-12-06 21:15:29
Score: 3
Natty:
Report link

Please read the "Disallowing specific commands" section on this doc from Redis. I hope it is useful for you.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mohsen Khosroanjam

79259390

Date: 2024-12-06 21:15:29
Score: 2.5
Natty:
Report link

vous pouvez essaiyer d executer la route dans la methode pour navigue vers la page d accueil dans le dispose() de la page , la si l utilisateur essai de quitte la page il sera rediriger vers la page d accueil.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ASOGBOU DIFFOUO DROPA

79259380

Date: 2024-12-06 21:10:28
Score: 1.5
Natty:
Report link
  1. delete all libreadline from your system, /usr/lib, /usr/local/lib etc

  2. download sources for readline from someplace

  3. configure with (my version for readline.8.2 Dec. 2024):

    ./configure --with-shared-termcap-library --enable-static -q --prefix=/usr

    --enable-static not necessary. --prefix - your choice. --with-shared-termcap-library - imperative, the undefined symbols are in libtermcap and NOT in libncurses.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: sylvian kahane

79259375

Date: 2024-12-06 21:07:27
Score: 1
Natty:
Report link

You can apply the same styling to the children of an HTML element by using the children property:

let elements = document.getElementsByClassName('gs-title');
  for (const element of elements) {
    element.style.fontSize = "24px";
      for (const child of element.children) {
        child.style.fontSize = "24px";
      }
  }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patrick Schlieker

79259369

Date: 2024-12-06 21:02:26
Score: 1
Natty:
Report link

I'm currently working in iOS 15.

func mapViewDidChangeVisibleRegion(_ mapView: MKMapView) { }

can help detect "the scrolling of the map" as per Apple documentation.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Miguel Tepale

79259368

Date: 2024-12-06 21:01:25
Score: 0.5
Natty:
Report link

If you want to ignore property globally, There is a method AddGlobalIgnore in Profile Class of AutoMapper. This is available in AutoMapper version 13.0 or later.

e.g: AddGlobalIgnore("CreatorUserId");

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shahid Malik

79259362

Date: 2024-12-06 20:59:25
Score: 3
Natty:
Report link

The solution was updating the token. Hope it will help someone

Reasons:
  • Whitelisted phrase (-1): Hope it will help
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AndyFlight

79259361

Date: 2024-12-06 20:58:24
Score: 1
Natty:
Report link

I replicated your scenario and I was able to get the result you are looking for. I did follow these steps and I also uploaded a test sample in my bucket.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: marky

79259348

Date: 2024-12-06 20:52:22
Score: 4
Natty: 4.5
Report link

Very late to the party, but delete can be overridden through proxies.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy/Proxy/deleteProperty

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Damiano Di Vincenzo

79259347

Date: 2024-12-06 20:52:22
Score: 0.5
Natty:
Report link

I was experiencing something similar and found that the page needs some kind of interaction before the preventDefault() will work. Make sure you click somewhere on the page or within the app before leaving/refreshing the page.

Here is the documentation... https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event

To trigger the dialog being shown when the user closes or navigates the tab, a beforeunload event handler function should call preventDefault() on the event object. You should note that modern implementations:

  • Require sticky activation for the dialog to be displayed. In other words, the browser will only show the dialog box if the frame or any embedded frame receives a user gesture or user interaction. If the user has never interacted with the page, then there is no user data to save, so no legitimate use case for the dialog.
  • Only show a generic browser-specified string in the displayed dialog. This cannot be controlled by the webpage code.

Also note: using an alert is not recommended within the beforeunload event.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: shmoeaz

79259339

Date: 2024-12-06 20:48:21
Score: 2
Natty:
Report link

i have encountered a very similar issue. First of all, do what everyone suggested and zero pad the vector to go incrementally down to 0 and create a conjugate symmetric mirror image at the end of the vector before applying ifft. this is just the proper way to do it.

but the problem still remains, right?

Well what i found is that zero padding somehow causes this. im really not sure why and it might be hidden behind matlabs algorithm implementing the operation.

you can solve it though.

what you want to do is first to smooth out the transition, instead of having a sudden jump to zero

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28665430

79259329

Date: 2024-12-06 20:43:19
Score: 4.5
Natty:
Report link

I have found that adding destroy as an argument makes it work more quickly enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: taivoe

79259311

Date: 2024-12-06 20:34:15
Score: 6 🚩
Natty: 5.5
Report link

Is there really "DataDirectory" and "Data Directory"?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Is there
  • Low reputation (1):
Posted by: Alex Gray

79259310

Date: 2024-12-06 20:34:14
Score: 0.5
Natty:
Report link

Dev rel at Superwall here, let me answer your questions one by one:

Do I need StoreKit along with Superwall? I have downloaded Example Projects and I followed "Superwall-UIKit-Swift.xcodeproj" this example which doesn't implement StoreKit. So, I'm a little bit confused about implementing StoreKit along with Superwall.

No! We handle every aspect of the transaction, no need to dip down into StoreKit unless you need more fine-grain control over the purchasing pipeline. Under the hood, we are just using StoreKit anyways (on iOS at least).

So, users can purchase subscriptions even if they don't have an account, But after purchasing subscriptions how do i connect this purchase with user's account?

That's where your own application logic comes in. We can tell you about their subscription status via Superwall.shared.subscriptionStatus and then you can forward that or otherwise attach that paid status to your user. You could even listen for changes in that status, too:

subscribedCancellable = Superwall.shared.$subscriptionStatus
  .receive(on: DispatchQueue.main)
  .sink { [weak self] status in
    switch status {
    case .unknown:
      self?.subscriptionLabel.text = "Loading subscription status."
    case .active:
      self?.subscriptionLabel.text = "You currently have an active subscription. Therefore, the paywall will never show. For the purposes of this app, delete and reinstall the app to clear subscriptions."
    case .inactive:
      self?.subscriptionLabel.text = "You do not have an active subscription so the paywall will show when clicking the button."
    }
  }

Now, if the user could purchase your subscription from somewhere else, like on your website - then you would want to use a PurchaseController to match up their subscription status manually. Docs on that here.

How do I get "transaction_id" and "receipt_data" from Superwall? I have to send this data to the server.

You're on the right path in your code sample:

func handleSuperwallEvent(withInfo eventInfo: SuperwallEventInfo) {
    switch eventInfo.event {
    case .transactionComplete(let transaction, let product, let paywallInfo):
        // Use either sk1Transaction or sk2Transaction 
        if let sk2xaction = transaction?.sk2Transaction {
            // You have the StoreKit transaction here to query as needed
        }
    default:
        print("Default event: \(eventInfo.event.description)")
    }
}

Getting receipt data is different in StoreKit 1/2, I'm not sure which you're using. Here's a good resource for StoreKit 1 and in StoreKit 2, that concept doesn't apply since it's been more or less replaced with Transaction.currentEntitlements. Check out our blog post over StoreKit 2 to see how it all works.

Hope this helps!

Reasons:
  • Blacklisted phrase (1): how do i
  • Blacklisted phrase (1): How do I
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Dreaming In Binary

79259300

Date: 2024-12-06 20:30:13
Score: 2.5
Natty:
Report link

I was able to resolve this issue by removing 'output: html_notebook' from the top of my R Markdown notebook. I believe this line was causing pandoc to create a new HTML copy of my notebook whenever I modified and then ran a code cell; this process took quite a while at times. Once I took that line out, RStudio began to run MUCH faster. (This post by Dedalus was crucial in solving this issue.)

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: TFXB

79259288

Date: 2024-12-06 20:25:12
Score: 1.5
Natty:
Report link

In the end the syntax that worked correctly and quickly was:

val field = s"paper_id=>$paperId"
val q = quote{
    auditDb.filter(row => sql"${row.rowData} @> ${lift(field)}::hstore".as[Boolean])
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tel

79259280

Date: 2024-12-06 20:21:11
Score: 2.5
Natty:
Report link

After further troubleshooting, I discovered there was a mispelled path statement in the apache3 .conf file. However, the real culprit seems to be that Ubuntu 22.04 changed the default permission for /home/user folders from 755 to 750. When I changed the /home/mark folder to 755, the site worked.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: user1045680

79259275

Date: 2024-12-06 20:18:10
Score: 2.5
Natty:
Report link

Yes. If PostgreSQL evaluates the third condition (CURRENT_TIMESTAMP > "TradeOffer".expiration_date) before the second condition ("TradeOffer".expiration_date IS NOT NULL), it could attempt to compare a NULL value, leading to UNKNOWN.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: J. Ignacio Herrera

79259273

Date: 2024-12-06 20:18:09
Score: 6 🚩
Natty: 5
Report link

Hoping for help. I have some bnb in my token contract address: 0xC0DaB2BC78729618455452a4E670eF7ED233f910 Is there a way to withdraw that?

Reasons:
  • Blacklisted phrase (1): Is there a way
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Anar

79259268

Date: 2024-12-06 20:16:08
Score: 0.5
Natty:
Report link

So following up on possible cause that @Jeremy Thompson had shown me, I performed my typical migration - got my zillion errors - then ran a SELECT * on my Logs table after the migration had completed.

Lo and behold: There are logs from my migration

It appears the problem is that I created a custom logging provider that is dependent on this logs table. When the EF Migration runs, it is pushing logs that are picked up by my logger, which then attempts to save them to my Logs table (which is in the process of being created).

On my quest to debug this issue, I've seen other commenters in other threads recommend that your ApplicationDBContext should not live inside your app's project, but instead live in a different one. This happened to be side-effect of making that mistake. Cheers to everyone who put that out onto the web :)

Reasons:
  • Blacklisted phrase (1): Cheers
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Jeremy
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: Chris Phillips

79259267

Date: 2024-12-06 20:16:08
Score: 2.5
Natty:
Report link

12.2024 UPDATE

Following @Muscler and @enrik answer, Platform code (Kotlin) changed once again and I just made adjustments:

In your MainActivity.kt file add the following code:

import android.os.Bundle
import io.flutter.embedding.engine.FlutterEngine
import io.flutter.plugin.common.MethodChannel

class MainActivity : FlutterActivity() {
private val CHANNEL = "android_app_retain"

override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
    super.configureFlutterEngine(flutterEngine)

    MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL).setMethodCallHandler { call, result ->
        if (call.method == "sendToBackground") {
            moveTaskToBack(true) 
            result.success(null)
        } else {
            result.notImplemented()
        }
    }
}

 override fun onBackPressed() {
    moveTaskToBack(true)
 }
}

then in your Dart code invoke method adding following:

const platform = MethodChannel('android_app_retain');

Future<void> _sendToBackground() async {
  try {
    await platform.invokeMethod('sendToBackground');
  } on PlatformException catch (e) {
    print("Error while sending app to background: $e");
  }
}

@override
Widget build(BuildContext context) {
return WillPopScope(
  onWillPop: () async {
    await _sendToBackground(); // Sends app to background when pressing "back"
    return false; // Prevents app from closing
  },
  child: Scaffold(
    ...
  ),
 );
}

Please thumbs up if works! I need to reach 2 reputation lol ♥

Reasons:
  • Blacklisted phrase (0.5): I need
  • RegEx Blacklisted phrase (1.5): reputation
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Muscler
  • User mentioned (0): @enrik
  • Low reputation (1):
Posted by: Horacio Duca

79259252

Date: 2024-12-06 20:12:07
Score: 2
Natty:
Report link

And your short reply was so helpful to me about overriding on touch down and on touch up and on touch move by just add pass meaning now carousel it won't demand any user touch on it, is easy in case you are dealing with app like dating app where user press button to slide carousel childs and don't want it to slide it's children if user slide by touch for app like dating is important that is why am leaving this comment here, for someone in future to see it as it will be helpful

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Elton Sibara

79259250

Date: 2024-12-06 20:11:06
Score: 1
Natty:
Report link

if you are looking to get ip address from servlet, inject HttpServletRequest and call in request.getRemoteAddr() method.

and if you're using reverse proxy request, check out this answer's comment https://stackoverflow.com/a/29910902/8733302

@RestController
public class HelloController {

    @Autowired
    private HttpServletRequest request;

    @PostMapping("/coolendpointTWO")
    public String withRequestBody(@RequestBody MyPojo myPojo) {

        System.out.println("received object" + myPojo);
        //handle myPojo with my business logic

        String ip = request.getRemoteAddr();
        return "good: " + ip;
    }

}
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ragav ravi

79259248

Date: 2024-12-06 20:09:06
Score: 1.5
Natty:
Report link

You need to create multiple CXCallDirectoryExtensions.

After you install TrueCaller you will see that the app uses 4 extension instances. I presume it's a workaround for entries limit.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Heps

79259245

Date: 2024-12-06 20:07:05
Score: 0.5
Natty:
Report link

Even if you change a list item, it is still the same list. You may:

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Guney Ozsan

79259234

Date: 2024-12-06 20:04:05
Score: 1.5
Natty:
Report link

It's applicable everywhere. Conceptually, you want to design your software with many layers (like an onion) and have each layer responsible for progressively larger and larger areas of code. Each layer defining how it will recover from failures it can handle and then propagating failures it can't handle to the outer layer. The real mentality comes from designing the application from the beginning with recovery in mind. People who do a lot of defensive programming actually treat errors as after-thoughts, attempting to "handle" them at every place they think they will encounter them. In any complex application however, there will always be errors in places they didn't think they would encounter them. Instead, one should have the mindset that no matter what you do, you will get an error somewhere and thus you must figure out how to recover from any error, anywhere in the code.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sarit Sotangkur

79259233

Date: 2024-12-06 20:03:04
Score: 4
Natty:
Report link

ERROR: Could not find a version that satisfies the requirement setup.py (from versions: none) ERROR: No matching distribution found for setup.py

I get this error any ideas why it might be happening

Reasons:
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (1): I get this error
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Firaj Kwaify

79259226

Date: 2024-12-06 20:00:02
Score: 0.5
Natty:
Report link
find . -type l -exec bash -c 'realpath=$(readlink -f "{}"); cp -r --remove-destination "$realpath" "{}"' \;

Worked for me

Reasons:
  • Whitelisted phrase (-1): Worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Felipe Marra

79259219

Date: 2024-12-06 19:53:00
Score: 7.5 🚩
Natty: 4.5
Report link

I think it because the @react-oauth/google library or any other library use window.close() which basically throw this error cause its from different origin(google). I am ignoring this for long time if you have any solution can you please let me know too

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (2.5): can you please let me know
  • RegEx Blacklisted phrase (1): I am ignoring this for long time if you have any solution can you please
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MD. Thamidul Hasan Sakib

79259212

Date: 2024-12-06 19:52:00
Score: 0.5
Natty:
Report link

I had the same issue and was able to resolve it by reinstalling xpipe using the following command:

brew reinstall xpipe
Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Peiman Farajnezhad

79259208

Date: 2024-12-06 19:51:00
Score: 0.5
Natty:
Report link

If this is a situation where all the tables you want to drop are in the same schema, then you can simply drop the schema if you'd rather not write out every table name

DROP SCHEMA my_database.my_schema CASCADE
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: user16735583

79259207

Date: 2024-12-06 19:50:59
Score: 5.5
Natty: 4.5
Report link

Have you solved this issue? I faced the same problem recently

Reasons:
  • RegEx Blacklisted phrase (1.5): solved this issue?
  • Low length (1.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AndyFlight

79259205

Date: 2024-12-06 19:50:59
Score: 3
Natty:
Report link

I do not know what the problem was, I converted the project from cmake to a regular visual studio project, it asked for an additional arch/win32/ua_architecture header.h and everything worked... It's unclear why cmake didn't ask him...

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: jrfdsa

79259203

Date: 2024-12-06 19:49:58
Score: 1
Natty:
Report link

Unfortunately I think there is no nice solution to this.

We solved the same problem with implementing HorizontalPager, that holds the Maps view always in memory. Once it does not get redrawn, it will not flicker.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: m6ksu

79259190

Date: 2024-12-06 19:42:57
Score: 2
Natty:
Report link

This capability does not currently exist for Confluence.

There is an jira ticket you can vote for, but until enough end users show interest, Atlassian will not provide this API.

You can see what they have done for APIs for databases in this ticket, as well as vote for it here: https://jira.atlassian.com/browse/CONFCLOUD-77328

Using this link, when the capability is available, it will be reflected in this ticket and then we should post a better answer.

Reasons:
  • Blacklisted phrase (1): this link
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Matt

79259189

Date: 2024-12-06 19:40:57
Score: 0.5
Natty:
Report link

Not sure where your specific error is coming from but I have hosted web apps on Pythonanywhere and I used python-decouple to manage my .env files. Please see How to Use Python Decouple to set up and configure your environment variables.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: 16171413

79259180

Date: 2024-12-06 19:38:56
Score: 0.5
Natty:
Report link

Maybe you want something like this? Set the scroll state to the last element, instead of using reverseLayout

val items = List(10) { it }
val state = rememberLazyListState()

LaunchedEffect(Unit) {
    state.scrollToItem(items.lastIndex)
}

LazyColumn(
    state = state
) {
    stickyHeader {
        Text("End to End Enabled for this chat")
    }
    items(items) {
        ListItem(
            headlineContent = {
                Text("Item $it")
            }
        )
    }
}
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: xephosbot

79259177

Date: 2024-12-06 19:35:55
Score: 1.5
Natty:
Report link

I recently suffered through this. Could you try to bring the scope outside of properties please?

{
  "type": "Microsoft.Storage/storageAccounts/providers/roleAssignments",
  "name": "[concat(variables('storageAccountName'),'/Microsoft.Authorization/',guid(subscription().subscriptionId))]",
  "apiVersion": "2019-04-01-preview",
  "dependsOn": [
    "[resourceId('Microsoft.Storage/storageAccounts/blobServices', variables('storageAccountName'), 'default')]",
    "[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]"
  ],
  "scope": "[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]"
  "properties": {
    "roleDefinitionId": "[concat(resourceGroup().id, '/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab')]",
    "principalId": "[parameters('principalId')]"
  }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ron

79259172

Date: 2024-12-06 19:32:54
Score: 4.5
Natty: 4.5
Report link

You may find it here:

Note: these obsolete versions of the NDK are no longer supported.

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hamed Mohamadi

79259165

Date: 2024-12-06 19:30:53
Score: 1
Natty:
Report link

It would perhaps be better to use cy.location() as this has an origin property.

You can of course pass the variable directly into the cy.origin() command.

clickPaymentTypeRadioButtonAndSubmit(0);

cy.location('origin')
  .then(currentOrigin => {

    cy.origin(currentOrigin, () => {
      ...
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Hibor

79259161

Date: 2024-12-06 19:29:53
Score: 0.5
Natty:
Report link

Faced this issue, while trying to run an opensource project. I cloned it, but ran before changing the bundle ID, so it threw some error, then updated the ID and signed into my apple developer account (not with a membership), then I faced this Error.

The solution which worked for me, is to clean the build folder once and then running it again.

Reasons:
  • Whitelisted phrase (-1): worked for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: SJ_Bose

79259157

Date: 2024-12-06 19:27:52
Score: 3
Natty:
Report link

Yes, give it time 3-5 mins. It happened to me as well, eventually it got finished. Patience is the key here.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Partha Roy

79259150

Date: 2024-12-06 19:24:52
Score: 2
Natty:
Report link

Follow the steps:

In Visual Studio Code:

  1. Install the SQL server extension. After installation, you must see a box on the left panel of your VS Code screen. Select it.
  2. Add Connection
  3. Type Server name (from your MS SQL server) and hit Enter.
  4. Select Integrated
  5. Give your Connection Name and hit Enter.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Hemanth Kumar Patnala

79259142

Date: 2024-12-06 19:20:51
Score: 1.5
Natty:
Report link

Nothing helps, maybe solution for that? This is the error when I try to run installation of any downloaded app:

./jetbrains-toolbox

A fatal error has been detected by the Java Runtime Environment:

SIGILL (0x4) at pc=0x0000fc7485f3fb5c, pid=8705, tid=8705

JRE version: (21.0.3+13) (build ) Java VM: OpenJDK 64-Bit Server VM (21.0.3+13-b509.11, mixed mode, tiered, compressed oops, compressed class ptrs, serial gc, linux-aarch64) Problematic frame: j java.lang.System.registerNatives()V+0 java.base

Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /tmp/.mount_jetbraD7e8Ql/core.8705)

JNI global refs: JNI global refs: 0, weak refs: 0

JNI global refs memory usage: 227, weak refs: 225 OOME stack traces (most recent first): Classloader memory used: Loader bootstrap : 1540K

An error report file with more information is saved as: /home/buu/.local/share/JetBrains/Toolbox/logs/toolbox-error-8705.log

The crash happened outside the Java Virtual Machine in native code. See problematic frame for where to report the bug.

Aborted (core dumped)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Dawid Buda

79259137

Date: 2024-12-06 19:18:51
Score: 1
Natty:
Report link

I my case, I didn't get the coverage result if reporter was defined empty. In example:

test: {
reporters: [
  ['default'],
],
coverage: {
  reporter: [],
  provider: 'istanbul', // or 'v8'
},

},

Then I need to ommit the reporter config.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rodcesar.santos