79597000

Date: 2025-04-28 17:28:30
Score: 12.5
Natty: 8
Report link

Can anyone help me out here. I'm facing the same issue but only with .NET Framework 4.8.

More details here:

Azure Functions V1 on .NET Framework 4.8: TimerTrigger isn’t discovered [ No job functions found. Try making your job classes and methods public ]

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can anyone help me
  • RegEx Blacklisted phrase (2): help me out
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I'm facing the same issue
  • Starts with a question (0.5): Can anyone help me
  • Low reputation (1):
Posted by: tripler25

79596998

Date: 2025-04-28 17:28:30
Score: 4
Natty: 5
Report link

OttScott. You're right on. Enable Windows Firewall rule "Remote Event Log Management (RPC)" did it for me, even after 2 years. Thanks for taking the time to answer.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: tggandaff

79596989

Date: 2025-04-28 17:21:28
Score: 2.5
Natty:
Report link

When using npm init, separate keywords with commas (or spaces).

Based on @rsp's example

/caught $ npm init
...
keywords: promise async, UnhandledPromiseRejectionWarning, PromiseRejectionHandledWarning

...
# You cannot escape the space with a `\`. 

Adding this because npm is tagged

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @rsp's
  • Starts with a question (0.5): When
  • Low reputation (1):
Posted by: Jesulayomi

79596988

Date: 2025-04-28 17:20:28
Score: 2
Natty:
Report link

In my case, it was a bug in the older versions I was using quasar=2.14.2", with quasar/app-vite=1.7.1".
I upgraded those packages and it worked.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: alberto_dev

79596985

Date: 2025-04-28 17:19:27
Score: 3
Natty:
Report link
optimized_clips = []
for img_path in image_files:
    clip = (ImageClip(img_path)
            .set_duration(duration_per_image)
            .resize(height=480)  # Reducimos resolución
            .fadein(0.3)
            .fadeout(0.3))
    optimized_clips.append(clip)

# Concatenar los clips
optimized_video = concatenate_videoclips(optimized_clips, method="compose")

# Exportar el video optimizado
optimized_output_path = "/mnt/data/feliz_cumple_sin_texto_optimizado.mp4"
optimized_video.write_videofile(optimized_output_path, fps=24)
Reasons:
  • Blacklisted phrase (3): solución
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jefferson sierra

79596983

Date: 2025-04-28 17:18:27
Score: 2
Natty:
Report link

thanks for opening the issue!

I have looked at fixing in your github code and seems I made the same thing but it still gives me this error. If you have any idea why, I would be thankful! It works in useEffects, try catch block

Code:

            function generateUUID() {
                return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(
                    /[xy]/g,
                    function (c) {
                        const r = (Math.random() * 16) | 0;
                        const v = c === 'x' ? r : (r & 0x3) | 0x8;
                        return v.toString(16);
                    }
                );
            }

            async function copyAssetToAppDocs(): Promise<string> {
                const uuid = generateUUID();

                const asset = Asset.fromModule(
                    require('../../assets/images-notifications/image0.png')
                );
                await asset.downloadAsync();

                if (!asset.localUri) {
                    console.error('Asset localUri is missing');
                    throw new Error('Asset localUri is missing');
                }

                console.log('Asset localUri:', asset.localUri);
                console.log(asset.type, 'asset.type');

                const docsDir = FileSystem.documentDirectory;

                if (!docsDir) {
                    console.error('Document directory is missing');
                    throw new Error('Document directory is missing');
                }

                const targetPath = `${docsDir}${uuid}.png`; // random unique file

                console.log(targetPath, 'targetPath');
        
                await FileSystem.copyAsync({
                    from: asset.localUri.startsWith('file://')
                        ? asset.localUri
                        : `file://${asset.localUri}`,
                    to: targetPath,
                });

                const fileInfo = await FileSystem.getInfoAsync(targetPath);
                if (fileInfo.exists) {
                    console.log('File exists, using existing path:', targetPath);
                }
                console.log('File copied to:', targetPath);
                return targetPath.substring('file://'.length);
            }

            const attachmentUrl = await copyAssetToAppDocs();

            if (!attachmentUrl) {
                console.error('Failed to copy asset to app docs');
                return;
            }

            console.log(attachmentUrl, 'attachmentUrl');

            setImageurl(attachmentUrl);
            console.log(imgurl, 'imgurl');

            await Notifications.scheduleNotificationAsync({
                content: {
                    title: 'Finish your profile',
                    body: 'Ready to find your perfect match? Complete your profile now and start your journey to love!',
                    attachments: [
                        {
                            identifier: 'lalala',
                            url: attachmentUrl,
                            type: 'image/png',
                            typeHint: 'public.png',
                            hideThumbnail: false,
                        },
                    ],
                    data: { route: 'imageScreen' },
                },
                trigger: {
                    type: Notifications.SchedulableTriggerInputTypes.TIME_INTERVAL,
                    seconds: 5,
                },
            });

            console.log('Notification scheduled');
Reasons:
  • Blacklisted phrase (0.5): thanks
  • RegEx Blacklisted phrase (2): I would be thankful
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Zhibek Abdykalykova

79596981

Date: 2025-04-28 17:17:27
Score: 0.5
Natty:
Report link

I don't know what they did in the later versions of Godot (I think around version 4.4), but in one the versions earlier, after I turned on emulate 3 button mouse I could rotate the camera around the center by holding alt and moving the mouse.

Maybe I am missing something but after some update the only way I can turn around the camera around the center is through the axis icon in the top right corner by holding the mouse key and moving the mouse on it.

So in my case the options are a downgrade and possibly also redoing some work or getting used to the annoying movement system when I'm on the go in a bus or train (or even at home since I can't sit still in once place) where I can't easily pull out a mouse.

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

79596980

Date: 2025-04-28 17:16:26
Score: 2.5
Natty:
Report link

Make sure the dir. and Folder a are correctly assigned secondly check whether too executed the command in same Dir in which the Folder and Files are

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Asif Nawaz

79596978

Date: 2025-04-28 17:15:26
Score: 2.5
Natty:
Report link

please try the below command.

dmpmqmsg -m <queue manager name> -i <queue name> |grep MSI |grep <message id>

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

79596975

Date: 2025-04-28 17:13:25
Score: 0.5
Natty:
Report link

What does the PrimeVue DatePicker return? A date object or a formatted string? If PrimeVue parses it automatically, it's a Date, and your string regex validation gets skipped. This could be why your validations are having issues. Your form schema seems to expect a string. If they are expecting different types, this could be where the issue is happening.

If it does return a date object then could you simply do:

const formSchema = z.object({
  start_date: z
    .date()
    .refine((date) => date !== null, "Start date is required."),
});
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What do
  • Low reputation (0.5):
Posted by: David

79596972

Date: 2025-04-28 17:08:24
Score: 5
Natty:
Report link

Fortunately, there is a package that does this. You can read more about it at this link:


https://dev.to/dutchskull/poly-repo-support-for-dotnet-aspire-14d5

Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: MILAD BAHARLO

79596963

Date: 2025-04-28 17:03:22
Score: 1
Natty:
Report link

So, as of late, I haven't found any solution similar to the @PostConstruct one.

In the end, here's how I made it work without inheritance or @BeforeEach setups:

This is what the custom IntegrationTest annotation looks like:

@Retention(RetentionPolicy.RUNTIME)
@SpringBootTest(classes = SpringSecurityTestConfig.class)
@ActiveProfiles("test")
@Sql(scripts = "classpath:sql/clearTables.sql", executionPhase = ExecutionPhase.AFTER_TEST_METHOD)
@AutoConfigureMockMvc
@EnableWireMock({
    @ConfigureWireMock(name = "localazy-client", baseUrlProperties = "i18n.localazy.cdnUrl", filesUnderClasspath = "wiremock/localazy-client")
})
@MockitoSpyBean(types = {JavaMailSender.class, LocalazyService.class})
public @interface IntegrationTest {

}

Using Wiremock is a bit heavier than I would have liked, and I might lose a few seconds when running tests individually, but it's a compromise I can accept.

I don't need the IntegrationTestConfig configuration class anymore, as it's now empty.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: M4veR1K

79596960

Date: 2025-04-28 17:01:22
Score: 1
Natty:
Report link

For anyone still looking for a solution, the fix I found was to assign the shortcut to a button on my Razer mouse with the Razer Synapse app. In Synapse, click on the button you want to change, select "Launch" and select the "Website" option. Paste the filepath from your Windows shortcut into the field (e.g. "%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Bypass -File "C:\Users\kekus\Documents\scripts\audio_switcher.ps1"). Save.
For whatever reason, the startup time is reduced to a few milliseconds.

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

79596956

Date: 2025-04-28 17:00:22
Score: 1.5
Natty:
Report link

Fixed it.

var viewer;
var options = {
    env: 'AutodeskProduction2',
    api: 'streamingV2',
    accessToken: ''
};

needed to be. 

var viewer;
var options = {
    env: 'AutodeskProduction2',
    api: 'streamingV2_EU',
    accessToken: ''
};


region of stroage was set to europe
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Doctor J

79596930

Date: 2025-04-28 16:46:18
Score: 2.5
Natty:
Report link

What would be the use for this ? Python already has built-in "templating". The main reason c++ requires templating is because everything needs type unlike in Python. In a way, C++ is a fairly dumb language compared to Python. It is overly complicated now with lots of bells and whistles that makes coding slow, laborious and brittle . A stripped down version of C++ like Python (or C) would be sufficient for all tasks,

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What would
  • Low reputation (0.5):
Posted by: whadhack

79596929

Date: 2025-04-28 16:45:17
Score: 1
Natty:
Report link

The problem was my trick to + or - 90 degrees to get the forward wall direction, which was backwards on the opposite side of the wall. Thanks to Sanjay Nakate for the solution. Here's the updated code for any wondering:

private void WallStick()
    {
        Vector3 normal = Vector3.zero;

        if (leftWall) normal = leftWallHit.normal;
        else if (rightWall) normal = rightWallHit.normal;

        // Calculate the wall-facing direction only on the XZ plane
        Vector3 wallForward = Vector3.Cross(normal, Vector3.up);  // Vector perpendicular to the wall normal
        if (rightWall) wallForward = -wallForward;

        float targetYRotation = Mathf.Atan2(wallForward.x, wallForward.z) * Mathf.Rad2Deg;

        playerMovement.rotationScript.yRotation = targetYRotation;
    }
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Shog

79596928

Date: 2025-04-28 16:45:17
Score: 5.5
Natty: 5
Report link

If you had found the answer for this question please explain it . I am also working on document automation project.

Reasons:
  • RegEx Blacklisted phrase (2.5): please explain
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user30342609

79596927

Date: 2025-04-28 16:45:17
Score: 1
Natty:
Report link

When you run the ALTER DEFAULT PRIVILIGES statement, it only applies to objects created by the user who ran the command. If your table is getting recreated by a different user, then you need to run the command with the FOR USER clause. This will now target objects created by the specified user.

EX: I have schema_a.table_a, user_a, and user_b. Logged in as user_admin I ran the following to grant select privileges on table_a for user_a:

GRANT SELECT on schema_a.table_a TO user_a;

user_a now has select permissions as long as table_a is not recreated. If I want to maintain those permissions I could run something like this:

ALTER DEFAULT PRIVILEGES IN SCHEMA schema_a GRANT SELECT ON TABLES TO USER user_a;

However, this only applies to any tables created by my current logged in user user_admin. When an ETL process that uses user_b recreates the table, the privileges are lost. To achieve my desired behavior I would have to run the following:

ALTER DEFAULT PRIVILEGES FOR USER user_b IN SCHEMA schema_a GRANT SELECT ON TABLES TO USER user_a;

Now when user_b recreates the table user_a maintains their permissions.

AWS Docs: https://docs.aws.amazon.com/redshift/latest/dg/r_ALTER_DEFAULT_PRIVILEGES.html

Good blog post talking about this:
https://medium.com/@bob.pore/i-altered-my-redshift-schemas-default-privileges-why-can-t-my-users-query-my-new-tables-4a4daef11572

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • Has code block (-0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Mr. Spock

79596923

Date: 2025-04-28 16:44:16
Score: 1
Natty:
Report link

One way to achieve this is to handle the navigation using state management, for example you have a high level screen with multiple screens as fragments once the deeplink is triggered in the app you can change the current selected frame and in that specific frame (in your case "chat screen") you navigate using Navigator or any other API to the desired screen with the data present in the deeplink metadata

Reasons:
  • Whitelisted phrase (-1): in your case
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Badr Kouki

79596920

Date: 2025-04-28 16:42:16
Score: 3.5
Natty:
Report link

From my conversation with the team, they are refusing to support (which is new because EVERY web server does this) https://github.com/spring-projects/spring-framework/issues/34834#issuecomment-2834546422

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

79596912

Date: 2025-04-28 16:35:15
Score: 3.5
Natty:
Report link

The solution was basically to add a while loop to retry the paste operation with a waiting interval between each attempt, until it succeeds.

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

79596906

Date: 2025-04-28 16:33:14
Score: 2.5
Natty:
Report link

I had this morning the same problem that https://repo.eclipse.org/content/groups/releases/org/eclipse/rcptt/ returned HTTP code 403. But now it works again, so I would assume that your problem is also fixed (the latest release version is 2.5.5, latest Snapshot version is 2.6.0-SNAPSHOT)

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

79596904

Date: 2025-04-28 16:32:13
Score: 13 🚩
Natty: 5
Report link

Hi I have the similar issue, I have done the cloud trail setup but I am not getting any LOG info for DeleteObject through an API but I am getting the info for PutObject and DeleteObjects. Can someone help me out what I might have missed

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): Can someone help me
  • RegEx Blacklisted phrase (2): Hi I have the
  • RegEx Blacklisted phrase (2): help me out
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the similar issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: fardeen shaikh

79596901

Date: 2025-04-28 16:29:12
Score: 2
Natty:
Report link

Make sure that

  1. The user on the server have permissions to open sockets

  2. SSH server is configured to allow creating sockets.

Try to connect via SSH as root or do su after you log in and try to use proxy.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Senior Engineer

79596896

Date: 2025-04-28 16:25:10
Score: 4
Natty:
Report link

Before executing

parted -s /dev/sda resizepart 3 100% 3 Fix Fix 3 \n

try to run:

sgdisk -e /dev/sda

You will move your GPT header to the end of the disk

(Sorry i cannot comment cause of low reputation :) )

Reasons:
  • Blacklisted phrase (0.5): i cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • RegEx Blacklisted phrase (1.5): low reputation
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lucas

79596891

Date: 2025-04-28 16:22:10
Score: 0.5
Natty:
Report link

I haven't used this specific Testcontainers module, but it looks very promising: https://java.testcontainers.org/modules/mockserver/.

Overall, my experience with Testcontainers has been quite positive, and I would recommend it as a whole.

One challenge that may persist is the duration of tests, which can be difficult to manage, when implementing integration tests.

Reasons:
  • No code block (0.5):
Posted by: IgorekPotworek

79596888

Date: 2025-04-28 16:21:09
Score: 0.5
Natty:
Report link

Rather than using these front dependencies, I used the google and cdn publics librairies, this is not mandatory

<dependency>
    <groupId>org.webjars</groupId>
    <artifactId>jquery</artifactId>
    <version>3.4.1</version>
</dependency>
<dependency>
    <groupId>org.webjars</groupId>
    <artifactId>bootstrap</artifactId>
    <version>4.3.1</version>
</dependency>
<dependency>
    <groupId>org.webjars</groupId>
    <artifactId>webjars-locator-core</artifactId>
</dependency>

values in static/index.html

<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css"/
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.min.js"></script>

I wrapped the get user code in a getUser() function to refresh the dom

    <script type="text/javascript">
        $.get("/user", function(data) {
            $("#user").html(data.name);
            $(".unauthenticated").hide()
            $(".authenticated").show()
        });
    </script>

To

    var getUser = function() {
                $.get("/user", (data) => {
                    if (data.name) {
                        $("#span-user").html(data.name);
                        $(".unauthenticated").hide();
                        $(".authenticated").show()
                    } else {
                        $(".unauthenticated").show();
                        $(".authenticated").hide()
                    }})
                }
    // call on load and after logout
     getUser();

For the section Making the Home Page Public, you can no longer extend the WebSecurityConfigurerAdapter and override configure(), instead you have to create a SecurityFilterChain bean, in a @Configuration & @EnableWebSecurity class

@Bean
public SecurityFilterChain filterChain(HttpSecurity http) { ...}

for the exception handling with 401 response in the guide, it's not working, and I replaced it

http 
...
.exceptionHandling(e -> e
                .authenticationEntryPoint(new HttpStatusEntryPoint(HttpStatus.UNAUTHORIZED))

with this custom endpoint /access/denied and its controller

http
...
.exceptionHandling((exceptionCustomizer) -> 
            exceptionCustomizer
            .accessDeniedPage("/access/denied")

the controller

@RestController
@RequestMapping("/access")
public class AccessController {

    @PostMapping("/denied")
    public ResponseEntity<Map<String, String>> accessDenied() {
        return ResponseEntity
        .badRequest()
        .body(Map.of("access", "denied"));
    }
}

And also add the pattern to requestMatchers() to allow the endpoint and the page to be accessed without login

.requestMatchers("/static/access-**", "/access**" ...).permitAll()

I tested this by commenting the _csrf token in the logout $.post() in the next step of the guide in index.html, the redirection to a custom error page is handled by the frontend (jquery/js here) in index.html

oauth2Login() is deprecated, instead use

http...
.oauth2Login(withDefaults())

In the next section Adding a Logout Endpoint I added a call to delete oauth cookies and invalidate the session, and replaced the Add a Logout Button $.post("/logout") .. in index.html

.logout(logoutCustomizer -> logoutCustomizer
            .invalidateHttpSession(true)
            // .logoutUrl("/logout") // default is /logout
            .logoutSuccessUrl("/") // redirect to homepage after logout
            .deleteCookies("JSESSIONID", "XSRF-TOKEN")
            .permitAll())

and changed http.csrf(c -> c.csrfTokenRepository(..)) to http....csrf(withDefaults()) and added a custom csrf endpoint called by frontend

@RestController
public class CsrfController {
    @GetMapping("/csrf")
    public CsrfToken getCsrf(CsrfToken csrfToken) {
        return csrfToken;
    } 
}

In the next section Adding the CSRF Token in the Client, I used the cdn library instead of the dependency

<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/3.0.5/js.cookie.min.js"></script>

And replaced the $.ajaxSetup(beforeSend: ) that adds a CSRF cookie before sending with $.post() that calls the /csrf endpoint to get a valid csrf token, and the oauth2 /logout default endpoint, it didn't work otherwise

var logout = function() {
            $.get("/csrf", (data) => {
                var csrfHeader = data.headerName
                var csrfValue = data.token
                $.ajax({
                    url: "/logout",
                    type: 'POST',
                    data: {
                        '_csrf': csrfValue
                    },
                    success: (s) => {
                        $("#span-user").html('');
                        $(".unauthenticated").hide();
                        $(".authenticated").show()
                        getUser() // refresh dom
                    },
                    error: (e) => {
                        if (e.status == 400 && e.responseJSON.access == 'denied') {
                            window.location.href = "/access-denied.html"
                        }
                    }
                })
            })
            return true;
        }

the next section Login with GitHub is to add a google auth, and requires you to configure a client and secret in the google cloud console

in the sub section How to Add a Local User Database I added a small in memory map that contains the users to simulate the described case

In the next section Adding an Error Page for Unauthenticated Users I didn't add the js in Detecting an Authentication Failure in the Client or override the /error endpoint, instead I created a custom static/access-401.html with the message retrieved with js in the url as a query param.

<div class="container text-danger error"></div>
    <script>
        let searchParams = new URLSearchParams(location.search)
        if (searchParams.has('error')) {
            $(".error").html(searchParams.get('error'))
        }
    </script>

In the sub section Adding an Error Message I replaced the failure handler to send a redirect to the 401 page instead of setting an attribute, note that setting the attribute might work but the message cannot be seen as it requires the user to login

http...
.failureHandler((request, response, exception) -> {
  response.sendRedirect("/access-401.html?error=".concat(exception.getMessage()));
})

In the next sub section Generating a 401 in the Server, it uses reactive but I used RestClient as a preference with some changes like the use of a reactive function .attributes(oauth2AuthorizedClient(client)) with .attributes((attributes) -> attributes.put(OAuth2AuthorizedClient.class.getName(), authorizedClient))

or the .bodyToMono() with .toEntity(new ParameterizedTypeReference<List<Map<String, Object>>>(){});

For the last part creating a WebCLient bean I made a basic RestClient without .filter()

@Bean
  public RestClient restClient(RestClient.Builder builder) {
    return builder
      .build();
  }

And here is the link to my github repo with the full project : url

Reasons:
  • Blacklisted phrase (1): here is the link
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: IKeepForgettingAccsMail

79596882

Date: 2025-04-28 16:17:08
Score: 4.5
Natty: 4
Report link

COMEME LOS HUEVOS ZORRA DE MRD

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: asd

79596874

Date: 2025-04-28 16:12:07
Score: 0.5
Natty:
Report link

It turned out to be a mistake on my end, even though I've added PHP and Apache to PATH, I added them to the user's PATH variable, which will not be recognized when running Apache as a service.

So I ended up adding them to the System's PATH variable and everything worked just fine.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: AL-Kateb

79596857

Date: 2025-04-28 16:01:04
Score: 2
Natty:
Report link

import matplotlib.pyplot as plt

import numpy as np

# تعريف المتغير x وتجنب القسمة على صفر

x = np.linspace(-10, 10, 1000)

x = x[x != 0] # لتجنب x = 0

# تعريف الدالة وخط التقارب المائل

f_x = (6 * x**2 - 3 * x + 2) / x

asymptote = 6 * x - 3

# رسم الدالة وخط التقارب المائل

plt.figure(figsize=(10, 6))

plt.plot(x, f_x, label=r'$f(x) = \frac{6x^2 - 3x + 2}{x}$', color='blue')

plt.plot(x, asymptote, label=r'خط التقارب المائل: $y = 6x - 3$', linestyle='--', color='red')

# إعدادات الرسم

plt.axhline(0, color='black', linewidth=0.5)

plt.axvline(0, color='black', linewidth=0.5)

plt.ylim(-100, 100)

plt.xlim(-10, 10)

plt.grid(True)

plt.legend()

plt.title('تمثيل الدالة مع خط التقارب المائل')

plt.xlabel('x')

plt.ylabel('f(x)')

plt.show()

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • No latin characters (0.5):
  • Low reputation (1):
Posted by: mariam

79596856

Date: 2025-04-28 15:59:03
Score: 1
Natty:
Report link

This is a bug in mypy versions prior to 1.12.0. Upgrading to 1.12 or better allows for proper handling of multiple inheritance.

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

79596839

Date: 2025-04-28 15:50:01
Score: 1
Natty:
Report link

I think you need to enable the Geocoding API from the Google Maps Platform in your GCP project.
Make sure you have the right project selected and you have permission (like Project Owner or Editor) to enable APIs.

You can find it here: https://console.cloud.google.com/marketplace/product/google/maps-backend.googleapis.com

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

79596836

Date: 2025-04-28 15:47:01
Score: 3
Natty:
Report link

The official way to attribute Purchase events correctly, is to use campaign_id, adset_id and ad_id and a custom tracking method

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

79596833

Date: 2025-04-28 15:47:01
Score: 1
Natty:
Report link

GrasTHC stands out as a premier destination for cannabis enthusiasts in Germany
and Europe, offering a curated selection of high-quality products such as

THC vape pens, authentic Cali weed, and potent HHC liquids.

Their THC vape pens provide a discreet and flavorful cannabis experience,

catering to both recreational and medicinal users.

The Cali weed in Germany collection features renowned strains like

Girl Scout Cookies, Blue Dream, and OG Kush, all cultivated without chemicals to ensure purity and potency. Additionally,

https://grasthc.com/cali-weed-deutschland/

https://grasthc.com/product/sour-diesel/

GrasTHC’s HHC liquids offer an alternative cannabinoid experience for those seeking variety.

With a commitment to premium quality, discreet cannabis shipping, and

customer satisfaction, GrasTHC has become a

trusted cannabis shop in Germany.

For more information and to explore their offerings, visit GrasTHC's official website.

https://grasthc.com/product-category/thc-produkte/vape-pen/

https://grasthc.com/about-us/

https://grasthc.com/cali-weed-deutschland/

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

79596829

Date: 2025-04-28 15:44:00
Score: 5.5
Natty:
Report link

Have you used any firewall component like Akeeba and redirect all 404?

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Vaggelis

79596819

Date: 2025-04-28 15:36:58
Score: 0.5
Natty:
Report link

If the units are consistent between terms, then FiPy doesn't care.

Yes, in [examples.diffusion.mesh1D](https://pages.nist.gov/fipy/en/latest/generated/examples.diffusion.mesh1D.html#module-examples.diffusion.mesh1D), Cp is specific heat capacity and rho is mass density.

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

79596809

Date: 2025-04-28 15:33:57
Score: 3.5
Natty:
Report link

Well it isn't a proper fix but more of a bypass, however adding verify=False seems to have gotten me through. It seems the issue is with the verification of the certificate rather than the authorisation

 requests.get("https://website/api/list", verify=False, headers={"Authorization": f'Bearer {key}'})

But it does still leave me with an error in console.

raise SSLError(e, request=request)

requests.exceptions.SSLError: HTTPSConnectionPool(host='website', port=443): Max retries exceeded with url: /api/list(Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:992)')))

If someone knows/could explain how to make the verification work that would be appreciated especially as I cannot find my pem file

Reasons:
  • Blacklisted phrase (1): appreciated
  • Blacklisted phrase (1.5): I cannot find
  • Blacklisted phrase (0.5): I cannot
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: DrunkenPipeBomb

79596803

Date: 2025-04-28 15:29:56
Score: 2.5
Natty:
Report link

canvas{

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

}

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): can
  • Low reputation (1):
Posted by: OLC Yousra

79596802

Date: 2025-04-28 15:28:55
Score: 3
Natty:
Report link
  1. Open GitHub Copilot SettingsConfigure Code Completions.

  2. Click Edit Settings....

  3. Find GitHub › Copilot: Enable.

  4. Click the ✏️ next to the list.

  5. Set * from true to false.

  6. Click OK to save.

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yassine Magri

79596801

Date: 2025-04-28 15:27:55
Score: 1.5
Natty:
Report link

There is an example of exactly this use case in the current version of the Django (5.2) documentation: https://docs.djangoproject.com/en/5.2/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model

class ArticleAdmin(admin.ModelAdmin):
    def save_model(self, request, obj, form, change):
        obj.user = request.user
        super().save_model(request, obj, form, change)
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike

79596798

Date: 2025-04-28 15:25:54
Score: 2
Natty:
Report link

import matplotlib.pyplot as plt

import numpy as np

t = np.linspace(0, 2 * np.pi, 100)

x = 16 * np.sin(t) ** 3

y = 13 * np.cos(t) - 5 * np.cos(2 * t) - 2 * np.cos(3 * t) - np.cos(4 * t)

plt.plot(x, y, color='red')

plt.title('Trái Tim')

plt.show()

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mdy Ng Mdy

79596789

Date: 2025-04-28 15:21:53
Score: 2.5
Natty:
Report link

Works for me. To open a file by double-clicking I had to create a custom command by copying the command for Chromium from the application menu and appending this option.

Reasons:
  • Whitelisted phrase (-1): Works for me
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Peter

79596787

Date: 2025-04-28 15:21:53
Score: 4.5
Natty: 6
Report link

I'm trying to set up my first flow (MS forms > Excel) and keep getting the error "Argument 'response_id" must be an integar value. I copied the part in the URL between ID= and &analytics... what am I doing wrong? I'm using this same ID for the Form ID and Response ID.

Reasons:
  • Blacklisted phrase (1): what am I doing wrong?
  • 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: Ashley

79596774

Date: 2025-04-28 15:16:51
Score: 1
Natty:
Report link

You need to compile both the classes in the same satatement like below

javac -cp "./*" DataSetProcessor.java Driver.java

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

79596772

Date: 2025-04-28 15:15:50
Score: 4
Natty:
Report link

This GitHub repository gives you a full set of commands, which you can base yours off.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jared Trales

79596760

Date: 2025-04-28 15:10:49
Score: 1.5
Natty:
Report link

you must disable location for EXPORT DATA query using a pre-existing bigquery external connection.

So remove or comment location arg

# location="EU",
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: raphaelauv

79596745

Date: 2025-04-28 15:04:48
Score: 1
Natty:
Report link

I've had the same problem after updating to Angular Material 17.
Addionally the dialog window was placed at the bottom left of the screen.

The solution was to add the line @include mat.core(); inside the theme file after
@include mat.all-component-themes(...);

source: devgem.io: Navigating Angular Material 17 Update Issues: Ensuring Smooth Functionality for Selects, Dialogs, and More

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: JIT Solution

79596742

Date: 2025-04-28 15:02:47
Score: 0.5
Natty:
Report link

Your available number of connections is 25 * [GBs of RAM on Postgres] - 3. Then the maximal number of connections that you use is [number of Django workers] * [max_size set in settings.py]. If the first one is bigger that the second one, then everything will work. See how many workers of Django you run (no way that's only one worker if you are over the limit) and adjust the number.
If you did not set this number, then Gunicorn runs [number of CPUs] * 2 + 1 workers by default. So even 1vCPU on your server would mean that you actually go over the limit.

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

79596737

Date: 2025-04-28 14:59:46
Score: 2.5
Natty:
Report link

I do this with a two pronged approach sort of way. I use our domain join account, but I use a password obfuscator script to convert the "real" password into a different encrypted one then use that as new password in the script.

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

79596736

Date: 2025-04-28 14:59:46
Score: 1.5
Natty:
Report link

There is no existing official documentation from Google explicitly detailing the lack of this feature or providing methods to implement it.

However, the absence of any relevant methods in the Google Chat API documentation and the presence of feature requests indicate that this is a limitation of Google Chat. A related feature request on the Google Issue Tracker can be found here:

Issue Tracker Link - Support Typing Indicators via Hangouts Chat API

You may subscribe by clicking on the star next to the issue number in order to receive updates and click +1 to let the developers know that you are impacted and want this feature to be available.

Please note that this link points to an older issue related to Hangouts Chat, which has since evolved into Google Chat. While the specific issue might be closed or merged, it reflects the historical request for this functionality. You might find more recent or related discussions by clicking the Google Issue Tracker link above.

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jats PPG

79596730

Date: 2025-04-28 14:55:46
Score: 0.5
Natty:
Report link

If you kept the basic port of Backstage for local development (3000 for Frontend and 7007 for Backend) you are exposing the endpoint on the Frontend instead of the Backend of Backstage, which doesn't work I think.

So maybe try to remove the "port: 3000" line in your app-config.yaml for the configuration of the proxy.

Could you try a configuration like this :

proxy:
 endpoints:
   /graphql:
     target: 'http://localhost:8083/graphql'
     allowedMethods: ['GET', 'POST']

You can try to make a test with this then :

POST http://localhost:7007/api/proxy/graphql

Here is an example on how to call the proxy endpoint within Backstage:

// Inside your component
const backendUrl = config.getString('backend.baseUrl'); // e.g. http://localhost:7007
fetch(`${backendUrl}/frobs-aggregator/summary`)
  .then(response => response.json())
  .then(payload => setSummary(payload as FrobSummary));

Source

If you could provide more information on your configuration it could help pin down the problem 🙂 (like the full app-config.yaml, the code where the proxy endpoint is actually used in backstage, maybe in a plugin or a React component)

Regards,

Reasons:
  • Blacklisted phrase (1): Regards
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Kirua

79596728

Date: 2025-04-28 14:55:46
Score: 1
Natty:
Report link

I actually was going through the exact same issue as you. Had everything set up correctly but the notification was not showing, tried refactoring my code as i doubted myself but it still didn't work.. i realised i had chrome notification turned off in my system settings. I am using Mac so i turned it back on. Restarted my local sever and re-registered my service worker and it worked... best of luck!

Reasons:
  • Whitelisted phrase (-1): it worked
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Fayez Rahman

79596727

Date: 2025-04-28 14:55:46
Score: 3
Natty:
Report link

I will contract this work out to a third party (too complex for me). Thanks to all those who responded with comments, especially Lajos

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ralph

79596725

Date: 2025-04-28 14:52:45
Score: 4.5
Natty:
Report link

Apparently, the answer to this is NO

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

79596723

Date: 2025-04-28 14:52:45
Score: 3.5
Natty:
Report link

A very useful tutorial about calling JavaScript without events. Around eight different methods, good for beginners. https://maqlearning.com/call-javascript-function-html-without-onclick

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

79596717

Date: 2025-04-28 14:50:44
Score: 2
Natty:
Report link

The solution was to add:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-validation</artifactId>
</dependency>
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: alexandru istrate

79596716

Date: 2025-04-28 14:50:44
Score: 3.5
Natty:
Report link

Anything changed since the question was asked? It looks like that's exactly what Edge is doing.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Kajetan Świtalski

79596711

Date: 2025-04-28 14:46:43
Score: 1
Natty:
Report link

Create .venv

python3 -m venv .venv

Then you have to use pip inside your .venv folder

.venv/bin/pip install -r requirements.txt

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

79596703

Date: 2025-04-28 14:41:42
Score: 1.5
Natty:
Report link

To track the expansion and collapse of summary/details elements in GA4, you can create Custom Events triggered by user interactions (e.g., clicks).Configure these events in GA4 to track the engagement, then use the Event Reports to analyze how users interact with these elements.

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

79596699

Date: 2025-04-28 14:38:41
Score: 1
Natty:
Report link

Google Password Manager doesn't currently offer a public API for directly managing stored passwords, including deletion.

However, you can remove passwords manually via the Google Password Manager website or use Google Chrome's password management API for browser-based solutions

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

79596694

Date: 2025-04-28 14:36:40
Score: 2
Natty:
Report link

I am getting this error in console when i run the command gradlew clean --scan

gradlew clean --scan

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'NemeinApp'.
> Could not resolve all artifacts for configuration 'classpath'.
   > Could not find com.facebook.react:react-native-gradle-plugin:0.79.1.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/facebook/react/react-native-gradle-plugin/0.79.1/react-native-gradle-plugin-0.79.1.pom
       - https://repo.maven.apache.org/maven2/com/facebook/react/react-native-gradle-plugin/0.79.1/react-native-gradle-plugin-0.79.1.pom
     Required by:
         root project :
Reasons:
  • Blacklisted phrase (1): I am getting this error
  • RegEx Blacklisted phrase (1): I am getting this error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Krishna Vyas

79596693

Date: 2025-04-28 14:35:39
Score: 14.5 🚩
Natty: 5.5
Report link

I get the same error. Were you able to solve it?

Reasons:
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve it?
  • RegEx Blacklisted phrase (1): I get the same error
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I get the same error
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Mr. Lee

79596691

Date: 2025-04-28 14:32:38
Score: 2
Natty:
Report link

How are you running your backend? There is a chance of print() statements being buffered or debug=False parameter messing up the stdout as it seems like you are running it in production mode. In such cases the procedure is to:

If it returns status 200, that means the controller has been found and returns a response, so it has something to do with the IO mechanisms.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How are you
  • Low reputation (0.5):
Posted by: Dawidek

79596684

Date: 2025-04-28 14:29:38
Score: 2.5
Natty:
Report link

There is no way to sign a document using Docusign without creating an envelope in Docusign. An envelope is what gets signed and completed.

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

79596681

Date: 2025-04-28 14:28:37
Score: 0.5
Natty:
Report link

try using db.session.remove() to close the session properly in Flask-SQLAlchemy and ensure the temp file is deleted.

Make sure no other process is holding the file open.

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

79596679

Date: 2025-04-28 14:28:37
Score: 2
Natty:
Report link

When using *vwrite to write out array/table parameters MAPDL automatically loops over the array. So the *vwrite does not need to be in a *do loop. Also you can *vget the node locations; no need to loop over the node count.

Mike

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Mike R

79596676

Date: 2025-04-28 14:26:37
Score: 1
Natty:
Report link

For large loads, try batching into smaller chunks and staging the data first.
Consider scaling up your Azure SQL DB (higher DTU/SKU) during the load.
Also, check for throttling in the Azure metrics that could explain the timeouts.

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

79596665

Date: 2025-04-28 14:21:36
Score: 2
Natty:
Report link

For doubleclick - (dblclick)="handleDblClick()"

For hold you can create your directive using this way: https://stackblitz.com/edit/angular-click-and-hold?file=src%2Fapp%2Fapp.component.ts

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

79596657

Date: 2025-04-28 14:17:35
Score: 1.5
Natty:
Report link

O problema do seu Radio nao estar funcionando corretamente esta no "Name" dos inputs, eles estao com name diferente por isso estao marcando mais de 1, coloque todos com o mesmo "name" e ira funcionar!

The problem with your Radio not working correctly is in the "Name" of the inputs, they have different names that's why they are marking more than 1, put them all with the same "name" and it will work!

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carlos Eduardo Evangelista Car

79596644

Date: 2025-04-28 14:12:33
Score: 3
Natty:
Report link

This login pop-up is enforced not by WordPress but by the hosting provider. You should ask about password from them.

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

79596626

Date: 2025-04-28 14:04:31
Score: 2
Natty:
Report link

Scalar queries are supported in QuestDB only for Symbols and timestamps.

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

79596621

Date: 2025-04-28 14:02:31
Score: 5.5
Natty: 5
Report link

Check this Article for step by step Guide to Setup vs code Salesforce Cli Setup

Reasons:
  • Blacklisted phrase (1): this Article
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: 277 Raj Singh

79596610

Date: 2025-04-28 13:58:29
Score: 4
Natty:
Report link

I have the same error - The ejs file is wrongly vetically indented. I applyed the above answers but it could not solved it.

I installed DigitalBrainstem's EJS extension but I think it is useful only to provide snippets.

When selecting Html > format templating > honor django, erb... ejs code collapses to left, like below:

    <% array.forEach(function(val, index) { %>
    <a href=<%=val.url %>><%= val.name %></a>
    <% if (index < book.genre.length - 1) { %>
    <%= ,&nbsp; %>
    <% } %>
    <% }) %>

unselected, it looks like a ladder.

This is my settings.json file:

{
    "workbench.colorTheme": "Darcula",
    "editor.formatOnSave": true,
    "liveServer.settings.donotShowInfoMsg": true,
    "workbench.iconTheme": "vscode-great-icons",
    "workbench.editor.enablePreview": false,
    "workbench.editorAssociations": {
        "*.svg": "default"
    },
    "editor.minimap.enabled": false,
    "workbench.settings.applyToAllProfiles": [],
    "emmet.includeLanguages": {
        "*.ejs": "html"
    },
    "files.associations": {
        "*.ejs": "html"
    },
}

I would thankfully appreciate any help.

Reasons:
  • Blacklisted phrase (1): any help
  • RegEx Blacklisted phrase (1): I have the same error
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same error
  • Low reputation (1):
Posted by: Adriano Matos

79596598

Date: 2025-04-28 13:51:27
Score: 3
Natty:
Report link

Something to consider here that I don't see on any of the posts in terms of a company context: Has your repo been migrated elsewhere and locked in Azure? I was getting the same error and it turns out that a team I hadn't worked for in a while had migrated the repo to another service

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

79596596

Date: 2025-04-28 13:50:26
Score: 1
Natty:
Report link

This can be achieved with the repository find method as below on version >0.3.18

where: { param1: 'string', field2: Or(IsNull(), MoreThenOrEqual(new Date())) },
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shubham Tanwar

79596595

Date: 2025-04-28 13:50:26
Score: 3
Natty:
Report link

if you are using nativewind check the imports in the global.css, there might an issue with that

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Roody Alexis ImRoodyDev

79596590

Date: 2025-04-28 13:47:26
Score: 3
Natty:
Report link

You may use streamed upload solution without downloading it to your service but streamed the multiparts and using boto s3 you can stream upload as well

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

79596588

Date: 2025-04-28 13:47:26
Score: 0.5
Natty:
Report link

Try exploring this lab using BigQuery Connections and SQL. This requires different permissions related to BigQuery Connections.

Here are the necessary permissions you need to add:

You can also attach custom access controls to limit access to BigQuery datasets and tables.

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

79596575

Date: 2025-04-28 13:34:23
Score: 5
Natty: 5
Report link

Does anybody find the solution why the message through template hasn't been delivered even though the the status is accepted?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Deep Lathiya

79596566

Date: 2025-04-28 13:26:20
Score: 4.5
Natty:
Report link

We had a similar cross-domain issue, and we tried out the Post Message HTML solution you recommended above.

Initially we were unable to connect to SCORM Cloud at all due to cross-domain. After we implemented Post Message HTML, we are able to connect and fetch learner details from SCORM Cloud. But unfortunately, the connection breaks within a few seconds and then we are unable to update the status and score in SCORM Cloud. At the moment, as soon as we open the course, SCORM Cloud automatically sets the completion and passed status within a few seconds.

Could you please guide us with this? I am sharing our index.html code below.

It's our first time working with SCORM and we'd really appreciate your help with this.

The console shows the following errors: console errors

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>LMS</title>

  <!-- Load pipwerks SCORM wrapper (assuming it's hosted) -->
 
  <script src="script.js" defer></script>

  <style>
    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
    }

    #scorm-iframe {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
  </style>
</head>
<body>

  <iframe id="scorm-iframe" frameborder="0"></iframe>

  <script>
    let Scormdata = {
      lenname: '',
      lenEmail: '',
      params: 'abc',
      learnerId: 0,
      courseId: 0,
      currentUrl: '',
    };

    const baseUrl = "https://sample.co";
    let dataGet = "";

    const allowedOrigins = [
      "https://sample.co",
      "https://sample.co"
    ];

    // ✅ Message Listener
    window.addEventListener("message", function (event) {
      if (!allowedOrigins.includes(event.origin)) return;

      console.log("📩 Message received:", event.data);

      if (event.data === "FIND_SCORM_API") {
        console.log("📩 SCORM API request received...");

        const scormIframe = document.getElementById("scorm-iframe");
        if (!scormIframe || !scormIframe.contentWindow) {
          console.error("❌ SCORM iframe not found.");
          return;
        }

        const api = pipwerks.SCORM.API;

        // Notify parent that SCORM API is found
        if (event.source && typeof event.source.postMessage === "function") {
          event.source.postMessage(
            { type: "SCORM_API_FOUND", apiAvailable: !!api },
            event.origin
          );
          console.log("✅ Sent SCORM API response to parent.", api);
        } else {
          console.warn("⚠️ Cannot send SCORM API response; event.source missing.");
        }
      }

      // SCORM init response
      if (event.data && event.data.type === "scorm-init-response") {
        console.log("✅ SCORM Init Response:", event.data.success ? "Success" : "Failed");
      }

      // SCORM API response
      if (event.data.type === "SCORM_API_RESPONSE") {
        console.log("✅ SCORM API is available:", event.data.apiAvailable);
      }

      // Handle SCORM Score Update
      if (event.data.type === "SCORM_SCORE_UPDATE") {
        try {
          const score = event.data.score;
          console.log("✅ Score received:", score);

          pipwerks.SCORM.init();
          pipwerks.SCORM.setValue("cmi.score.raw", score);
          pipwerks.SCORM.commit();
          pipwerks.SCORM.finish();

          console.log("✅ Score updated in SCORM Cloud:", score);
        } catch (error) {
          console.error("❌ Error parsing SCORM score data:", error);
        }
      }
    });

    // ✅ Initialize SCORM and send init message to iframe
    function initializeSCORM() {
      const iframe = document.getElementById("scorm-iframe");

      iframe.onload = () => {
        console.log("✅ SCORM iframe loaded. Sending SCORM init request...");
        iframe.contentWindow.postMessage({ type: "scorm-init" }, "*");
      };
    }

    // ✅ Load SCORM learner data and set iframe source
    function loadScormPackage() {
      if (pipwerks.SCORM.init()) {
        const learnerId = pipwerks.SCORM.getValue("cmi.learner_id");
        const learnerName = pipwerks.SCORM.getValue("cmi.learner_name");
        const learnerEmail = pipwerks.SCORM.getValue("cmi.learner_email"); // Optional
        const completionStatus = pipwerks.SCORM.getValue("cmi.completion_status");
        const score = pipwerks.SCORM.getValue("cmi.score.raw");
        const courseId = pipwerks.SCORM.getValue("cmi.entry");

        console.log("Learner ID:", learnerId);
        console.log("Learner Name:", learnerName);
        console.log("Email:", learnerEmail);
        console.log("Completion Status:", completionStatus);
        console.log("Score:", score);
        console.log("Course ID:", courseId);

        const currentUrl = window.location.href;

        if (learnerId && learnerName) {
          Scormdata = {
            ...Scormdata,
            learnerId,
            lenname: learnerName,
            lenEmail: learnerEmail,
            courseId,
            currentUrl
          };

          dataGet = encodeURIComponent(JSON.stringify(Scormdata));
          const fullUrl = baseUrl + dataGet;
          console.log("🌐 Iframe URL:", fullUrl);

          document.getElementById("scorm-iframe").src = fullUrl;
        }
      } else {
        console.error("❌ SCORM API initialization failed.");
      }
    }

    // ✅ On load: initialize SCORM and load data
    window.onload = () => {
      initializeSCORM();
      loadScormPackage();
    };
  </script>
</body>
</html>
Reasons:
  • Blacklisted phrase (2): appreciate your help
  • RegEx Blacklisted phrase (2.5): Could you please guide us
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30374615

79596565

Date: 2025-04-28 13:26:20
Score: 2.5
Natty:
Report link

As an alternative way to validate these addresses I use `IoWithinStackLimits` function (msdn)

The IoWithinStackLimits routine determines whether a region of memory is within the stack limit of the current thread.

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

79596563

Date: 2025-04-28 13:25:20
Score: 4.5
Natty: 5
Report link

You need:
pip install polars-lts-cpu

https://github.com/pola-rs/polars/issues/12292

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

79596560

Date: 2025-04-28 13:24:19
Score: 1.5
Natty:
Report link

you can also use FastImage instead of Image tag so you don't need to make any changes in build.gradle file

(FastImage is a replacement for the standard Image component in React Native that offers better performance, caching, priority handling, and headers support for images — especially useful for remote images.)

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

79596534

Date: 2025-04-28 13:06:15
Score: 1.5
Natty:
Report link

As of April 28, 2025:

https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/null-conditional-assignment

Permits assignment to occur conditionally within a a?.b or a?[b] expression.

using System;

class C
{
    public object obj;
}

void M(C? c)
{
    c?.obj = new object();
}
using System;

class C
{
    public event Action E;
}

void M(C? c)
{
    c?.E += () => { Console.WriteLine("handled event E"); };
}
void M(object[]? arr)
{
    arr?[42] = new object();
}
Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: D G

79596532

Date: 2025-04-28 13:05:15
Score: 3
Natty:
Report link

I was using goodbye_dpi and closing that fixed this issue for me.

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

79596523

Date: 2025-04-28 13:00:13
Score: 6 🚩
Natty: 5
Report link

When the bitfield is written in the for loop, the behavior of -fstrict-volatile-bitfields is incorrect and the strb instruction is generated. Why?

Reasons:
  • Blacklisted phrase (0.5): Why?
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): When the
  • Low reputation (1):
Posted by: yecheng_110163com

79596521

Date: 2025-04-28 12:58:12
Score: 2
Natty:
Report link

array.each_with_index.to_h

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Jordi Cubiro

79596517

Date: 2025-04-28 12:56:11
Score: 2.5
Natty:
Report link

It might be the case that you are using Dark (Visual studio) color theme. (At least it was my case.)

Switching Colour Theme it back to Dark+ could solved this issue.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Michal Marcin

79596516

Date: 2025-04-28 12:56:11
Score: 2
Natty:
Report link

Upgrading @rsbuild/core and @rspack/core to 1.3.7 fixes the issue. This is the relevant PR.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: ezze

79596510

Date: 2025-04-28 12:52:10
Score: 5.5
Natty: 4
Report link

niranjala, AKen the cake fairy

Reasons:
  • Contains signature (1):
  • Low length (2):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: The cake fairy

79596468

Date: 2025-04-28 12:32:06
Score: 0.5
Natty:
Report link

The solution can be to remove line "CertUtil:" from output.

(for /f "skip=1 tokens=1" %a in ('certutil -hashfile "path\to\your\file" MD5') do @echo %a & goto :done) ^| findstr /R "^[^:]*$"
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: asat

79596467

Date: 2025-04-28 12:30:05
Score: 1.5
Natty:
Report link

I personally had to do a reset via Tools ("Extras" in german, marvelous translation...) -> Import and Export Settings... -> Reset all settings ->...

I could do that because I like the defaults, but if you made a lot of configuration this might not be optimal.

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

79596465

Date: 2025-04-28 12:30:05
Score: 1.5
Natty:
Report link

As it turned out i had an old version of Hbase on the classpath that was causing the problem. just did

mv hbase-1.2.3 hbase-1.2.3_old

and it did the trick. Moving the old HBase directory effectively removed its JARs from the classpath that Hive was using, allowing it to pick up the correct Hadoop dependencies.

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

79596464

Date: 2025-04-28 12:29:05
Score: 3.5
Natty:
Report link

Disabling this setting did the trick for me—I didn’t have Co-Pilot installed, and I was having the same issue

enter image description here

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

79596463

Date: 2025-04-28 12:29:05
Score: 0.5
Natty:
Report link

It will be simpler if you throw the result into a variable. There is no need for the tokens parameter.

set "hash=" & for /f "skip=1" %a in ('certutil -hashfile "path\to\your\file" MD5') do @if not defined hash set "hash=%a" & echo %hash% & goto :done
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: João Mac

79596459

Date: 2025-04-28 12:28:05
Score: 1
Natty:
Report link

This is what I tried now and this is working.

//Content is a byte array containing document data
BinaryData data = BinaryData.FromBytes(Content);

var analyzeOptions = new AnalyzeDocumentOptions(modelId, data) 
{ 
  Pages = "1-2", 
  Features = { DocumentAnalysisFeature.QueryFields }, 
  QueryFields = { "FullName", "CompanyName", "JobTitle" } 
};

Operation<AnalyzeResult> operation = await client.AnalyzeDocumentAsync(WaitUntil.Completed, analyzeOptions);

AnalyzeResult result = operation.Value;
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Siddharth Ubana

79596456

Date: 2025-04-28 12:24:04
Score: 2.5
Natty:
Report link

You can pick the low quality parameter and make random data that is within the parameter. It's a simple method and idk if it's going to solve your problem.

Useful link: https://www.datacamp.com/pt/tutorial/techniques-to-handle-missing-data-values

Good luck!

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

79596448

Date: 2025-04-28 12:21:03
Score: 1
Natty:
Report link

try

eventSource.addEventListener('message', (e) => { 
   console.log(`got this data ${e.data}`); 
   updateQuestion(e.data)
};

Reason:

You have named your event "message"

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

79596441

Date: 2025-04-28 12:14:01
Score: 5.5
Natty:
Report link

Why not --vdev=net_af_packet0,iface=eth0 or --vdev=net_af_xdp0,iface=eth0?

Reasons:
  • Low length (2):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): Why not
  • Low reputation (1):
Posted by: user30393774

79596440

Date: 2025-04-28 12:14:01
Score: 1.5
Natty:
Report link

Encountered similar issues, and ended up adding the token to the build->publish section in the package.json

"build": { "publish": { "provider": "github", "private": true, "owner": "...", "repo": "...", "token": "ghp_..." },

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